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

        :root {
            --ink: #080707;
            --night: #101012;
            --charcoal: #171619;
            --paper: #f7f2e9;
            --soft: rgba(247, 242, 233, 0.74);
            --muted: rgba(247, 242, 233, 0.52);
            --line: rgba(247, 242, 233, 0.14);
            --gold: #d8b66d;
            --rose: #9f4f54;
            --wine: #4d1e24;
            --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;
            background:
                radial-gradient(circle at 12% 10%, rgba(159, 79, 84, 0.18), transparent 28rem),
                linear-gradient(115deg, #060606 0%, #111012 48%, #160b0e 100%);
            color: var(--paper);
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -2;
            pointer-events: none;
            background-image: linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 76%);
        }

        img, video { display: block; max-width: 100%; }
        a { color: inherit; text-decoration: none; }
        button, audio { font: inherit; }

        .site-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.15rem clamp(1rem, 4vw, 4rem);
            color: var(--paper);
            background: linear-gradient(to bottom, rgba(6,6,6,0.76), rgba(6,6,6,0));
            transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
        }

        .site-nav.is-scrolled {
            padding-block: 0.8rem;
            background: rgba(8, 8, 8, 0.82);
            border-bottom: 1px solid var(--line);
            backdrop-filter: blur(18px);
        }

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

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

        .nav-links a {
            position: relative;
            display: inline-flex;
            padding: 0.4rem 0;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--soft);
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.35s var(--ease);
        }

        .nav-links a:hover { color: var(--paper); }
        .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

        .menu-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border: 1px solid var(--line);
            background: rgba(255,255,255,0.04);
            color: var(--paper);
            cursor: pointer;
            position: relative;
            z-index: 12;
        }

        .menu-toggle span {
            display: block;
            width: 18px;
            height: 1px;
            margin: 5px auto;
            background: currentColor;
        }

        .hero {
            min-height: 100svh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 7rem clamp(1rem, 4vw, 4rem) 3rem;
            overflow: hidden;
            isolation: isolate;
        }

        .hero-media {
            position: absolute;
            inset: 0;
            z-index: -2;
            background: url("../inicio.jpg") center 26% / cover no-repeat;
            filter: grayscale(100%) contrast(1.05) brightness(0.68);
            transform: scale(1.06);
            animation: slowFrame 20s ease-in-out infinite alternate;
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background:
                linear-gradient(90deg, rgba(6,6,6,0.76) 0%, rgba(6,6,6,0.18) 42%, rgba(6,6,6,0.66) 100%),
                linear-gradient(to top, #080707 0%, rgba(8,7,7,0.02) 54%, rgba(8,7,7,0.62) 100%);
        }

        @keyframes slowFrame {
            from { transform: scale(1.08) translateY(0); }
            to { transform: scale(1.01) translateY(-1.6rem); }
        }

        .hero-grid {
            width: min(100%, 1460px);
            margin: 0 auto;
            display: block;
            text-align: center;
        }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.25rem;
            color: var(--gold);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 42px;
            height: 1px;
            background: currentColor;
        }

        h1, h2, h3 {
            font-family: "Cormorant Garamond", serif;
            font-weight: 400;
            line-height: 0.96;
        }

        .hero h1 {
            max-width: none;
            font-size: clamp(3.4rem, 9vw, 8.1rem);
            letter-spacing: 0.09em;
            text-transform: uppercase;
        }

        .hero-subtitle {
            margin-top: 2rem;
            color: rgba(247, 242, 233, 0.42);
            font-size: clamp(0.72rem, 1.3vw, 0.92rem);
            font-weight: 500;
            letter-spacing: 0.52em;
            text-transform: uppercase;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            margin-top: 2rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0.9rem 1.25rem;
            border: 1px solid var(--line);
            color: var(--paper);
            background: rgba(255,255,255,0.05);
            font-size: 0.76rem;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease, color 0.3s ease;
        }

        .btn:hover { transform: translateY(-3px); border-color: rgba(216,182,109,0.8); background: rgba(216,182,109,0.12); }
        .btn-primary { background: var(--gold); color: #160f0b; border-color: var(--gold); }
        .btn-primary:hover { background: #f0cf86; color: #100b08; }

        .hero-card {
            padding: 1.1rem;
            border: 1px solid rgba(247,242,233,0.18);
            background: rgba(8, 8, 8, 0.42);
            backdrop-filter: blur(20px);
            transform: translateY(-1rem);
        }

        .hero-card figure {
            position: relative;
            aspect-ratio: 4 / 5;
            overflow: hidden;
            background: var(--charcoal);
        }

        .hero-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(84%) contrast(1.06);
            transition: transform 1s var(--ease), filter 0.5s ease;
        }

        .hero-card:hover img { transform: scale(1.045); filter: grayscale(20%) contrast(1.02); }

        .hero-card figcaption {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            padding-top: 1rem;
            color: var(--soft);
            font-size: 0.74rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .scroll-note {
            position: absolute;
            left: 50%;
            bottom: 3rem;
            transform: translateX(-50%);
            color: var(--muted);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .scroll-note::after {
            content: "";
            display: block;
            width: 1px;
            height: 58px;
            margin: 0.7rem auto 0;
            background: linear-gradient(to bottom, rgba(247,242,233,0.8), transparent);
            animation: scrollLine 2s ease-in-out infinite;
        }

        @keyframes scrollLine {
            0%, 100% { transform: scaleY(0.45); opacity: 0.35; }
            50% { transform: scaleY(1); opacity: 1; }
        }

        .section {
            padding: clamp(2.8rem, 5.2vw, 4.8rem) clamp(1rem, 4vw, 4rem);
        }

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

        .section-kicker {
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            margin-bottom: 0.85rem;
            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.7);
        }

        .section-heading {
            max-width: 760px;
            font-size: clamp(2.25rem, 4.8vw, 4.45rem);
            letter-spacing: 0.01em;
            line-height: 1.02;
        }

        .section-copy {
            max-width: 560px;
            color: var(--soft);
            font-size: 0.98rem;
            line-height: 1.78;
        }

        .split {
            display: grid;
            grid-template-columns: minmax(320px, 0.94fr) minmax(360px, 0.92fr);
            gap: clamp(2.4rem, 7vw, 5.2rem);
            align-items: center;
        }

        .portrait-frame {
            position: relative;
            min-height: clamp(520px, 56vw, 680px);
            overflow: hidden;
            background: #111;
            border: 1px solid rgba(247,242,233,0.08);
        }

        .portrait-frame::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            background:
                linear-gradient(to top, rgba(8,7,7,0.3), transparent 38%),
                linear-gradient(90deg, rgba(8,7,7,0.08), transparent 36%);
        }

        .portrait-frame img {
            width: 100%;
            height: 100%;
            min-height: inherit;
            object-fit: cover;
            object-position: center 34%;
            filter: grayscale(22%) contrast(1.02) brightness(0.88);
            transition: transform 1s var(--ease), filter 0.5s ease;
        }

        .portrait-frame:hover img { transform: scale(1.035); filter: grayscale(4%) contrast(1.02) brightness(0.94); }

        .bio-panel {
            display: grid;
            gap: clamp(1.15rem, 2vw, 1.65rem);
        }

        .bio-panel .section-heading {
            max-width: 760px;
            font-size: clamp(2.8rem, 5.6vw, 5.1rem);
            line-height: 1.02;
        }

        .bio-copy {
            display: grid;
            gap: 1.35rem;
            max-width: 680px;
            padding-bottom: clamp(1.2rem, 2.4vw, 2rem);
            border-bottom: 1px solid rgba(247,242,233,0.12);
        }

        .bio-copy .section-copy {
            max-width: none;
            color: rgba(247, 242, 233, 0.58);
            font-size: clamp(0.98rem, 1.2vw, 1.08rem);
            line-height: 1.72;
        }

        .stats-strip {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(1rem, 4vw, 3.6rem);
            margin: clamp(0.3rem, 1vw, 0.8rem) 0 clamp(0.5rem, 1.6vw, 1rem);
        }

        .stat strong {
            display: block;
            font-family: "Cormorant Garamond", serif;
            color: var(--gold);
            font-size: clamp(2rem, 3.6vw, 3.1rem);
            font-weight: 400;
            line-height: 1;
        }

        .stat span {
            display: block;
            margin-top: 0.7rem;
            color: var(--muted);
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.28em;
            text-transform: uppercase;
        }

        .marquee {
            overflow: hidden;
            border-block: 1px solid var(--line);
            background: rgba(255,255,255,0.025);
        }

        .marquee-track {
            display: flex;
            width: max-content;
            animation: marquee 28s linear infinite;
        }

        .marquee span {
            padding: 1.1rem 1.8rem;
            color: rgba(247,242,233,0.76);
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(1.4rem, 3vw, 2.6rem);
            white-space: nowrap;
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        .dark-band {
            background:
                linear-gradient(180deg, rgba(8,7,7,0), rgba(8,7,7,0.82) 18%, rgba(8,7,7,0.9) 82%, rgba(8,7,7,0)),
                radial-gradient(circle at 82% 20%, rgba(216,182,109,0.12), transparent 26rem);
        }

        .work-header {
            display: grid;
            grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
            gap: 2rem;
            align-items: end;
            margin-bottom: clamp(1.25rem, 3vw, 2.2rem);
        }

        .reels-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: clamp(0.85rem, 1.6vw, 1.15rem);
            align-items: stretch;
        }

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

        .reel.is-playing .reel-meta {
            opacity: 0;
            transform: translateY(12px);
        }

        .reel video,
        .reel img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(92%) saturate(0.42) brightness(0.72);
            transform: scale(1.03);
            transition: transform 0.8s var(--ease), filter 0.55s ease;
        }

        .reel::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(to top, rgba(0,0,0,0.92), transparent 54%);
            pointer-events: none;
        }

        .reel:hover video,
        .reel:hover img { transform: scale(1.075); filter: grayscale(14%) brightness(0.86); }

        .reel-meta {
            position: absolute;
            inset: auto 1.2rem 1.2rem;
            z-index: 2;
            pointer-events: none;
            transition: opacity 0.35s ease, transform 0.35s var(--ease);
        }

        .reel h3 {
            font-size: clamp(1.55rem, 2.4vw, 2.25rem);
            margin-bottom: 0.35rem;
        }

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

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

        .video-more {
            display: grid;
            place-items: center;
            gap: 1rem;
            margin: clamp(1.4rem, 3vw, 2.6rem) auto 0;
            text-align: center;
        }

        .video-more-mark {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            color: var(--gold);
        }

        .video-more-mark::before,
        .video-more-mark::after {
            content: "";
            width: clamp(48px, 8vw, 88px);
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(216, 182, 109, 0.72));
        }

        .video-more-mark::after {
            background: linear-gradient(90deg, rgba(216, 182, 109, 0.72), transparent);
        }

        .video-more-mark span {
            font-family: "Cormorant Garamond", serif;
            font-size: 1.35rem;
            line-height: 1;
        }

        .video-more a {
            display: inline-flex;
            align-items: center;
            gap: 0.9rem;
            color: var(--gold);
            font-size: 0.74rem;
            font-weight: 800;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            transition: color 0.3s ease, transform 0.3s var(--ease);
        }

        .video-more a:hover {
            color: var(--paper);
            transform: translateX(4px);
        }

        .audio-take {
            border: 1px solid var(--line);
            padding: 1.2rem;
            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 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);
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 1rem;
            margin-top: clamp(2rem, 5vw, 4rem);
        }

        .gallery figure {
            position: relative;
            min-height: 240px;
            overflow: hidden;
            border: 1px solid var(--line);
            background: #111;
        }

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

        .gallery img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(78%) contrast(1.05);
            transition: transform 0.9s var(--ease), filter 0.45s ease;
        }

        .gallery figure:hover img { transform: scale(1.055); filter: grayscale(8%) contrast(1); }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1px;
            margin-top: clamp(2rem, 5vw, 4rem);
            border: 1px solid var(--line);
            background: var(--line);
        }

        .service {
            min-height: 240px;
            padding: clamp(1.3rem, 3vw, 2.2rem);
            background: rgba(255,255,255,0.035);
            transition: background 0.35s ease, transform 0.35s var(--ease);
        }

        .service:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }

        .service span {
            display: block;
            margin-bottom: 2rem;
            color: var(--gold);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.17em;
            text-transform: uppercase;
        }

        .service h3 {
            margin-bottom: 1rem;
            font-size: clamp(1.65rem, 2.6vw, 2.35rem);
        }

        .service p {
            color: var(--soft);
            line-height: 1.75;
        }

        .edu-panel {
            position: relative;
            min-height: clamp(360px, 45vw, 500px);
            margin-top: clamp(1.3rem, 3vw, 2.4rem);
            overflow: hidden;
            border: 1px solid var(--line);
            background: #111;
            isolation: isolate;
        }

        .edu-copy {
            position: relative;
            z-index: 2;
            width: min(520px, calc(100% - 2rem));
            margin: clamp(1rem, 3vw, 2rem);
            padding: clamp(1.4rem, 3vw, 2.4rem);
            border: 1px solid rgba(247,242,233,0.18);
            background: rgba(8, 7, 7, 0.74);
            backdrop-filter: blur(14px);
        }

        .edu-copy h3 {
            margin-bottom: 1rem;
            font-size: clamp(2rem, 3.6vw, 3.4rem);
        }

        .edu-copy p {
            color: var(--soft);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .edu-image {
            position: absolute;
            inset: 0;
            overflow: hidden;
            border: 0;
            z-index: -1;
        }

        .edu-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 28%;
            filter: grayscale(28%) brightness(0.7);
        }

        .edu-panel::after {
            content: "";
            position: absolute;
            inset: 0;
            z-index: 1;
            background: linear-gradient(90deg, rgba(8,7,7,0.86) 0%, rgba(8,7,7,0.55) 38%, rgba(8,7,7,0.08) 100%);
            pointer-events: none;
        }

        .contact {
            min-height: 78svh;
            display: grid;
            place-items: center;
            text-align: center;
            background:
                linear-gradient(rgba(8,7,7,0.8), rgba(8,7,7,0.92)),
                url("../galeria_2.jpg") center / cover no-repeat;
        }

        .contact h2 {
            max-width: 980px;
            margin: 0 auto 1.3rem;
            font-size: clamp(3.4rem, 9vw, 9rem);
        }

        .contact p {
            max-width: 620px;
            margin: 0 auto 2rem;
            color: var(--soft);
            line-height: 1.8;
        }

        .contact-email {
            display: inline-flex;
            margin-top: 0.8rem;
            color: var(--gold);
            font-family: "Cormorant Garamond", serif;
            font-size: clamp(1.7rem, 4vw, 3rem);
        }

        .socials {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.7rem;
            margin-top: 2rem;
        }

        .socials a {
            width: 54px;
            height: 54px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            border: 1px solid var(--line);
            color: var(--soft);
            transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s var(--ease);
        }

        .socials a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

        .socials svg {
            width: 22px;
            height: 22px;
            fill: currentColor;
        }

        footer {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            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: 1050px) {
            .hero-grid, .split, .work-header {
                grid-template-columns: 1fr;
            }

            .hero-card { max-width: 420px; transform: none; }

            .reels-grid, .services-grid, .audio-grid {
                grid-template-columns: 1fr;
            }

            .reel, .reel:nth-child(2), .reel:nth-child(3) { min-height: 0; }

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

        @media (max-width: 780px) {
            .site-nav { align-items: center; }
            .menu-toggle {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 6px;
                border-color: rgba(216, 182, 109, 0.55);
                background: rgba(8, 7, 7, 0.58);
            }
            .menu-toggle span { margin: 0; }
            .nav-links {
                position: fixed;
                inset: 0 0 auto 0;
                min-height: 100svh;
                display: grid;
                place-content: center;
                gap: 1.35rem;
                background: rgba(8,7,7,0.96);
                transform: translateY(-100%);
                transition: transform 0.42s var(--ease);
            }

            .nav-links.is-open { transform: translateY(0); }
            .nav-links a { font-size: 1rem; justify-content: center; }
            .hero { padding-top: 6rem; }
            .hero h1 {
                font-size: clamp(3.3rem, 16vw, 6rem);
                letter-spacing: 0.08em;
            }
            .hero-subtitle {
                font-size: 0.68rem;
                letter-spacing: 0.28em;
                line-height: 1.8;
            }
            .hero-card { display: none; }
            .portrait-frame { min-height: 430px; }
            .stats-strip { grid-template-columns: 1fr; }
            .gallery { grid-template-columns: 1fr; }
            .gallery figure,
            .gallery figure:nth-child(n) {
                grid-column: 1;
                min-height: 330px;
            }
            footer { flex-direction: column; }
        }

        @media (max-width: 520px) {
            .brand { letter-spacing: 0.16em; }
            .btn { width: 100%; }
            .hero-actions { width: 100%; }
            .reel, .reel:nth-child(2), .reel:nth-child(3) { min-height: 0; }
            .section { padding-block: 3.2rem; }
            .section-heading { font-size: clamp(2.25rem, 12vw, 3.7rem); }
        }
