:root {
    --bg: #07070A;
    --bg2: #0B0D12;
    --panel: rgba(255, 255, 255, .06);
    --line: rgba(255, 255, 255, .10);
    --text: #F2F2F4;
    --muted: #A1A1AA;
    --accent: #FF2B2B;
    --accent2: #00FFC6;
    --shadow: 0 20px 80px rgba(0, 0, 0, .55);
    --r: 18px;
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(900px 600px at 12% -10%, rgba(255, 43, 43, .22), transparent 60%),
        radial-gradient(900px 600px at 95% 20%, rgba(0, 255, 198, .10), transparent 60%),
        radial-gradient(900px 600px at 50% 120%, rgba(124, 58, 237, .10), transparent 60%),
        var(--bg);
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.45;
}

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

a:hover {
    opacity: .92;
}

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

/* Top bar */
.top {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(7, 7, 10, .62);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.top-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 0;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: .3px;
    font-size: 18px;
}

.mark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    box-shadow: 0 0 26px rgba(255, 43, 43, .35);
}

.menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.menu a {
    color: var(--muted);
    font-size: 14px;
}

.menu a:hover {
    color: var(--text);
}

.lang {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px;
    background: rgba(13, 15, 20, .55);
}

.lang button {
    appearance: none;
    border: 0;
    cursor: pointer;
    background: transparent;
    color: var(--muted);
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
}

.lang button[aria-pressed="true"] {
    color: var(--text);
    background: linear-gradient(135deg, rgba(255, 43, 43, .20), rgba(0, 255, 198, .10));
    border: 1px solid rgba(255, 43, 43, .35);
}

/* Hero */
.hero {
    padding: 22px 0 18px;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--r) + 6px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #0B0D12;
    min-height: 540px;
}

.hero-media {
    position: absolute;
    inset: 0;
    background: #000;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 20%;
    filter: contrast(1.05) brightness(.92);
    transform: scale(1.02);
    display: block;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .35) 55%, rgba(0, 0, 0, .55)),
        radial-gradient(900px 600px at 15% 30%, rgba(255, 43, 43, .22), transparent 60%),
        radial-gradient(800px 600px at 80% 30%, rgba(0, 255, 198, .10), transparent 60%);
}

.hero-inner {
    position: relative;
    padding: 32px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    align-items: end;
    min-height: 540px;
}

.kicker {
    color: rgba(242, 242, 244, .80);
    font-size: 13px;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h1 {
    margin: 0 0 10px;
    font-size: clamp(34px, 5vw, 62px);
    letter-spacing: -.02em;
    line-height: 1.0;
}

.title-accent {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 43, 43, .35);
    background: rgba(13, 15, 20, .45);
    color: rgba(242, 242, 244, .92);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-top: 12px;
}

.lead {
    margin: 0 0 18px;
    color: rgba(242, 242, 244, .86);
    font-size: clamp(16px, 2vw, 18px);
    max-width: 62ch;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 18px;
}

.pill {
    font-size: 12px;
    color: rgba(242, 242, 244, .86);
    border: 1px solid var(--line);
    background: rgba(13, 15, 20, .55);
    padding: 8px 10px;
    border-radius: 999px;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(13, 15, 20, .62);
    color: var(--text);
    font-weight: 800;
    font-size: 14px;
}

.btn.primary {
    border-color: rgba(255, 43, 43, .48);
    background: linear-gradient(135deg, rgba(255, 43, 43, .24), rgba(0, 255, 198, .10));
}

.btn .muted {
    color: var(--muted);
    font-weight: 700;
}

.hero-side {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.badge {
    width: min(420px, 100%);
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: rgba(13, 15, 20, .58);
    padding: 14px;
}

.badge h3 {
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.badge p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.meta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .05);
    color: rgba(242, 242, 244, .9);
    font-weight: 800;
    font-size: 13px;
}

/* Sections */
section {
    padding: 48px 0;
}

.head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.head.center {
    justify-content: center;
    text-align: center;
}

h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: -.01em;
}

.sub {
    color: var(--muted);
    font-size: 14px;
    max-width: 75ch;
}

.card {
    border-radius: var(--r);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .03));
    box-shadow: 0 16px 70px rgba(0, 0, 0, .35);
}

/* About */
.about {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 14px;
    align-items: stretch;
}

.about .text {
    padding: 18px;
}

.quote {
    margin: 0 0 12px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.3;
}

.about p {
    margin: 0;
    color: rgba(242, 242, 244, .9);
    font-size: 17px;
    line-height: 1.6;
}

.about p+p {
    margin-top: 16px;
}

.about .photo {
    overflow: hidden;
    position: relative;
}

.about .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.02) brightness(.96);
}

.about .photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 500px at 55% 30%, transparent, rgba(0, 0, 0, .62));
    pointer-events: none;
}

/* Music embeds */
.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.embed {
    padding: 14px;
}

iframe {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: #000;
}

/* Shows */
.shows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.shows .list {
    padding: 14px;
}

.show {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(13, 15, 20, .52);
    margin-bottom: 10px;
}

.date {
    min-width: 74px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    padding: 10px;
    text-align: center;
    line-height: 1.05;
}

.date b {
    display: block;
    font-size: 16px;
}

.date span {
    color: var(--muted);
    font-size: 12px;
}

.show h3 {
    margin: 0 0 4px;
    font-size: 15px;
}

.show p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.shot {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #10121A;
    position: relative;
    aspect-ratio: 4 / 5;
}

.shot.video {
    grid-column: 2 / span 2;
    aspect-ratio: auto;
}

.shot img,
.shot video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shot::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .45));
    opacity: 0;
    transition: opacity .18s ease;
}

.shot:hover::after {
    opacity: 1;
}

/* Contact */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: start;
}

.contact .box {
    padding: 18px;
}

form {
    display: grid;
    gap: 10px;
}

input,
textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(13, 15, 20, .55);
    color: var(--text);
    outline: none;
    font-size: 14px;
}

input:focus,
textarea:focus {
    border-color: rgba(0, 255, 198, .45);
    box-shadow: 0 0 0 4px rgba(0, 255, 198, .10);
}

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

.fine {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
}

footer {
    padding: 26px 0 44px;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .12);
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
    .top-inner {
        display: flex;
        justify-content: space-between;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: auto;
        padding: 22px;
    }

    .hero-card {
        min-height: auto;
    }

    .hero-side {
        justify-items: start;
    }

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

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

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

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

    .shot.big {
        grid-column: span 12;
    }

    .shot.mid {
        grid-column: span 12;
    }

    .shot.tall {
        grid-column: span 6;
    }

    .shot.wide {
        grid-column: span 12;
    }
}

@media (max-width: 520px) {
    .wrap {
        width: min(var(--max), calc(100% - 28px));
    }

    .menu {
        display: none;
    }

    .shot.tall {
        grid-column: span 12;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .shot::after {
        transition: none;
    }
}