﻿/* Web layout */
:root {
            --ink: #090909;
            --night: #101010;
            --paper: #f7efe2;
            --muted: #b8aa96;
            --gold: #f8bd3b;
            --ember: #f15a24;
            --wine: #7b1d2a;
            --green: #0d6b46;
            --line: rgba(255, 255, 255, .16);
            --shadow: 0 26px 70px rgba(0, 0, 0, .32);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--paper);
            background:
                radial-gradient(circle at 15% 12%, rgba(241, 90, 36, .28), transparent 28rem),
                radial-gradient(circle at 85% 0%, rgba(248, 189, 59, .16), transparent 24rem),
                linear-gradient(135deg, #090909 0%, #18100f 42%, #060606 100%);
            font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            overflow-x: hidden;
        }

        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: -2;
            pointer-events: none;
            opacity: .24;
            background-image:
                linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
            background-size: 54px 54px;
            mask-image: linear-gradient(to bottom, #000, transparent 80%);
        }

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

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

        .site-shell {
            min-height: 100vh;
        }

        .container {
            width: min(1180px, calc(100% - 36px));
            margin-inline: auto;
        }

        .nav {
            position: sticky;
            top: 0;
            z-index: 20;
            padding: 15px 0;
            transition: background .35s ease, border-color .35s ease, padding .35s ease;
        }

        .nav.is-scrolled {
            padding: 18px 0;
            background: rgba(12, 12, 12, 0.92);
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            backdrop-filter: blur(12px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
        }

        .nav__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0px;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .brand__mark {
            display: grid;
            width: 42px;
            height: 42px;
            place-items: center;
            border-radius: 50%;
            color: #120b07;
            background: linear-gradient(135deg, var(--gold), var(--ember));
            box-shadow: 0 0 32px rgba(248, 189, 59, .42);
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: 22px;
            color: rgba(247, 239, 226, .76);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .nav__links a {
            transition: color .2s ease;
        }

        .nav__links a:hover {
            color: var(--gold);
        }

        .nav__toggle {
            display: none;
            width: 48px;
            height: 48px;
            place-items: center;
            border: 1px solid rgba(255, 255, 255, .24);
            border-radius: 50%;
            color: var(--paper);
            background: rgba(255, 255, 255, .08);
            cursor: pointer;
        }

        .nav__toggle span,
        .nav__toggle::before,
        .nav__toggle::after {
            content: "";
            display: block;
            width: 18px;
            height: 2px;
            border-radius: 99px;
            background: currentColor;
            transition: transform .24s ease, opacity .24s ease;
        }

        .nav__toggle::before { transform: translateY(-6px); }
        .nav__toggle::after { transform: translateY(6px); }

        .nav.is-open .nav__toggle span { opacity: 0; }
        .nav.is-open .nav__toggle::before { transform: translateY(2px) rotate(45deg); }
        .nav.is-open .nav__toggle::after { transform: translateY(-2px) rotate(-45deg); }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            min-height: 48px;
            padding: 0 22px;
            border: 1px solid rgba(248, 189, 59, .5);
            border-radius: 999px;
            color: #130d08;
            background: linear-gradient(135deg, var(--gold), #ff7a2f);
            box-shadow: 0 18px 45px rgba(241, 90, 36, .28);
            font-weight: 900;
            letter-spacing: .06em;
            text-transform: uppercase;
            transition: transform .2s ease, box-shadow .2s ease;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 22px 55px rgba(241, 90, 36, .42);
        }

        .btn--ghost {
            color: var(--paper);
            background: rgba(255, 255, 255, .07);
            border-color: rgba(255, 255, 255, .24);
            box-shadow: none;
        }

        .section {
            padding: 96px 0;
            position: relative;
        }

        .section--paper {
            color: #1d1511;
            background: var(--paper);
        }

        .eyebrow {
            display: inline-flex;
            gap: 8px;
            align-items: center;
            color: var(--gold);
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

        .eyebrow::before {
            content: "";
            width: 36px;
            height: 2px;
            background: currentColor;
        }

        .section-title {
            margin: 12px 0 16px;
            font-size: clamp(34px, 5vw, 72px);
            line-height: .92;
            letter-spacing: .01em;
            text-transform: uppercase;
        }

        .lead {
            max-width: 680px;
            color: rgba(247, 239, 226, .75);
            font-size: clamp(17px, 2vw, 21px);
            line-height: 1.6;
        }

        .section--paper .lead {
            color: rgba(29, 21, 17, .68);
        }

        .reveal {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .reveal.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .footer {
            border-top: 1px solid var(--line);
            padding: 42px 0;
            color: rgba(247, 239, 226, .7);
            background: #070707;
        }

        .footer__inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        @media (max-width: 840px) {
            .brand { font-size: 14px; }

            .nav__links {
                position: absolute;
                top: calc(100% + 10px);
                left: 18px;
                right: 18px;
                display: grid;
                gap: 0;
                overflow: hidden;
                max-height: 0;
                padding: 0 18px;
                border: 1px solid transparent;
                border-radius: 8px;
                color: var(--paper);
                background: rgba(8, 8, 8, .92);
                box-shadow: var(--shadow);
                backdrop-filter: blur(18px);
                transition: max-height .28s ease, padding .28s ease, border-color .28s ease;
            }

            .nav.is-open .nav__links {
                max-height: 430px;
                padding: 10px 18px;
                border-color: var(--line);
            }

            .nav__links a {
                padding: 16px 4px;
                border-bottom: 1px solid rgba(255, 255, 255, .1);
            }

            .nav__links a:last-child {
                border-bottom: 0;
            }

            .nav__toggle {
                display: grid;
            }

            .section {
                padding: 72px 0;
            }
        }

        @media (max-width: 520px) {
            .nav__inner { gap: 10px; }
            .brand { gap: 9px; }
            .brand__mark {
                width: 40px;
                height: 40px;
            }
            .nav .btn {
                min-height: 44px;
                padding-inline: 16px;
                font-size: 12px;
            }
        }

/* Home page */
.hero {
            position: relative;
            min-height: 100vh;
            display: grid;
            align-items: center;
            overflow: hidden;
            padding: 118px 0 64px;
            isolation: isolate;
        }

        .hero__image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero__image {
            z-index: -5;
            background:
                linear-gradient(90deg, rgba(8, 8, 8, .88), rgba(8, 8, 8, .22) 54%, rgba(8, 8, 8, .78)),
                url('') center/cover;
            transform: scale(1.04);
            animation: heroZoom 18s ease-in-out infinite alternate;
        }

        .hero__video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -4;
            opacity: 0;
            filter: saturate(1.2) contrast(1.08) brightness(.78);
            transition: opacity .8s ease;
        }

        .hero__video.is-ready {
            opacity: .86;
        }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -2;
            background:
                linear-gradient(to top, #090909 0%, rgba(9, 9, 9, .58) 42%, rgba(9, 9, 9, .22) 100%),
                radial-gradient(circle at 70% 42%, rgba(248, 189, 59, .24), transparent 18rem);
        }

        .hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 160px;
            z-index: -1;
            background: linear-gradient(to top, #090909, transparent);
        }

        .hero__content {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 360px;
            align-items: end;
            gap: 52px;
        }

        .hero h1 {
            margin: 16px 0;
            max-width: 860px;
            font-size: clamp(58px, 11vw, 154px);
            line-height: .78;
            letter-spacing: .015em;
            text-transform: uppercase;
            text-shadow: 0 16px 45px rgba(0, 0, 0, .62);
        }

        .hero h1 span {
            display: block;
            color: transparent;
            -webkit-text-stroke: 1px rgba(247, 239, 226, .78);
            text-shadow: none;
        }

        .hero__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 30px;
        }

        .hero__stats {
            display: grid;
            gap: 12px;
        }

        .stat {
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, .18);
            border-radius: 8px;
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(16px);
        }

        .stat strong {
            display: block;
            color: var(--gold);
            font-size: 34px;
            line-height: 1;
        }

        .stat span {
            color: rgba(247, 239, 226, .72);
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .marquee {
            overflow: hidden;
            border-block: 1px solid var(--line);
            background: rgba(248, 189, 59, .08);
        }

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

        .marquee__track span {
            padding: 18px 24px;
            color: var(--gold);
            font-weight: 900;
            letter-spacing: .14em;
            text-transform: uppercase;
            white-space: nowrap;
        }

        .music-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 42px;
            align-items: center;
        }

        .album {
            position: relative;
            min-height: 520px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: var(--shadow);
            background: #17100d;
        }

        .album img {
            width: 100%;
            height: 100%;
            min-height: 520px;
            object-fit: cover;
            filter: saturate(1.08) contrast(1.08);
        }

        .album__badge {
            position: absolute;
            left: 24px;
            bottom: 24px;
            padding: 16px 18px;
            border-radius: 8px;
            color: #160d09;
            background: var(--gold);
            font-weight: 900;
            text-transform: uppercase;
            box-shadow: 0 18px 46px rgba(0, 0, 0, .36);
        }

        .track-list {
            display: grid;
            gap: 14px;
            margin-top: 28px;
        }

        .track {
            display: grid;
            grid-template-columns: 48px 1fr auto;
            align-items: center;
            gap: 16px;
            padding: 16px;
            border: 1px solid rgba(29, 21, 17, .13);
            border-radius: 8px;
            background: rgba(255, 255, 255, .52);
            transition: transform .2s ease, border-color .2s ease;
        }

        .track:hover {
            transform: translateX(6px);
            border-color: rgba(241, 90, 36, .36);
        }

        .track__play {
            display: grid;
            width: 48px;
            height: 48px;
            place-items: center;
            border-radius: 50%;
            color: #fff;
            background: linear-gradient(135deg, var(--wine), var(--ember));
        }

        .track small {
            color: rgba(29, 21, 17, .55);
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .tour {
            display: grid;
            gap: 14px;
            margin-top: 34px;
        }

        .tour__item {
            display: grid;
            grid-template-columns: 92px 1fr auto;
            align-items: center;
            gap: 20px;
            padding: 18px;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(255, 255, 255, .055);
        }

        .tour__date {
            display: grid;
            place-items: center;
            min-height: 74px;
            border-radius: 8px;
            color: #130d08;
            background: var(--gold);
            font-weight: 900;
        }

        .tour__date strong {
            font-size: 30px;
            line-height: 1;
        }

        .tour__date span {
            font-size: 12px;
            letter-spacing: .12em;
        }

        .tour__item p {
            margin: 5px 0 0;
            color: rgba(247, 239, 226, .62);
        }

        .carousel {
            position: relative;
            min-height: 630px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: var(--shadow);
            background: #0d0d0d;
        }

        .carousel__slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity .85s ease, transform 6s ease;
            transform: scale(1.05);
        }

        .carousel__slide.is-active {
            opacity: 1;
            transform: scale(1);
        }

        .carousel__slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel__caption {
            position: absolute;
            inset: auto 28px 28px;
            max-width: 460px;
            padding: 22px;
            border: 1px solid rgba(255, 255, 255, .2);
            border-radius: 8px;
            background: rgba(10, 10, 10, .66);
            backdrop-filter: blur(15px);
        }

        .carousel__dots {
            position: absolute;
            top: 24px;
            right: 24px;
            display: flex;
            gap: 10px;
        }

        .carousel__dot {
            width: 34px;
            height: 4px;
            border: 0;
            background: rgba(255, 255, 255, .34);
            cursor: pointer;
        }

        .carousel__dot.is-active {
            background: var(--gold);
        }

        .video-band {
            position: relative;
            overflow: hidden;
            padding: 120px 0;
            background: #090909;
            isolation: isolate;
        }

        .video-band::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -3;
            background:
                linear-gradient(90deg, rgba(9, 9, 9, .84), rgba(9, 9, 9, .44), rgba(9, 9, 9, .86)),
                url('https://images.unsplash.com/photo-1516280440614-37939bbacd81?auto=format&fit=crop&w=2200&q=85') center/cover fixed;
        }

        .video-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 26px;
            margin-top: 36px;
        }

        .video-card {
            overflow: hidden;
            border: 1px solid var(--line);
            border-radius: 8px;
            background: rgba(255, 255, 255, .08);
            box-shadow: var(--shadow);
        }

        .video-card iframe {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 9;
            border: 0;
        }

        .video-card__body {
            padding: 18px;
        }

        .video-card__body p {
            color: rgba(247, 239, 226, .62);
        }

        .gallery {
            display: grid;
            grid-template-columns: 1.1fr .9fr 1fr;
            grid-auto-rows: 260px;
            gap: 16px;
            margin-top: 34px;
        }

        .gallery img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
            filter: saturate(1.08);
            transition: transform .35s ease, filter .35s ease;
        }

        .gallery img:hover {
            transform: scale(1.025);
            filter: saturate(1.2) brightness(1.05);
        }

        .gallery .wide {
            grid-column: span 2;
        }

        .gallery .tall {
            grid-row: span 2;
        }

        .social-stream {
            color: #20313d;
            background:
                radial-gradient(circle at 50% 0%, rgba(248, 189, 59, .18), transparent 22rem),
                linear-gradient(180deg, #ffffff 0%, #f7efe2 100%);
        }

        .social-stream__header {
            max-width: 720px;
            margin: 0 auto 52px;
            text-align: center;
        }

        .social-stream__kicker {
            color: #b80f18;
            font-size: 12px;
            font-weight: 900;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .social-stream__title {
            margin: 12px 0 22px;
            color: #1f3340;
            font-size: clamp(38px, 5vw, 66px);
            line-height: 1;
            letter-spacing: .01em;
            text-transform: none;
        }

        .social-stream__title span {
            display: inline-grid;
            min-width: 72px;
            min-height: 72px;
            place-items: center;
            border-radius: 8px;
            color: #d30f1f;
            background: #ffe0df;
        }

        .social-stream__intro {
            margin: 0 auto;
            max-width: 620px;
            color: rgba(31, 51, 64, .62);
            line-height: 1.6;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 28px;
            max-width: 980px;
            margin: 0 auto;
        }

        .social-card {
            position: relative;
            min-height: 392px;
            overflow: hidden;
            border-radius: 8px;
            color: #fff;
            background: #141414;
            box-shadow: 0 24px 60px rgba(31, 51, 64, .18);
            isolation: isolate;
        }

        .social-card::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, .08) 58%);
        }

        .social-card img {
            position: absolute;
            inset: 0;
            z-index: -2;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .55s ease, filter .55s ease;
        }

        .social-card:hover img {
            transform: scale(1.07);
            filter: saturate(1.18) brightness(1.05);
        }

        .social-card__brand {
            position: absolute;
            inset: 28px 28px auto;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: clamp(26px, 3vw, 40px);
            font-weight: 900;
            text-shadow: 0 10px 30px rgba(0, 0, 0, .38);
        }

        .social-card__brand i {
            font-size: .92em;
        }

        .social-card--instagram .social-card__brand {
            color: #fff;
        }

        .social-card--youtube .social-card__brand {
            color: #fff;
        }

        .social-card--tiktok .social-card__brand {
            color: #fff;
        }

        .social-card--facebook .social-card__brand {
            color: #4d8cff;
        }

        .social-card__cta {
            position: absolute;
            inset: auto 28px 28px;
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 950;
            line-height: 1.05;
            text-shadow: 0 12px 34px rgba(0, 0, 0, .58);
        }

        .social-card__cta small {
            display: block;
            margin-top: 8px;
            color: rgba(255, 255, 255, .82);
            font-size: 14px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .social-card--youtube .social-card__cta {
            left: auto;
            width: min(330px, calc(100% - 56px));
            padding: 18px;
            border-radius: 8px;
            background: rgba(0, 0, 0, .5);
            backdrop-filter: blur(12px);
        }

        .booking {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 44px;
            align-items: center;
        }

        .booking__panel {
            padding: 28px;
            border: 1px solid rgba(29, 21, 17, .14);
            border-radius: 8px;
            background: rgba(255, 255, 255, .58);
        }

        .contact-list {
            display: grid;
            gap: 14px;
            margin: 24px 0;
        }

        .contact-list a {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px;
            border-radius: 8px;
            background: rgba(29, 21, 17, .06);
            font-weight: 800;
        }

        .contact-list i {
            color: var(--ember);
        }

        @keyframes heroZoom {
            from {
                transform: scale(1.04);
            }

            to {
                transform: scale(1.12);
            }
        }

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

        @media (max-width: 940px) {

            .hero__content,
            .music-grid,
            .video-grid,
            .booking {
                grid-template-columns: 1fr;
            }

            .hero__stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .carousel {
                min-height: 520px;
            }

            .gallery {
                grid-template-columns: 1fr 1fr;
            }

            .social-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero {
                min-height: 92vh;
                padding-top: 118px;
            }

            .hero__stats,
            .tour__item {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: clamp(54px, 17vw, 82px);
            }

            .gallery {
                grid-template-columns: 1fr;
                grid-auto-rows: 230px;
            }

            .gallery .wide,
            .gallery .tall {
                grid-column: auto;
                grid-row: auto;
            }

            .social-card {
                min-height: 320px;
            }

            .social-stream__title span {
                min-width: 58px;
                min-height: 58px;
            }
        }

