        /* ============================================================ */
        /* DESIGN TOKENS (from design_system.html)                       */
        /* ============================================================ */
        :root {
            --primary: #C67B30;
            --primary-rgb: 198, 123, 48;
            --primary-hsl: hsl(28, 65%, 48%);
            --accent: #D4B87C;
            --accent-rgb: 212, 184, 124;
            --accent-glow: rgba(198, 123, 48, 0.35);
            --gold: #D4B87C;

            --white: #E8E0D4;
            --black: #0C0A08;
            --midnight-blue: #2A2218;
            --surface-1: #0C0A08;
            --surface-2: #161210;
            --surface-3: #1F1A15;
            --light-grey: #9A9080;
            --gainsboro: #D4CCC0;

            --text-primary: var(--white);
            --text-secondary: var(--light-grey);
            --border-subtle: rgba(255, 245, 230, 0.08);
            --border-mid: rgba(255, 245, 230, 0.15);
            --glass: rgba(255, 245, 230, 0.06);

            --font-display: 'Pacifico', cursive;
            --font-body: 'Lato', sans-serif;
            --font-ui: 'Inter', sans-serif;
            --font-mono: 'Courier New', Courier, monospace;
        }

        /* ============================================================ */
        /* RESET                                                         */
        /* ============================================================ */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: auto;
            /* Lenis handles smooth scroll */
        }

        body {
            background-color: var(--surface-1);
            color: var(--white);
            font-family: var(--font-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
            font: inherit;
            color: inherit;
        }

        img,
        video {
            display: block;
            max-width: 100%;
        }

        /* ============================================================ */
        /* KEYFRAMES                                                     */
        /* ============================================================ */
        @keyframes shimmer {
            from {
                transform: translateX(-100%) skewX(-15deg);
            }

            to {
                transform: translateX(200%) skewX(-15deg);
            }
        }

        @keyframes beam-drop {
            0% {
                transform: translateY(-100%);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(110%);
                opacity: 0;
            }
        }

        @keyframes beam-slide {
            0% {
                transform: translateX(-100%);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateX(110%);
                opacity: 0;
            }
        }

        @keyframes glow-pulse {

            0%,
            100% {
                opacity: 0.4;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes float-gentle {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes scroll-line {
            0% {
                transform: scaleY(0);
                transform-origin: top;
            }

            50% {
                transform: scaleY(1);
                transform-origin: top;
            }

            51% {
                transform-origin: bottom;
            }

            100% {
                transform: scaleY(0);
                transform-origin: bottom;
            }
        }

        @keyframes orb-drift {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(40px, -30px) scale(1.05);
            }

            66% {
                transform: translate(-30px, 20px) scale(0.97);
            }
        }

        @keyframes spin-slow {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        @keyframes counter-glow {

            0%,
            100% {
                text-shadow: 0 0 20px rgba(198, 123, 48, 0.3);
            }

            50% {
                text-shadow: 0 0 40px rgba(198, 123, 48, 0.6);
            }
        }

        /* ============================================================ */
        /* NAVBAR                                                        */
        /* ============================================================ */
        .hero-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 clamp(20px, 4vw, 48px);
            background: rgba(12, 10, 8, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--border-subtle);
            transform: translateY(-100%);
            will-change: transform;
        }

        .hero-nav-inner {
            max-width: 1320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 90px;
        }

        .nav-logo {
            height: 65px;
            width: auto;
            flex-shrink: 0;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
            list-style: none;
        }

        .nav-links a {
            color: var(--light-grey);
            padding: 10px 16px;
            font-size: 12px;
            font-weight: 500;
            font-family: var(--font-ui);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 16px;
            right: 16px;
            height: 1px;
            background: var(--accent);
            transform: scaleX(0);
            transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .nav-links a:hover::after {
            transform: scaleX(1);
        }

        .nav-links a:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 4px;
            border-radius: 4px;
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            background: var(--primary);
            color: var(--black);
            font-size: 12px;
            font-weight: 700;
            font-family: var(--font-ui);
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 100px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px var(--accent-glow);
        }

        .nav-cta:hover::before {
            animation: shimmer 0.6s ease forwards;
        }

        .nav-cta:focus-visible {
            outline: 2px solid var(--white);
            outline-offset: 3px;
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            padding: 8px;
        }

        .nav-hamburger span {
            width: 24px;
            height: 2px;
            background: var(--white);
            border-radius: 2px;
            transition: all 0.3s;
        }

        /* ============================================================ */
        /* HERO WRAPPER (pin target for GSAP)                            */
        /* ============================================================ */
        .hero-wrapper {
            position: relative;
            /* ScrollTrigger will add height via scrub space */
        }

        .hero {
            position: relative;
            width: 100%;
            min-height: 100vh;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 130px;
            /* Offset to center content below the header */
        }

        /* ============================================================ */
        /* VIDEO LAYER                                                   */
        /* ============================================================ */
        .hero-video-wrap {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

        .hero-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.55;
            filter: saturate(0.75) contrast(1.1);
        }

        /* Vignette overlay */
        .hero-vignette {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                radial-gradient(ellipse at center, transparent 30%, var(--surface-1) 100%),
                linear-gradient(to top, var(--surface-1) 0%, transparent 40%);
            pointer-events: none;
        }

        /* Noise grain */
        .hero-noise {
            position: absolute;
            inset: 0;
            z-index: 2;
            opacity: 0.04;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-repeat: repeat;
            background-size: 128px 128px;
        }

        /* Grid background */
        .hero-grid {
            position: absolute;
            inset: 0;
            z-index: 2;
            background-image:
                linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
            pointer-events: none;
        }

        /* Beam borders */
        .hero-beam-v {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(255, 255, 255, 0.04);
            overflow: hidden;
            z-index: 3;
            pointer-events: none;
        }

        .hero-beam-v::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent, var(--accent), transparent);
            transform: translateY(-100%);
            animation: beam-drop 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
            opacity: 0.6;
        }

        .hero-beam-h {
            position: absolute;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.04);
            overflow: hidden;
            z-index: 3;
            pointer-events: none;
        }

        .hero-beam-h::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, transparent, var(--accent), transparent);
            transform: translateX(-100%);
            animation: beam-slide 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
            opacity: 0.6;
        }

        /* Ambient orbs */
        .hero-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            pointer-events: none;
            animation: orb-drift 14s ease-in-out infinite;
            z-index: 1;
        }

        /* ============================================================ */
        /* HERO CONTENT                                                  */
        /* ============================================================ */
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1320px;
            margin: 0 auto;
            padding: 40px clamp(24px, 5vw, 48px) 60px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 60px;
            align-items: center;
        }

        /* Left column */
        .hero-left {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            font-family: var(--font-ui);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: 1px solid var(--primary);
            color: var(--primary);
            background: rgba(var(--primary-rgb), 0.08);
            width: fit-content;
            opacity: 0;
        }

        .hero-eyebrow .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            animation: glow-pulse 2s ease-in-out infinite;
        }

        .hero-headline {
            font-family: var(--font-body);
            font-size: clamp(42px, 6.5vw, 88px);
            font-weight: 900;
            line-height: 0.95;
            letter-spacing: -2px;
            color: var(--white);
        }

        .hero-headline .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(60px) rotateX(15deg);
            will-change: transform, opacity;
        }

        .hero-headline .accent-text {
            color: var(--accent);
            font-family: var(--font-display);
            letter-spacing: 0;
        }

        .hero-headline .line {
            display: block;
        }

        .hero-subtitle {
            font-size: clamp(15px, 1.6vw, 18px);
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            /* Increased contrast as requested */
            max-width: 520px;
            opacity: 0;
        }

        /* Counters row */
        .hero-counters {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            opacity: 0;
        }

        .counter-item {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .counter-value {
            font-family: var(--font-ui);
            font-size: clamp(28px, 3vw, 36px);
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            animation: counter-glow 3s ease-in-out infinite;
        }

        .counter-label {
            font-size: 11px;
            font-weight: 500;
            font-family: var(--font-ui);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--light-grey);
        }

        /* CTA buttons */
        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: center;
            opacity: 0;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--primary);
            color: var(--black);
            font-size: 14px;
            font-weight: 700;
            font-family: var(--font-ui);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-radius: 100px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px var(--accent-glow);
        }

        .btn-primary:hover::before {
            animation: shimmer 0.6s ease forwards;
        }

        .btn-primary:focus-visible {
            outline: 2px solid var(--white);
            outline-offset: 3px;
        }

        .btn-primary svg {
            transition: transform 0.3s;
        }

        .btn-primary:hover svg {
            transform: translateX(4px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 28px;
            font-size: 14px;
            font-weight: 600;
            font-family: var(--font-ui);
            color: var(--white);
            border-radius: 100px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .btn-secondary .gb-spin {
            position: absolute;
            inset: -100%;
            width: 300%;
            height: 300%;
            z-index: -2;
            animation: spin-slow 4s linear infinite;
            background: conic-gradient(from 270deg, transparent 0, var(--accent) 90deg, transparent 90deg);
        }

        .btn-secondary .gb-inner {
            position: absolute;
            inset: 1px;
            z-index: -1;
            background: var(--surface-1);
            border-radius: 100px;
            transition: background 0.3s;
        }

        .btn-secondary:hover .gb-inner {
            background: var(--surface-2);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
        }

        .btn-secondary:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        .btn-secondary svg {
            transition: transform 0.3s;
        }

        .btn-secondary:hover svg {
            transform: translateX(4px);
        }

        /* Pills row */
        .hero-pills {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            opacity: 0;
        }

        .pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            font-family: var(--font-ui);
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid var(--border-mid);
            color: var(--light-grey);
            background: var(--glass);
            transition: all 0.3s ease;
            cursor: default;
        }

        .pill:hover {
            border-color: rgba(var(--accent-rgb), 0.4);
            color: var(--accent);
            background: rgba(var(--accent-rgb), 0.06);
            transform: translateY(-2px);
        }

        /* ============================================================ */
        /* RIGHT COLUMN – Band Card                                      */
        /* ============================================================ */
        .hero-right-wrap {
            position: relative;
        }

        .hero-right {
            display: flex;
            flex-direction: column;
            gap: 20px;
            opacity: 0;
        }

        .band-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            background: var(--surface-2);
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s, box-shadow 0.4s;
        }

        .band-card:hover {
            transform: translateY(-6px);
            border-color: rgba(var(--accent-rgb), 0.3);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .band-card-img-wrap {
            position: relative;
            height: 320px;
            overflow: hidden;
        }

        .band-card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            filter: saturate(0.6) contrast(1.1);
            transition: filter 0.5s, transform 0.5s;
        }

        .band-card:hover .band-card-img {
            filter: saturate(0.8) contrast(1.1);
            transform: scale(1.03);
        }

        /* Duotone overlay */
        .band-card-img-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    var(--surface-2) 0%,
                    rgba(12, 10, 8, 0.5) 40%,
                    rgba(198, 123, 48, 0.1) 100%);
            pointer-events: none;
        }

        /* Grain on card */
        .band-card-img-wrap::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: 1;
            opacity: 0.06;
            pointer-events: none;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 128px 128px;
        }

        .band-card-body {
            padding: 24px;
            position: relative;
        }

        .band-card-label {
            font-size: 10px;
            font-weight: 600;
            font-family: var(--font-ui);
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .band-card-title {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 10px;
        }

        .band-card-desc {
            font-size: 13px;
            color: var(--light-grey);
            line-height: 1.6;
        }

        /* Glow behind card */
        .band-card-glow {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(var(--primary-rgb), 0.15);
            filter: blur(80px);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
            pointer-events: none;
        }

        /* ============================================================ */
        /* SCROLL INDICATOR                                              */
        /* ============================================================ */
        .scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            opacity: 0;
        }

        .scroll-indicator-text {
            font-size: 10px;
            font-weight: 600;
            font-family: var(--font-ui);
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--light-grey);
        }

        .scroll-indicator-line {
            width: 1px;
            height: 40px;
            background: var(--border-mid);
            position: relative;
            overflow: hidden;
        }

        .scroll-indicator-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent);
            animation: scroll-line 2s ease-in-out infinite;
        }

        /* ============================================================ */
        /* REDUCED MOTION                                                */
        /* ============================================================ */
        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .hero-video {
                opacity: 0.35;
            }
        }

        /* ============================================================ */
        /* RESPONSIVE                                                    */
        /* ============================================================ */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding-top: 60px;
            }

            .hero-right {
                max-width: 420px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            .hero-content {
                padding: 40px 20px 80px;
            }

            .hero-headline {
                font-size: clamp(36px, 10vw, 56px);
                letter-spacing: -1px;
            }

            .hero-counters {
                gap: 24px;
            }

            .counter-value {
                font-size: 24px;
            }

            .hero-right {
                max-width: 100%;
            }

            .band-card-img-wrap {
                height: 220px;
            }

            .hero-beam-v,
            .hero-beam-h {
                display: none;
            }

            .scroll-indicator {
                bottom: 16px;
            }
        }

        @media (max-width: 480px) {
            .hero-nav-inner {
                height: 75px;
            }

            .nav-logo {
                height: 50px;
            }

            .hero-ctas {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary,
            .btn-secondary {
                justify-content: center;
            }

            .hero-counters {
                justify-content: space-between;
            }
        }

        /* ============================================================ */
        /* FOCUS VISIBLE                                                 */
        /* ============================================================ */
        :focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* ============================================================ */
        /* FLASHLIGHT EFFECT ON CARD                                     */
        /* ============================================================ */
        .flashlight-card {
            position: relative;
        }

        .flashlight-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
                    rgba(var(--accent-rgb), 0.1), transparent 40%);
            opacity: 0;
            transition: opacity 0.4s;
            pointer-events: none;
            z-index: 2;
            border-radius: inherit;
        }

        .flashlight-card:hover::before {
            opacity: 1;
        }

        /* ============================================================ */
        /* SECTION: SOBRE                                               */
        /* ============================================================ */
        .sobre {
            position: relative;
            padding: 140px 0;
            background: var(--surface-1);
            overflow: hidden;
            z-index: 20;
        }

        .sobre-inner {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 clamp(24px, 5vw, 48px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 120px;
            align-items: center;
        }

        .sobre-left {
            position: relative;
            z-index: 2;
        }

        .sobre-watermark {
            position: absolute;
            top: -20px;
            left: -40px;
            font-size: clamp(140px, 18vw, 240px);
            font-weight: 900;
            color: rgba(255, 255, 255, 0.02);
            font-family: var(--font-ui);
            line-height: 1;
            z-index: -1;
            pointer-events: none;
            letter-spacing: -4px;
        }

        .sobre-subtitle-label {
            font-family: var(--font-ui);
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 4px;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 24px;
            display: inline-block;
        }

        .sobre-title {
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 32px;
            color: var(--white);
            margin-top: 0;
            font-family: var(--font-body);
        }

        .sobre-desc {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 24px;
        }

        .sobre-desc:last-child {
            margin-bottom: 0;
        }

        .sobre-right {
            position: relative;
            width: 100%;
        }

        /* ============================================================ */
        /* SOBRE SECTION VISUAL UPGRADES                                 */
        /* ============================================================ */
        .grid-bg-sobre {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse at center, black 50%, transparent 80%);
            z-index: 0;
            pointer-events: none;
        }

        .sobre-img-wrap {
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 4/5;
            position: relative;
            width: 85%;
            margin-left: auto;
            /* Floating effect */
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s, border-color 0.6s;
            will-change: transform;
            border: 1px solid transparent;
        }

        .sobre-img-wrap:hover {
            transform: scale(1.03) translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
            border-color: rgba(var(--accent-rgb), 0.3);
            z-index: 20;
        }

        .sobre-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.15);
            /* Parallax starting scale */
            transform-origin: center center;
            will-change: transform;
            transition: filter 0.6s;
            filter: grayscale(0.2);
        }

        .sobre-img-wrap:hover .sobre-img {
            filter: grayscale(0) contrast(1.05) brightness(1.05);
        }

        /* The overlapping glass card */
        .sobre-glass-card {
            position: absolute;
            top: 65%;
            /* Adjusted lower to avoid faces */
            left: -50px;
            /* Slightly less overflow to the left */
            transform: translateY(-50%);
            background: rgba(22, 18, 16, 0.45);
            backdrop-filter: blur(28px);
            -webkit-backdrop-filter: blur(28px);
            border: 1px solid var(--border-mid);
            border-radius: 20px;
            padding: 32px;
            width: clamp(260px, 30vw, 380px);
            /* Smaller width to reveal more image */
            z-index: 10;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
        }

        .sobre-quote-icon {
            color: var(--primary);
            margin-bottom: 20px;
            /* Tighter spacing */
            width: 24px;
            /* Smaller icon */
            height: 24px;
            opacity: 0.9;
        }

        .sobre-quote-text {
            font-size: clamp(14px, 1.3vw, 17px);
            /* Smaller font size */
            line-height: 1.6;
            color: var(--white);
            margin-bottom: 24px;
            font-weight: 400;
        }

        .sobre-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sobre-author-name {
            font-size: 15px;
            font-weight: 700;
            color: var(--white);
            display: block;
            margin-bottom: 4px;
        }

        .sobre-author-role {
            font-size: 11px;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: var(--font-ui);
            font-weight: 600;
        }

        /* ============================================================ */
        /* SECTION: MEMBROS DA BANDA                                     */
        /* ============================================================ */
        .membros {
            padding: 120px 0;
            background: var(--surface-2);
            position: relative;
            z-index: 10;
            overflow: hidden;
        }

        .membros-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
            padding: 0 24px;
        }

        .membros-title {
            font-size: clamp(36px, 4vw, 56px);
            font-family: var(--font-body);
            color: var(--white);
            margin-bottom: 24px;
        }

        .membros-subtitle {
            font-family: var(--font-ui);
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 4px;
            font-weight: 700;
            font-size: 14px;
            display: block;
            margin-bottom: 16px;
        }

        .membros-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(24px, 5vw, 48px);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            perspective: 1200px;
        }

        .member-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            aspect-ratio: 3/4;
            background: var(--surface-3);
            border: 1px solid var(--border-subtle);
            cursor: pointer;
            transition: border-color 0.4s ease, box-shadow 0.4s ease;
            transform-style: preserve-3d;
            /* 3D Tilt properties populated by JS */
            transform: perspective(1200px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
            will-change: transform;
        }

        /* The custom background color for each Beatle assigned on hover */
        .member-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--beatle-color, var(--accent));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            mix-blend-mode: soft-light;
            /* Integrates elegantly with the image */
        }

        .member-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
            z-index: 10;
        }

        .member-card:hover::before {
            opacity: 0.6;
        }

        .member-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
            filter: grayscale(0.6) brightness(0.8);
            z-index: 2;
            position: relative;
        }

        .member-card:hover .member-img {
            transform: scale(1.08);
            /* slight zoom past the framing */
            filter: grayscale(0) brightness(1.05);
            /* revive colors */
        }

        .member-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px 24px 24px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 3;
            transform: translateZ(30px);
            /* 3D pop out effect on the text */
        }

        .member-role {
            font-family: var(--font-ui);
            font-size: 11px;
            font-weight: 700;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
            display: block;
        }

        .member-name {
            font-family: var(--font-body);
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .member-beatle {
            font-family: var(--font-ui);
            font-size: 14px;
            color: var(--light-grey);
            font-style: italic;
        }

        /* Interactive cue */
        .member-cue {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 4;
            opacity: 0;
            transform: translateY(10px) translateZ(40px);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .member-card:hover .member-cue {
            opacity: 1;
            transform: translateY(0) translateZ(40px);
        }

        /* ============================================================ */
        /* MODAL OVERLAY                                                 */
        /* ============================================================ */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(12, 10, 8, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            padding: 24px;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-content {
            background: var(--surface-2);
            border: 1px solid var(--border-mid);
            border-radius: 20px;
            width: 100%;
            max-width: 900px;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.95) translateY(20px);
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
            display: grid;
            grid-template-columns: 2fr 3fr;
            /* Scrollbar styling for modal */
            scrollbar-width: thin;
            scrollbar-color: var(--accent) var(--surface-3);
        }

        .modal-overlay.active .modal-content {
            transform: scale(1) translateY(0);
        }

        .modal-content::-webkit-scrollbar {
            width: 6px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: var(--surface-3);
        }

        .modal-content::-webkit-scrollbar-thumb {
            background-color: var(--accent);
            border-radius: 10px;
        }

        .modal-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-subtle);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--accent);
            color: var(--black);
            transform: rotate(90deg);
        }

        .modal-img-wrap {
            position: relative;
            background: var(--surface-3);
            border-right: 1px solid var(--border-subtle);
        }

        .modal-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 400px;
        }

        .modal-body {
            padding: 48px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .modal-role {
            font-family: var(--font-ui);
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-size: 11px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .modal-name {
            font-family: var(--font-body);
            font-size: 40px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 8px;
        }

        .modal-beatle {
            font-family: var(--font-ui);
            font-size: 16px;
            color: var(--light-grey);
            font-style: italic;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border-subtle);
        }

        .modal-bio {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
        }

        /* ============================================================ */
        /* RESPONSIVE — 1400 px (laptop / intermediate screens)          */
        /* ============================================================ */
        @media (max-width: 1400px) {

            /* --- Hero --- */
            .hero-content {
                grid-template-columns: 1fr 320px;
                gap: 40px;
            }

            .hero {
                padding-top: 100px;
            }

            .hero-headline {
                font-size: clamp(36px, 5vw, 64px);
                letter-spacing: -1.5px;
            }

            .band-card-img-wrap {
                height: 260px;
            }

            /* Counters tighter */
            .hero-counters {
                gap: 28px;
            }

            .counter-value {
                font-size: clamp(24px, 2.4vw, 30px);
            }

            /* --- Sobre --- */
            .sobre {
                padding: 100px 0;
            }

            .sobre-inner {
                gap: 60px;
            }

            .sobre-glass-card {
                width: clamp(220px, 24vw, 320px);
                padding: 24px;
                left: -30px;
            }

            .sobre-quote-text {
                font-size: clamp(13px, 1.1vw, 15px);
            }

            /* --- Membros --- */
            .membros {
                padding: 80px 0;
            }

            .membros-header {
                margin-bottom: 56px;
            }

            .membros-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 16px;
            }

            .member-name {
                font-size: 20px;
            }

            /* --- Agenda --- */
            .agenda-inner {
                padding: 0 clamp(20px, 4vw, 40px);
            }

            .agenda-header {
                margin-bottom: clamp(36px, 5vw, 56px);
            }

            .agenda-title {
                font-size: clamp(32px, 4.5vw, 56px);
            }

            .agenda-row {
                grid-template-columns: 90px 1fr auto auto;
                gap: 16px 24px;
            }

            .agenda-date-day {
                font-size: clamp(30px, 3.2vw, 44px);
            }

            .agenda-venue {
                font-size: clamp(15px, 1.5vw, 18px);
            }
        }

        /* ============================================================ */
        /* RESPONSIVE — 1024 px (tablet / small laptop)                  */
        /* ============================================================ */
        @media (max-width: 1024px) {

            /* --- Hero --- */
            .hero {
                padding-top: 90px;
                min-height: unset;
                height: auto;
                padding-bottom: 60px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 48px;
                padding: 40px clamp(20px, 4vw, 40px) 60px;
            }

            .hero-headline {
                font-size: clamp(36px, 6vw, 58px);
            }

            .hero-subtitle {
                max-width: 100%;
            }

            .hero-right-wrap {
                max-width: 480px;
                margin: 0 auto;
                width: 100%;
            }

            .hero-right {
                opacity: 1 !important;
            }

            /* --- Navbar --- */
            .nav-links {
                display: none;
            }

            .nav-hamburger {
                display: flex;
            }

            /* --- Membros --- */
            .membros-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            /* --- Modal --- */
            .modal-content {
                grid-template-columns: 1fr;
            }

            .modal-img {
                height: 300px;
                min-height: auto;
                border-right: none;
                border-bottom: 1px solid var(--border-subtle);
            }

            .modal-body {
                padding: 32px;
            }

            /* --- Sobre --- */
            .sobre-inner {
                grid-template-columns: 1fr;
                gap: 80px;
            }

            .sobre-left {
                text-align: center;
                max-width: 600px;
                margin: 0 auto;
            }

            .sobre-watermark {
                left: 50%;
                transform: translateX(-50%);
            }

            .sobre-img-wrap {
                width: 100%;
            }

            .sobre-glass-card {
                left: 50%;
                top: auto;
                bottom: -50px;
                transform: translateX(-50%);
                width: 90%;
                padding: 32px;
            }
        }

        /* ============================================================ */
        /* RESPONSIVE — 600 px (mobile)                                  */
        /* ============================================================ */
        @media (max-width: 600px) {

            /* --- Hero --- */
            .hero-headline {
                font-size: clamp(32px, 9vw, 48px);
                letter-spacing: -1px;
            }

            .hero-counters {
                gap: 20px;
            }

            .hero-ctas {
                flex-direction: column;
                align-items: stretch;
            }

            .btn-primary,
            .btn-secondary {
                justify-content: center;
            }

            /* --- Membros --- */
            .membros-grid {
                grid-template-columns: 1fr;
            }

            /* --- Nav --- */
            .hero-nav-inner {
                height: 70px;
            }

            .nav-logo {
                height: 48px;
            }

            /* --- Agenda rows --- */
            .agenda-row {
                grid-template-columns: 1fr;
                padding-left: 20px;
            }

            .agenda-date {
                flex-direction: row;
                align-items: baseline;
                gap: 10px;
            }

            .agenda-date-day {
                font-size: 28px;
            }

            .agenda-header-right {
                text-align: left;
            }

            .agenda-cta {
                grid-column: 1 / -1;
                justify-content: center;
            }
        }

        /* ============================================================ */
        /* GALERIA — INFINITE PHOTO STRIP                                 */
        /* ============================================================ */

        @keyframes marquee-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

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

            100% {
                transform: translateX(0);
            }
        }

        @keyframes galeria-fade-up {
            0% {
                opacity: 0;
                transform: translateY(48px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .galeria {
            position: relative;
            padding: clamp(80px, 10vw, 140px) 0;
            overflow: hidden;
            background:
                radial-gradient(ellipse 80% 60% at 20% 0%, rgba(198, 123, 48, 0.10) 0%, transparent 55%),
                radial-gradient(ellipse 60% 50% at 80% 100%, rgba(212, 184, 124, 0.06) 0%, transparent 50%),
                var(--surface-2);
        }

        /* Noise grain — reuse same pattern as hero */
        .galeria::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 128px 128px;
            opacity: 0.03;
            pointer-events: none;
            z-index: 0;
        }

        .galeria-inner {
            position: relative;
            z-index: 2;
        }

        /* Section header */
        .galeria-header {
            max-width: 1320px;
            margin: 0 auto clamp(48px, 6vw, 80px);
            padding: 0 clamp(24px, 5vw, 48px);
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 24px;
        }

        .galeria-header-left {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .galeria-eyebrow {
            font-family: var(--font-ui);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .galeria-eyebrow .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--primary);
            animation: glow-pulse 2.2s ease-in-out infinite;
        }

        .galeria-title {
            font-family: var(--font-body);
            font-weight: 900;
            font-size: clamp(38px, 5.5vw, 72px);
            line-height: 0.95;
            letter-spacing: -2px;
            color: var(--white);
        }

        .galeria-tagline {
            font-family: var(--font-ui);
            font-size: clamp(17px, 1.8vw, 22px);
            color: var(--light-grey);
            text-align: right;
            line-height: 1.6;
            font-style: italic;
        }

        /* Edge fade mask on the strip */
        .galeria-track {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 16px;
            /* Fade edges with mask */
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
        }

        /* One scrolling row */
        .galeria-rail {
            display: flex;
            gap: 16px;
            width: max-content;
            will-change: transform;
        }

        .galeria-rail--left {
            animation: marquee-left 90s linear infinite;
        }

        .galeria-rail--right {
            animation: marquee-right 85s linear infinite;
        }

        /* Pause on hover over the whole track */
        .galeria-track:hover .galeria-rail {
            animation-play-state: paused;
        }

        /* Individual photo tile */
        .galeria-item {
            flex-shrink: 0;
            position: relative;
            height: clamp(220px, 24vw, 340px);
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            border: 1px solid var(--border-subtle);
            transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
        }

        /* Natural aspect ratio widths — varied to mimic reference */
        .galeria-item[data-aspect="portrait"] {
            width: calc(clamp(220px, 24vw, 340px) * 0.72);
        }

        .galeria-item[data-aspect="square"] {
            width: clamp(220px, 24vw, 340px);
        }

        .galeria-item[data-aspect="landscape"] {
            width: calc(clamp(220px, 24vw, 340px) * 1.45);
        }

        .galeria-item[data-aspect="wide"] {
            width: calc(clamp(220px, 24vw, 340px) * 1.75);
        }

        .galeria-item:hover {
            border-color: rgba(var(--primary-rgb), 0.5);
            transform: scale(1.04) translateY(-6px);
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.65);
            z-index: 5;
        }

        .galeria-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: grayscale(0.35) brightness(0.82);
            transition: filter 0.5s ease, transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
            display: block;
        }

        .galeria-item:hover img {
            filter: grayscale(0) brightness(1.05) contrast(1.02);
            transform: scale(1.06);
        }

        /* Overlay on hover */
        .galeria-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(12, 10, 8, 0.7) 0%, transparent 55%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .galeria-item:hover::after {
            opacity: 1;
        }

        /* Zoom icon cue */
        .galeria-zoom-cue {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%) translateY(12px);
            width: 38px;
            height: 38px;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            z-index: 5;
            opacity: 0;
            transition: opacity 0.4s, transform 0.4s;
        }

        .galeria-item:hover .galeria-zoom-cue {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        /* Caption chip */
        .galeria-caption {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            font-family: var(--font-ui);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--white);
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.4s, transform 0.4s;
            z-index: 5;
            pointer-events: none;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
        }

        .galeria-item:hover .galeria-caption {
            opacity: 1;
            transform: translateY(0);
        }

        /* Gallery Lightbox (separate from flyer lightbox) */
        .galeria-overlay {
            position: fixed;
            inset: 0;
            z-index: 9100;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(12, 10, 8, 0.95);
            backdrop-filter: blur(18px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.45s ease;
            padding: 24px;
        }

        .galeria-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .galeria-lb-container {
            position: relative;
            max-width: min(1000px, 96vw);
            max-height: 90vh;
            width: 100%;
            transform: scale(0.94) translateY(32px);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .galeria-overlay.active .galeria-lb-container {
            transform: scale(1) translateY(0);
        }

        .galeria-lb-img {
            width: 100%;
            max-height: 80vh;
            object-fit: contain;
            display: block;
            border-radius: 8px;
            border: 1px solid var(--border-mid);
            box-shadow: 0 60px 160px rgba(0, 0, 0, 0.85);
        }

        .galeria-lb-close {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 44px;
            height: 44px;
            background: var(--surface-2);
            border: 1px solid var(--border-mid);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-grey);
            cursor: pointer;
            transition: color 0.3s, background 0.3s;
            z-index: 10;
        }

        .galeria-lb-close:hover {
            color: var(--white);
            background: var(--surface-3);
        }

        .galeria-lb-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 16px;
            padding: 0 4px;
        }

        .galeria-lb-caption {
            font-family: var(--font-ui);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
        }

        .galeria-lb-counter {
            font-family: var(--font-ui);
            font-size: 12px;
            color: var(--light-grey);
        }

        /* Nav arrows */
        .galeria-lb-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: rgba(22, 18, 16, 0.7);
            border: 1px solid var(--border-mid);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            cursor: pointer;
            transition: background 0.3s, border-color 0.3s;
            z-index: 10;
        }

        .galeria-lb-nav:hover {
            background: var(--primary);
            border-color: var(--primary);
        }

        .galeria-lb-prev {
            left: -60px;
        }

        .galeria-lb-next {
            right: -60px;
        }

        @media (max-width: 900px) {
            .galeria-lb-prev {
                left: 8px;
            }

            .galeria-lb-next {
                right: 8px;
            }
        }

        /* Responsive 1400px */
        @media (max-width: 1400px) {
            .galeria-item {
                height: clamp(200px, 20vw, 280px);
            }
        }

        @media (max-width: 600px) {
            .galeria-rail--right {
                display: none;
            }

            .galeria-item {
                height: 200px;
            }
        }

        /* ============================================================ */
        /* CONTATO — CONTACT & BOOKING                                    */
        /* ============================================================ */

        @keyframes contato-glow-pulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(198, 123, 48, 0);
            }

            50% {
                box-shadow: 0 0 24px 4px rgba(198, 123, 48, 0.35);
            }
        }

        .contato {
            position: relative;
            padding: clamp(80px, 10vw, 140px) 0;
            overflow: hidden;
            background:
                radial-gradient(ellipse 90% 70% at 0% 0%, rgba(198, 123, 48, 0.12) 0%, transparent 55%),
                radial-gradient(ellipse 60% 50% at 100% 100%, rgba(212, 184, 124, 0.07) 0%, transparent 50%),
                var(--black);
        }

        .contato::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 128px 128px;
            opacity: 0.032;
            pointer-events: none;
            z-index: 0;
        }

        .contato-inner {
            position: relative;
            z-index: 2;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 clamp(24px, 5vw, 48px);
        }

        /* Top header area */
        .contato-eyebrow {
            font-family: var(--font-ui);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .contato-eyebrow .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--primary);
            animation: glow-pulse 2.2s ease-in-out infinite;
        }

        .contato-headline {
            font-family: var(--font-body);
            font-weight: 900;
            font-size: clamp(32px, 4.5vw, 56px);
            line-height: 1;
            letter-spacing: -2px;
            color: var(--white);
            margin-bottom: 12px;
        }

        .contato-headline span {
            color: var(--primary);
            font-family: var(--font-display);
            font-weight: 400;
            font-size: 1.1em;
            letter-spacing: 0;
            display: inline-block;
            transform: rotate(-2deg);
        }

        .contato-header-flex {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            margin-bottom: clamp(32px, 4vw, 48px);
        }

        .contato-header-text {
            flex: 1;
        }

        .contato-sub {
            font-family: var(--font-ui);
            font-size: clamp(11px, 1.2vw, 14px);
            color: var(--light-grey);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .contato-header-flex {
                flex-direction: column-reverse;
                align-items: flex-start;
                gap: 24px;
            }
        }

        /* Two column grid */
        .contato-grid {
            display: grid;
            grid-template-columns: 1.15fr 0.85fr;
            gap: clamp(32px, 5vw, 64px);
            align-items: center;
        }

        /* === LEFT PANEL === */
        .contato-left {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .contato-photo {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            width: 100%;
            aspect-ratio: 16 / 11;
        }

        .contato-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
            display: block;
            transition: transform 8s ease;
            filter: sepia(0.3) contrast(1.15) brightness(0.85);
        }

        .contato-photo:hover img {
            transform: scale(1.04);
        }

        /* Gradient overlay on photo */
        .contato-photo::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to top, rgba(12, 10, 8, 0.92) 0%, rgba(12, 10, 8, 0.3) 50%, transparent 100%),
                linear-gradient(to right, rgba(12, 10, 8, 0.2) 0%, transparent 60%);
        }

        .contato-photo-inner {
            position: absolute;
            inset: 0;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: clamp(24px, 4vw, 40px);
            gap: 28px;
        }

        .contato-logo {
            display: block;
            flex-shrink: 0;
            width: clamp(150px, 22vw, 260px);
            filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
        }

        /* Contact chips */
        .contato-chips {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contato-chip {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .contato-chip:hover {
            transform: translateX(6px);
        }

        .contato-chip-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(198, 123, 48, 0.15);
            border: 1px solid rgba(198, 123, 48, 0.35);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            flex-shrink: 0;
            transition: background 0.35s, border-color 0.35s;
        }

        .contato-chip:hover .contato-chip-icon {
            background: rgba(198, 123, 48, 0.28);
            border-color: var(--primary);
        }

        .contato-chip-text {
            display: flex;
            flex-direction: column;
        }

        .contato-chip-label {
            font-family: var(--font-ui);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
        }

        .contato-chip-value {
            font-family: var(--font-ui);
            font-size: clamp(13px, 1.4vw, 15px);
            color: var(--white);
            font-weight: 500;
        }

        /* === RIGHT PANEL — Form === */
        .contato-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contato-form-header {
            margin-bottom: 32px;
        }

        .contato-form-title {
            font-family: var(--font-body);
            font-size: clamp(20px, 2.2vw, 28px);
            font-weight: 900;
            color: var(--white);
            letter-spacing: -0.5px;
            margin-bottom: 8px;
        }

        .contato-form-desc {
            font-family: var(--font-ui);
            font-size: 14px;
            color: var(--light-grey);
            line-height: 1.6;
        }

        .contato-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contato-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .contato-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .contato-field label {
            font-family: var(--font-ui);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--primary);
        }

        .contato-field input,
        .contato-field textarea {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-mid);
            border-radius: 8px;
            padding: 14px 16px;
            font-family: var(--font-ui);
            font-size: 14px;
            color: var(--white);
            transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
            outline: none;
            width: 100%;
            box-sizing: border-box;
            -webkit-appearance: none;
            appearance: none;
        }

        .contato-field input::placeholder,
        .contato-field textarea::placeholder {
            color: rgba(200, 190, 180, 0.3);
        }

        .contato-field input:focus,
        .contato-field textarea:focus {
            border-color: var(--primary);
            background: rgba(198, 123, 48, 0.06);
            box-shadow: 0 0 0 3px rgba(198, 123, 48, 0.12);
        }

        .contato-field textarea {
            resize: vertical;
            min-height: 130px;
        }

        .contato-submit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 36px;
            background: var(--primary);
            color: var(--black);
            font-family: var(--font-ui);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: background 0.35s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s;
            align-self: flex-end;
            position: relative;
            overflow: hidden;
        }

        .contato-submit::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.35s;
        }

        .contato-submit:hover {
            background: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(198, 123, 48, 0.45);
        }

        .contato-submit:hover::before {
            opacity: 1;
        }

        .contato-submit:active {
            transform: translateY(0);
        }

        /* Success notice */
        .contato-success {
            display: none;
            padding: 16px 20px;
            background: rgba(198, 123, 48, 0.12);
            border: 1px solid rgba(198, 123, 48, 0.3);
            border-radius: 8px;
            font-family: var(--font-ui);
            font-size: 14px;
            color: var(--accent);
            text-align: center;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .contato-grid {
                grid-template-columns: 1fr;
            }

            .contato-photo {
                min-height: 380px;
                max-height: 480px;
            }
        }

        @media (max-width: 600px) {
            .contato-row {
                grid-template-columns: 1fr;
            }

            .contato-submit {
                align-self: stretch;
            }
        }

        /* ============================================================ */
        /* AGENDA — GIG SCHEDULE (background)                            */
        /* ============================================================ */

        @keyframes agenda-sweep {
            0% {
                transform: translateX(-80%) skewX(-12deg);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateX(160%) skewX(-12deg);
                opacity: 0;
            }
        }

        @keyframes agenda-bg-shift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .agenda {
            position: relative;
            padding: clamp(80px, 10vw, 140px) 0;
            overflow: hidden;
            /* Layered background: noise grain + warm radial glow + deep dark base */
            background:
                radial-gradient(ellipse 100% 70% at 90% 110%, rgba(198, 123, 48, 0.14) 0%, transparent 55%),
                radial-gradient(ellipse 60% 50% at 5% -10%, rgba(212, 184, 124, 0.07) 0%, transparent 50%),
                radial-gradient(ellipse 80% 60% at 50% 50%, rgba(22, 18, 16, 0.95) 0%, transparent 100%),
                var(--surface-1);
        }

        /* Film-grain noise overlay */
        .agenda::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
            background-size: 128px 128px;
            opacity: 0.035;
            pointer-events: none;
            z-index: 0;
        }

        /* Slow diagonal light sweep */
        .agenda::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(108deg,
                    transparent 0%,
                    rgba(198, 123, 48, 0.045) 45%,
                    rgba(212, 184, 124, 0.06) 50%,
                    rgba(198, 123, 48, 0.045) 55%,
                    transparent 100%);
            animation: agenda-sweep 9s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation-delay: 2s;
            pointer-events: none;
            z-index: 0;
        }

        /* Subtle grid overlay matching hero grid style */
        .agenda-grid-overlay {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-image:
                linear-gradient(to right, rgba(255, 245, 230, 0.018) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(255, 245, 230, 0.018) 1px, transparent 1px);
            background-size: 80px 80px;
            mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
            -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
            pointer-events: none;
        }

        .agenda-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            pointer-events: none;
            animation: orb-drift 18s ease-in-out infinite;
            z-index: 0;
        }

        /* Horizontal rule at top */
        .agenda-rule {
            width: 100%;
            height: 1px;
            background: var(--border-subtle);
            margin-bottom: clamp(48px, 6vw, 80px);
        }

        .agenda-inner {
            position: relative;
            z-index: 2;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 clamp(24px, 5vw, 48px);
        }

        /* Header row */
        .agenda-header {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: clamp(48px, 6vw, 80px);
            flex-wrap: wrap;
        }

        .agenda-header-left {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .agenda-eyebrow {
            font-family: var(--font-ui);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .agenda-eyebrow .dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: var(--primary);
            animation: glow-pulse 2.2s ease-in-out infinite;
        }

        .agenda-title {
            font-family: var(--font-body);
            font-weight: 900;
            font-size: clamp(38px, 5.5vw, 72px);
            line-height: 0.95;
            letter-spacing: -2px;
            color: var(--white);
        }

        .agenda-header-right {
            font-family: var(--font-ui);
            font-size: clamp(16px, 1.6vw, 19px);
            color: var(--light-grey);
            text-align: right;
            line-height: 1.6;
        }

        /* The rule separating header from list */
        .agenda-divider {
            width: 100%;
            height: 1px;
            background: var(--border-subtle);
            margin-bottom: 0;
        }

        /* Show list */
        .agenda-list {
            list-style: none;
        }

        /* Individual row */
        .agenda-row {
            position: relative;
            display: grid;
            grid-template-columns: 110px 1fr auto auto;
            gap: 24px 32px;
            align-items: center;
            padding: 28px 0;
            border-bottom: 1px solid var(--border-subtle);
            cursor: pointer;
            transition: background 0.35s ease;
            /* For the left accent bar */
            padding-left: 28px;
            margin-left: 0;
        }

        .agenda-row::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--border-subtle);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s;
        }

        .agenda-row:hover {
            background: rgba(var(--primary-rgb), 0.04);
        }

        .agenda-row:hover::before {
            transform: scaleY(1);
            background: var(--primary);
        }

        /* Date column */
        .agenda-date {
            display: flex;
            flex-direction: column;
            gap: 2px;
            min-width: 90px;
        }

        .agenda-date-day {
            font-family: var(--font-ui);
            font-size: clamp(36px, 4vw, 52px);
            font-weight: 300;
            line-height: 1;
            color: var(--light-grey);
            transition: color 0.35s ease;
        }

        .agenda-row:hover .agenda-date-day {
            color: var(--white);
        }

        .agenda-date-full {
            font-family: var(--font-ui);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1.5px;
            color: var(--light-grey);
            text-transform: uppercase;
            transition: color 0.35s ease;
        }

        .agenda-row:hover .agenda-date-full {
            color: var(--light-grey);
        }

        /* Middle info col */
        .agenda-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .agenda-venue {
            font-family: var(--font-body);
            font-size: clamp(17px, 1.8vw, 22px);
            font-weight: 700;
            color: var(--light-grey);
            transition: color 0.35s ease;
            letter-spacing: -0.3px;
        }

        .agenda-row:hover .agenda-venue {
            color: var(--primary);
        }

        .agenda-address {
            font-family: var(--font-ui);
            font-size: 12px;
            color: var(--light-grey);
            opacity: 0.65;
            transition: opacity 0.35s ease;
        }

        .agenda-row:hover .agenda-address {
            opacity: 1;
        }

        .agenda-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-top: 4px;
        }

        .agenda-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 3px 10px;
            border-radius: 100px;
            border: 1px solid var(--border-mid);
            font-size: 10px;
            font-weight: 700;
            font-family: var(--font-ui);
            letter-spacing: 1.2px;
            text-transform: uppercase;
            color: var(--light-grey);
            transition: border-color 0.35s, color 0.35s;
        }

        .agenda-row:hover .agenda-badge {
            border-color: rgba(var(--primary-rgb), 0.4);
            color: var(--accent);
        }

        .agenda-badge.private {
            border-color: rgba(var(--accent-rgb), 0.25);
            color: var(--accent);
            opacity: 0.7;
        }

        /* Location column */
        .agenda-location {
            display: flex;
            align-items: center;
            gap: 6px;
            font-family: var(--font-ui);
            font-size: 13px;
            color: var(--light-grey);
            transition: color 0.35s;
        }

        .agenda-row:hover .agenda-location {
            color: var(--white);
        }

        .agenda-location svg {
            flex-shrink: 0;
            color: var(--primary);
        }

        /* Ticket / CTA column */
        .agenda-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            font-family: var(--font-ui);
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid var(--border-mid);
            color: var(--light-grey);
            border-radius: 4px;
            white-space: nowrap;
            transition: all 0.35s ease;
            background: transparent;
            position: relative;
            overflow: hidden;
        }

        .agenda-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background: var(--primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 0;
        }

        .agenda-cta span {
            position: relative;
            z-index: 1;
        }

        .agenda-row:hover .agenda-cta {
            border-color: var(--primary);
            color: var(--black);
        }

        .agenda-row:hover .agenda-cta::before {
            transform: scaleX(1);
        }

        /* Flyer lightbox */
        .flyer-overlay {
            position: fixed;
            inset: 0;
            z-index: 9000;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(12, 10, 8, 0.92);
            backdrop-filter: blur(12px);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .flyer-overlay.active {
            opacity: 1;
            pointer-events: all;
        }

        .flyer-container {
            position: relative;
            max-width: min(480px, 94vw);
            width: 100%;
            transform: translateY(40px) scale(0.96);
            transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .flyer-overlay.active .flyer-container {
            transform: translateY(0) scale(1);
        }

        .flyer-img {
            width: 100%;
            height: auto;
            display: block;
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
        }

        .flyer-close {
            position: absolute;
            top: -18px;
            right: -18px;
            width: 40px;
            height: 40px;
            background: var(--surface-2);
            border: 1px solid var(--border-mid);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light-grey);
            cursor: pointer;
            transition: color 0.3s, background 0.3s;
        }

        .flyer-close:hover {
            color: var(--white);
            background: var(--surface-3);
        }

        .flyer-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 16px;
            padding: 0 4px;
        }

        .flyer-meta-venue {
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 700;
            color: var(--white);
        }

        .flyer-meta-date {
            font-family: var(--font-ui);
            font-size: 12px;
            color: var(--light-grey);
        }

        /* Show / hide tick for flyer button */
        .agenda-cta-icon {
            font-size: 14px;
            line-height: 1;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .agenda-row {
                grid-template-columns: 80px 1fr;
                grid-template-rows: auto auto;
            }

            .agenda-location {
                grid-column: 2;
            }

            .agenda-cta {
                grid-column: 1 / -1;
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .agenda-row {
                grid-template-columns: 1fr;
                padding-left: 20px;
            }

            .agenda-date {
                flex-direction: row;
                align-items: baseline;
                gap: 10px;
            }

            .agenda-date-day {
                font-size: 28px;
            }

            .agenda-header-right {
                text-align: left;
            }
        }
