* { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --ink: #070707;
            --panel: #111012;
            --paper: #f8f2e8;
            --soft: rgba(248, 242, 232, 0.72);
            --muted: rgba(248, 242, 232, 0.5);
            --line: rgba(248, 242, 232, 0.13);
            --gold: #d8b66d;
            --rose: #9f4f54;
            --ease: cubic-bezier(0.22, 1, 0.36, 1);
        }

        html { scroll-behavior: smooth; background: var(--ink); }
        body {
            min-height: 100vh;
            font-family: "Inter", sans-serif;
            color: var(--paper);
            background:
                radial-gradient(circle at 15% 15%, rgba(159, 79, 84, 0.16), transparent 24rem),
                linear-gradient(120deg, #050505 0%, #101012 48%, #130c0e 100%);
            overflow-x: hidden;
        }

        a { color: inherit; text-decoration: none; }
        img, video { display: block; max-width: 100%; }
        h1, h2, h3 { font-family: "Cormorant Garamond", serif; font-weight: 400; }

        .site-nav {
            position: fixed;
            inset: 0 0 auto;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1rem clamp(1rem, 4vw, 4rem);
            background: rgba(6, 6, 6, 0.76);
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(16px);
        }

        .brand {
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(1.25rem, 2vw, 1.65rem);
            letter-spacing: 0.24em;
            text-transform: uppercase;
        }

        .nav-links {
            display: flex;
            gap: clamp(1rem, 3vw, 2.7rem);
            list-style: none;
        }

        .nav-links a {
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--soft);
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a[aria-current="page"] { color: var(--gold); }

        .page-hero {
            min-height: 78vh;
            display: grid;
            place-items: center;
            position: relative;
            padding: 7rem clamp(1rem, 4vw, 4rem) 4rem;
            overflow: hidden;
            isolation: isolate;
        }

        .page-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -2;
            background: url("../galeria_2.jpg") center 32% / cover;
            filter: grayscale(100%) brightness(0.5);
            transform: scale(1.04);
        }

        .page-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background:
                linear-gradient(to top, #070707 0%, rgba(7,7,7,0.18) 55%, rgba(7,7,7,0.78) 100%),
                linear-gradient(90deg, rgba(7,7,7,0.82), rgba(7,7,7,0.14), rgba(7,7,7,0.72));
        }

        .hero-copy {
            width: min(100%, 1100px);
            text-align: center;
        }

        .kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1rem;
            color: var(--gold);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
        }

        .kicker::before,
        .kicker::after {
            content: "";
            width: 48px;
            height: 1px;
            background: currentColor;
        }

        .page-hero h1 {
            font-size: clamp(3.4rem, 10vw, 8.8rem);
            line-height: 0.94;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .page-hero p {
            max-width: 680px;
            margin: 1.4rem auto 0;
            color: var(--soft);
            line-height: 1.8;
        }

        .section {
            padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 4vw, 4rem);
        }

        .section-inner {
            width: min(100%, 1220px);
            margin: 0 auto;
        }

        .section-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: clamp(1.4rem, 3vw, 2.5rem);
        }

        .section-heading-group {
            display: grid;
            gap: 0.85rem;
        }

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            color: var(--gold);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .section-kicker::after {
            content: "";
            width: 56px;
            height: 1px;
            background: rgba(216, 182, 109, 0.72);
        }

        .section-title {
            max-width: 780px;
            font-size: clamp(2.2rem, 5vw, 4.8rem);
            line-height: 1;
        }

        .section-copy {
            max-width: 430px;
            color: var(--soft);
            line-height: 1.75;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }

        .video-card {
            position: relative;
            aspect-ratio: 9 / 16;
            overflow: hidden;
            border: 1px solid var(--line);
            background: #111;
            isolation: isolate;
            cursor: pointer;
        }

        .video-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(92%) saturate(0.45) brightness(0.76);
            transform: scale(1.03);
            transition: filter 0.5s ease, transform 0.8s var(--ease);
        }

        .video-card:hover video {
            filter: grayscale(0%) saturate(1) brightness(0.9);
            transform: scale(1.07);
        }

        .video-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 58%);
            pointer-events: none;
        }

        .video-info {
            position: absolute;
            inset: auto 1rem 1rem;
            z-index: 2;
        }

        .video-info h3 {
            margin-bottom: 0.35rem;
            font-size: clamp(1.55rem, 2.6vw, 2.35rem);
            line-height: 1;
        }

        .video-info p {
            color: var(--muted);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.13em;
            text-transform: uppercase;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1rem;
        }

        .gallery-grid figure {
            min-height: 260px;
            position: relative;
            overflow: hidden;
            border: 1px solid var(--line);
            background: var(--panel);
        }

        .gallery-grid figure:nth-child(6n+1) { grid-column: span 5; min-height: 430px; }
        .gallery-grid figure:nth-child(6n+2) { grid-column: span 4; min-height: 330px; }
        .gallery-grid figure:nth-child(6n+3) { grid-column: span 3; min-height: 330px; }
        .gallery-grid figure:nth-child(6n+4) { grid-column: span 3; min-height: 300px; }
        .gallery-grid figure:nth-child(6n+5) { grid-column: span 4; min-height: 300px; }
        .gallery-grid figure:nth-child(6n+6) { grid-column: span 5; min-height: 360px; }

        .gallery-grid img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(82%) brightness(0.78);
            transition: filter 0.45s ease, transform 0.8s var(--ease);
        }

        .gallery-grid figure:hover img {
            filter: grayscale(0%) brightness(0.94);
            transform: scale(1.055);
        }

        .is-hidden {
            display: none !important;
        }

        .media-more {
            display: grid;
            place-items: center;
            margin-top: clamp(1.5rem, 3vw, 2.8rem);
        }

        .media-more-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.9rem;
            min-height: 50px;
            padding: 0.95rem 1.35rem;
            border: 1px solid rgba(216, 182, 109, 0.42);
            color: var(--gold);
            background: rgba(255,255,255,0.035);
            font: inherit;
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            cursor: pointer;
            transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
        }

        .media-more-button i {
            display: grid;
            place-items: center;
            width: 24px;
            height: 24px;
            border: 1px solid currentColor;
            border-radius: 50%;
            font-style: normal;
            font-size: 1rem;
            line-height: 1;
        }

        .media-more-button:hover {
            transform: translateY(-3px);
            border-color: rgba(216, 182, 109, 0.86);
            background: rgba(216, 182, 109, 0.12);
            color: var(--paper);
        }

        .media-more-button.is-hidden {
            display: none;
        }

        .audio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 1rem;
            margin-bottom: clamp(0.25rem, 1.4vw, 1.4rem);
        }

        .audio-take {
            padding: 1.2rem;
            border: 1px solid var(--line);
            background:
                linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.018)),
                radial-gradient(circle at top right, rgba(159,79,84,0.18), transparent 12rem);
        }

        .audio-take p {
            color: var(--muted);
            font-size: 0.76rem;
            font-weight: 700;
            letter-spacing: 0.13em;
            text-transform: uppercase;
        }

        .audio-take h3 {
            margin-bottom: 0.4rem;
            font-size: 1.8rem;
        }

        .wave {
            display: flex;
            align-items: center;
            gap: 4px;
            height: 54px;
            margin: 1rem 0;
        }

        .wave i {
            width: 3px;
            height: calc(12px + var(--h) * 1px);
            background: linear-gradient(to top, var(--rose), var(--gold));
            opacity: 0.84;
            animation: soundBar 1.45s ease-in-out infinite alternate;
            animation-delay: calc(var(--d) * -0.09s);
        }

        @keyframes soundBar {
            from { transform: scaleY(0.42); opacity: 0.42; }
            to { transform: scaleY(1); opacity: 1; }
        }

        audio { width: 100%; height: 38px; accent-color: var(--gold); }

        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.7rem;
            color: var(--gold);
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            transition: color 0.3s ease, transform 0.3s var(--ease);
        }

        .back-link:hover { color: var(--paper); transform: translateX(-4px); }

        footer {
            padding: 1.35rem clamp(1rem, 4vw, 4rem);
            border-top: 1px solid var(--line);
            color: var(--muted);
            font-size: 0.75rem;
        }

        .reveal {
            opacity: 0;
            transform: translateY(28px);
            transition:
                opacity 0.75s ease,
                transform 0.9s var(--ease);
            transition-delay: var(--reveal-delay, 0s);
            will-change: opacity, transform;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: none;
        }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                scroll-behavior: auto !important;
                transition-duration: 0.01ms !important;
            }

            .reveal {
                opacity: 1;
                transform: none;
            }
        }

        @media (max-width: 900px) {
            .nav-links { display: none; }
            .section-header { display: grid; }
            .video-grid, .audio-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr; }
            .gallery-grid figure,
            .gallery-grid figure:nth-child(n) {
                grid-column: 1;
                min-height: 330px;
            }
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(248,242,232,0.18);
            background: rgba(248,242,232,0.02);
            color: var(--paper);
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex-direction: column;
            cursor: pointer;
        }
        .menu-toggle span {
            width: 18px;
            height: 1px;
            background: currentColor;
        }
        .site-nav.is-scrolled {
            background: rgba(6, 6, 6, 0.88);
        }

        @media (max-width: 900px) {
            .menu-toggle { display: flex; }
            .site-nav .nav-links {
                position: fixed;
                left: 1rem;
                right: 1rem;
                top: 4.8rem;
                display: grid;
                gap: 0;
                padding: 1rem;
                background: rgba(5,5,5,0.96);
                border: 1px solid rgba(248,242,232,0.12);
                transform: translateY(-130%);
                transition: transform 0.35s ease;
            }
            .site-nav .nav-links.is-open { transform: translateY(0); }
            .site-nav .nav-links a {
                display: flex;
                justify-content: center;
                padding: 0.9rem;
            }
        }
