:root {
    --black: #050505;
    --black-2: #0b0b0b;
    --black-3: #111111;
    --panel: rgba(255, 255, 255, 0.065);
    --panel-strong: rgba(255, 255, 255, 0.095);
    --red: #b80f24;
    --red-bright: #ed1839;
    --red-deep: #5d0712;
    --white: #ffffff;
    --muted: rgba(255, 255, 255, 0.68);
    --soft: rgba(255, 255, 255, 0.46);
    --line: rgba(255, 255, 255, 0.12);
    --shadow-red: 0 24px 90px rgba(184, 15, 36, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    background:
        radial-gradient(circle at top left, rgba(184, 15, 36, 0.18), transparent 34rem),
        var(--black);
    color: var(--white);
    letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.btn,
footer {
    font-family: "Poppins", system-ui, sans-serif;
}

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

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

.fw-black {
    font-weight: 900;
}

.site-nav {
    padding: 1.15rem 0;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.18), transparent);
    transition: background 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
}

.site-nav.scrolled,
.site-nav:has(.navbar-collapse.show) {
    padding: 0.7rem 0;
    background: rgba(5, 5, 5, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.site-nav .container {
    display: flex;
    align-items: center;
}

.navbar-collapse {
    flex-grow: 1;
}

.artist-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--white);
    font-size: 1.14rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
    padding-bottom: 0.45rem;
}

.artist-logo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 92px;
    height: 2px;
    background: linear-gradient(90deg, var(--red-bright), transparent);
}

.artist-logo span {
    color: var(--red-bright);
}

.navbar-brand:hover {
    color: var(--white);
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.btn-nav {
    padding: 0.75rem 1.35rem;
    font-size: 0.78rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.2rem;
    height: 2px;
    background: var(--red-bright);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 92svh;
    padding: 8.5rem 0 5rem;
    border-bottom: 1px solid var(--line);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -5;
    background-image: url("../images/artist-club.jpg");
    background-size: cover;
    background-position: 78% center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    animation: heroCinematicZoom 26s ease-in-out infinite alternate;
}

.hero-pulse {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 77% 42%, rgba(237, 24, 57, 0.28), transparent 22rem),
        radial-gradient(circle at 88% 68%, rgba(184, 15, 36, 0.2), transparent 18rem),
        radial-gradient(circle at 18% 36%, rgba(237, 24, 57, 0.12), transparent 20rem),
        radial-gradient(circle, rgba(255, 255, 255, 0.07) 0 1px, transparent 1.6px) 0 0 / 72px 72px,
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 88px);
    opacity: 0.58;
    animation: pulseSweep 7s ease-in-out infinite alternate;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.78) 34%, rgba(5, 5, 5, 0.26) 62%, rgba(5, 5, 5, 0.12) 100%),
        radial-gradient(ellipse at center, transparent 42%, rgba(5, 5, 5, 0.16) 72%, rgba(5, 5, 5, 0.46) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.42) 0%, transparent 30%, transparent 72%, rgba(5, 5, 5, 0.68) 100%);
    pointer-events: none;
}

.hero-title {
    max-width: 760px;
    font-size: clamp(3.25rem, 5vw, 4rem);
    line-height: 0.86;
    letter-spacing: 0;
    text-shadow: 0 18px 70px rgba(0, 0, 0, 0.68);
}

.hero-title span {
    color: var(--red-bright);
}

.hero-subtitle {
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(1.22rem, 2vw, 1.7rem);
    margin: 1.2rem 0 0;
}

.hero-copy {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0.6rem 0 0;
}

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

.btn {
    border-radius: 4px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.045em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-red {
    background: linear-gradient(135deg, var(--red), var(--red-bright));
    border-color: var(--red);
    color: var(--white);
    box-shadow: 0 14px 36px rgba(184, 15, 36, 0.32);
}

.btn-red:hover {
    background: linear-gradient(135deg, var(--red-bright), #ff3853);
    border-color: var(--red-bright);
    color: var(--white);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(12px);
}

.eyebrow {
    color: var(--red-bright);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-row a {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.social-row a:hover {
    transform: translateY(-4px) scale(1.04);
    background: var(--red);
    border-color: var(--red-bright);
    box-shadow: 0 14px 38px rgba(237, 24, 57, 0.24);
}

.hero-social {
    margin-top: 1.8rem;
}

.split-image {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow-red);
    background: var(--black-2);
}

.split-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.78));
}

.split-image img,
.release-art img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-caption {
    position: absolute;
    z-index: 2;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(5, 5, 5, 0.68);
    backdrop-filter: blur(14px);
}

.hero-card-caption span {
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-card-caption strong {
    color: var(--white);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 720px;
    gap: 1px;
    margin-top: 3.25rem;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.hero-metrics div {
    padding: 1rem;
    background: rgba(5, 5, 5, 0.62);
    backdrop-filter: blur(14px);
}

.hero-metrics strong {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.4rem);
    font-weight: 900;
    line-height: 1;
}

.hero-metrics span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
}

.scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    width: 28px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    transform: translateX(-50%);
}

.scroll-cue span {
    display: block;
    width: 4px;
    height: 8px;
    margin: 8px auto 0;
    border-radius: 999px;
    background: var(--white);
    animation: scrollCue 1.5s infinite;
}

.section-pad {
    padding: clamp(4.5rem, 8vw, 7.2rem) 0;
}

.section-band {
    position: relative;
    isolation: isolate;
    border-top: 1px solid var(--line);
}

.section-band::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 80% 12%, rgba(184, 15, 36, 0.16), transparent 24rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 28%);
}

.band-raised {
    background: var(--black-2);
}

.band-deep {
    background:
        linear-gradient(135deg, rgba(93, 7, 18, 0.58), rgba(5, 5, 5, 0.96) 44%),
        var(--black);
}

.band-booking,
.band-contact {
    background:
        linear-gradient(135deg, rgba(184, 15, 36, 0.22), rgba(17, 17, 17, 0.94)),
        url("../images/artist-booth.jpg") center / cover no-repeat;
}

.band-booking::after,
.band-contact::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(5, 5, 5, 0.78);
}

.contact-booking {
    position: relative;
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.9) 48%, rgba(5, 5, 5, 0.76) 100%),
        radial-gradient(circle at 80% 30%, rgba(237, 24, 57, 0.18), transparent 22rem),
        url("../images/artist-booth.jpg") right center / cover no-repeat;
}

.contact-info-panel {
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 5, 0.64);
    backdrop-filter: blur(16px);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
}

.contact-info-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
}

.contact-info-list a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.contact-info-list i {
    display: inline-grid;
    min-width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(237, 24, 57, 0.14);
    color: var(--red-bright);
}

.contact-socials {
    padding-top: 1.2rem;
    border-top: 1px solid var(--line);
}

.section-title {
    font-size: clamp(2rem, 3.4vw, 2.625rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
}

.page-title {
    font-size: clamp(2.5rem, 4.6vw, 3.25rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.small-title {
    font-size: clamp(2rem, 3.2vw, 2.625rem);
}

.section-copy {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.8;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 8.5rem 0 4rem;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.74), var(--black)),
        linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.55)),
        url("../images/artist-booth.jpg") center / cover no-repeat;
}

.about-strip {
    position: relative;
    min-height: 520px;
    padding: clamp(5rem, 8vw, 7rem) 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 20%, rgba(237, 24, 57, 0.18), transparent 24rem),
        radial-gradient(circle at 12% 76%, rgba(184, 15, 36, 0.18), transparent 20rem),
        linear-gradient(135deg, #050505 0%, #0b0b0b 42%, #14070a 100%);
}

.about-strip::after {
    content: "";
    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 50%;
    width: 1px;
    background: var(--red-bright);
    transform: rotate(18deg);
    box-shadow: 0 0 34px rgba(237, 24, 57, 0.7);
}

.about-strip .row {
    justify-content: space-between;
}

.about-strip .section-copy {
    margin-top: 1.3rem;
}

.artist-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.7rem;
}

.artist-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    font-weight: 700;
}

.artist-highlights i {
    color: var(--red-bright);
}

.about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.sound-panel {
    position: relative;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at 100% 0%, rgba(237, 24, 57, 0.2), transparent 16rem);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(16px);
}

.sound-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.09) 0 1px, transparent 1.6px) 0 0 / 34px 34px;
    opacity: 0.18;
    pointer-events: none;
}

.sound-panel-label {
    color: var(--red-bright);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.sound-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 72px;
    margin: 1.6rem 0;
}

.sound-bars span {
    width: 100%;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(180deg, var(--red-bright), rgba(237, 24, 57, 0.16));
    box-shadow: 0 0 28px rgba(237, 24, 57, 0.24);
}

.sound-bars span:nth-child(1) { height: 42%; }
.sound-bars span:nth-child(2) { height: 78%; }
.sound-bars span:nth-child(3) { height: 55%; }
.sound-bars span:nth-child(4) { height: 92%; }
.sound-bars span:nth-child(5) { height: 62%; }

.sound-panel ul {
    position: relative;
    display: grid;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.sound-panel li {
    display: grid;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sound-panel strong {
    color: var(--white);
    font-size: 1rem;
}

.sound-panel span {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.about-cinematic {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    padding: clamp(7.5rem, 10vw, 9rem) 0 clamp(4.5rem, 8vw, 7rem);
    background:
        radial-gradient(circle at 22% 46%, rgba(237, 24, 57, 0.18), transparent 22rem),
        linear-gradient(135deg, #050505 0%, #0b0b0b 52%, #15070a 100%);
}

.about-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("../images/artist-portrait-dark.jpg");
    background-size: auto 100%;
    background-position: left top;
    background-repeat: no-repeat;
    transform: scale(1.08);
    transform-origin: left center;
    animation: aboutCinematicZoom 26s ease-in-out infinite alternate;
}

.about-cinematic::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.52) 34%, rgba(5, 5, 5, 0.94) 64%, rgba(5, 5, 5, 0.98) 100%),
        linear-gradient(180deg, rgba(5, 5, 5, 0.82) 0%, transparent 24%, rgba(5, 5, 5, 0.94) 100%);
    pointer-events: none;
}

.about-cinematic .container {
    position: relative;
    z-index: 1;
}

.about-page-heading {
    margin-bottom: 1.75rem;
}

.about-card-stack {
    display: grid;
    gap: 1.2rem;
}

.about-glass-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        rgba(8, 8, 8, 0.7);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42), var(--shadow-red);
}

.about-glass-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 72px;
    height: 3px;
    background: var(--red-bright);
}

.card-kicker {
    color: var(--red-bright);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-card-title {
    margin-top: 0.65rem;
    font-size: clamp(1.7rem, 2.4vw, 2.25rem);
    line-height: 1.05;
}

.dj-info-list {
    display: grid;
    gap: 0.85rem;
    padding: 0;
    margin: 1rem 0 0;
    list-style: none;
}

.dj-info-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--muted);
    line-height: 1.7;
}

.dj-info-list li::before {
    content: "";
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red-bright);
    box-shadow: 0 0 18px rgba(237, 24, 57, 0.42);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
}

.feature-card,
.content-panel,
.release-panel,
.venue-card,
.rider-card,
.booking-form,
.contact-card {
    background: linear-gradient(145deg, var(--panel-strong), rgba(255, 255, 255, 0.028));
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
}

.feature-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    overflow: hidden;
}

.feature-card::before,
.venue-card::before,
.rider-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--red-bright);
}

.feature-card i {
    color: var(--red-bright);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.feature-card h3,
.venue-card h2,
.rider-card h2 {
    font-size: 1.28rem;
    font-weight: 900;
}

.feature-card p,
.venue-card p {
    color: var(--muted);
    margin: 0.8rem 0 0;
}

.image-panel {
    min-height: 540px;
    border-radius: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-red);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.62)),
        url("../images/artist-portrait-dark.jpg") center top / cover no-repeat;
}

.about-photo {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.62)),
        url("../images/artist-portrait-dark.jpg") center top / cover no-repeat;
}

.content-panel {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.profile-list {
    display: grid;
    gap: 1rem;
    margin: 0;
}

.profile-list div {
    display: grid;
    grid-template-columns: minmax(120px, 180px) 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.profile-list dt {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.profile-list dd {
    margin: 0;
    font-weight: 800;
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-grid span {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(237, 24, 57, 0.42);
    border-radius: 999px;
    background: rgba(184, 15, 36, 0.12);
    font-weight: 800;
}

.release-panel {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.4rem;
    min-height: 250px;
    padding: 1rem;
}

.music-hero {
    padding: 7.5rem 0 3.8rem;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.96)),
        linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.46)),
        url("../images/artist-club.jpg") center 42% / cover no-repeat;
}

.page-intro {
    max-width: 680px;
    margin-top: 1rem;
}

.music-catalogue {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    background:
        radial-gradient(circle at 84% 4%, rgba(237, 24, 57, 0.14), transparent 22rem),
        radial-gradient(circle at 10% 70%, rgba(184, 15, 36, 0.12), transparent 20rem),
        linear-gradient(135deg, #050505, #0b0b0b 52%, #111111);
}

.music-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.music-filter-row button {
    padding: 0.72rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.music-filter-row button:hover,
.music-filter-row button.active {
    background: rgba(237, 24, 57, 0.16);
    border-color: rgba(237, 24, 57, 0.5);
    color: var(--white);
    transform: translateY(-2px);
}

.latest-strip {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid rgba(237, 24, 57, 0.26);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(184, 15, 36, 0.38), rgba(5, 5, 5, 0.78)),
        radial-gradient(circle at 92% 22%, rgba(237, 24, 57, 0.24), transparent 18rem);
    box-shadow: var(--shadow-red);
}

.latest-strip h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
}

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

.latest-track-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 66px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
    font-weight: 800;
}

.latest-track-list i {
    display: inline-grid;
    min-width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--red-bright);
}

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

.music-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028)),
        rgba(5, 5, 5, 0.72);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.music-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 0%, rgba(237, 24, 57, 0.14), transparent 16rem);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.music-card:hover {
    transform: translateY(-7px);
    border-color: rgba(237, 24, 57, 0.42);
    box-shadow: var(--shadow-red);
}

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

.music-cover {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--black-3);
}

.music-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 5, 0.78));
}

.music-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.music-card:hover .music-cover img {
    transform: scale(1.07);
    filter: saturate(1.08) contrast(1.06);
}

.release-badge {
    position: absolute;
    z-index: 2;
    top: 1rem;
    right: 1rem;
    padding: 0.45rem 0.7rem;
    border-radius: 999px;
    background: var(--red-bright);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.music-card-body {
    position: relative;
    z-index: 1;
    padding: 1.35rem;
}

.music-category {
    margin-bottom: 0.5rem;
    color: var(--red-bright);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.music-card h2 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 900;
}

.music-card-body p:not(.music-category) {
    min-height: 78px;
    color: var(--muted);
    line-height: 1.65;
}

.music-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.music-meta span {
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(237, 24, 57, 0.34);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 800;
}

.music-meta a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--white);
    font-weight: 900;
}

.music-meta i {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
}

.events-hero {
    padding: 7.5rem 0 3.8rem;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.96)),
        linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.48)),
        url("../images/artist-booth.jpg") center 44% / cover no-repeat;
}

.events-page {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    background:
        radial-gradient(circle at 80% 4%, rgba(237, 24, 57, 0.14), transparent 22rem),
        radial-gradient(circle at 12% 70%, rgba(184, 15, 36, 0.13), transparent 20rem),
        linear-gradient(135deg, #050505, #0b0b0b 55%, #111111);
}

.events-feature {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
    padding: clamp(1.2rem, 3vw, 1.8rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
        radial-gradient(circle at 20% 20%, rgba(237, 24, 57, 0.14), transparent 18rem);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
}

.events-feature-copy {
    padding: clamp(1rem, 3vw, 1.6rem);
}

.events-feature-copy .btn {
    margin-top: 1rem;
}

.events-feature-media {
    min-height: 360px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.78)),
        radial-gradient(circle at 74% 26%, rgba(237, 24, 57, 0.22), transparent 18rem),
        url("../images/artist-club.jpg") center / cover no-repeat;
    box-shadow: var(--shadow-red);
}

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

.premium-venue-card {
    min-height: 280px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at 90% 0%, rgba(237, 24, 57, 0.12), transparent 12rem),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 16px);
}

.premium-venue-card .venue-number {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.35rem 0.6rem;
    border: 1px solid rgba(237, 24, 57, 0.34);
    border-radius: 999px;
    background: rgba(237, 24, 57, 0.1);
}

.performance-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.performance-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028)),
        rgba(5, 5, 5, 0.72);
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.performance-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 64px;
    height: 3px;
    background: var(--red-bright);
}

.performance-card:hover {
    transform: translateY(-7px);
    border-color: rgba(237, 24, 57, 0.42);
    box-shadow: var(--shadow-red);
}

.performance-card i {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 1.4rem;
    border-radius: 50%;
    background: rgba(237, 24, 57, 0.14);
    color: var(--red-bright);
    font-size: 1.25rem;
}

.performance-card h2 {
    font-size: 1.24rem;
    font-weight: 900;
}

.performance-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0.7rem 0 0;
}

.gallery-hero {
    padding: 7.5rem 0 3.8rem;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.96)),
        linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.46)),
        url("../images/dj-unsullied-hero.png") center / cover no-repeat;
}

.gallery-page {
    padding: clamp(4rem, 7vw, 6.5rem) 0;
    background:
        radial-gradient(circle at 88% 6%, rgba(237, 24, 57, 0.13), transparent 22rem),
        radial-gradient(circle at 10% 82%, rgba(184, 15, 36, 0.14), transparent 20rem),
        linear-gradient(135deg, #050505, #0b0b0b 54%, #111111);
}

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

.gallery-tile {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    height: 360px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--black-3);
    cursor: pointer;
    box-shadow: 0 18px 64px rgba(0, 0, 0, 0.24);
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.01);
    transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-tile.image-position-top img {
    object-position: center top;
    background: #090909;
}

.gallery-tile.image-position-center img {
    object-position: center;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 1.1rem;
    text-align: left;
    background: linear-gradient(180deg, transparent 36%, rgba(5, 5, 5, 0.9));
    transition: background 0.28s ease;
}

.gallery-badge {
    padding: 0.38rem 0.62rem;
    border: 1px solid rgba(237, 24, 57, 0.36);
    border-radius: 999px;
    background: rgba(237, 24, 57, 0.14);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-overlay strong {
    color: var(--white);
    font-size: 1.12rem;
    font-weight: 900;
    transform: translateY(8px);
    transition: transform 0.28s ease;
}

.gallery-tile:hover {
    transform: translateY(-7px);
    border-color: rgba(237, 24, 57, 0.48);
    box-shadow: var(--shadow-red);
}

.gallery-tile:hover img {
    transform: scale(1.045);
    filter: contrast(1.08) saturate(1.06);
}

.gallery-tile:hover .gallery-overlay {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.14), rgba(5, 5, 5, 0.92));
}

.gallery-tile:hover .gallery-overlay strong {
    transform: translateY(0);
}

.gallery-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(237, 24, 57, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(184, 15, 36, 0.38), rgba(5, 5, 5, 0.82)),
        radial-gradient(circle at 88% 20%, rgba(237, 24, 57, 0.24), transparent 18rem);
    box-shadow: var(--shadow-red);
}

.gallery-cta h2 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 900;
}

.gallery-cta p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(16px);
}

.gallery-lightbox.open {
    display: flex;
}

.gallery-lightbox figure {
    position: relative;
    width: min(980px, 88vw);
    max-height: 86vh;
    margin: 0;
}

.gallery-lightbox img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #050505;
    box-shadow: var(--shadow-red);
}

.gallery-lightbox figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
}

.gallery-lightbox figcaption span {
    color: var(--red-bright);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-lightbox figcaption strong {
    color: var(--white);
    font-size: 1.1rem;
}

.lightbox-close,
.lightbox-nav {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.release-art {
    min-height: 210px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--black-3);
}

.release-art img {
    filter: contrast(1.06) saturate(1.02);
}

.release-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-weight: 900;
}

.release-item a {
    display: inline-grid;
    min-width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--red);
    transition: transform 0.2s ease, background 0.2s ease;
}

.release-item a:hover {
    transform: scale(1.08);
    background: var(--red-bright);
}

.venue-card {
    position: relative;
    min-height: 260px;
    padding: 2rem;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.venue-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 24, 57, 0.42);
    box-shadow: var(--shadow-red);
}

.venue-card::after {
    content: "";
    position: absolute;
    inset: auto -20% -35% 25%;
    height: 160px;
    background: rgba(184, 15, 36, 0.18);
    transform: rotate(-10deg);
}

.venue-number {
    color: var(--red-bright);
    font-weight: 900;
}

.card-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.4rem;
    font-weight: 900;
    color: var(--white);
}

.rider-card {
    position: relative;
    height: 100%;
    padding: 2rem;
    overflow: hidden;
}

.rider-card ul {
    display: grid;
    gap: 0.85rem;
    padding-left: 0;
    margin: 1.2rem 0 0;
    list-style: none;
    color: var(--muted);
}

.rider-card li {
    position: relative;
    padding-left: 1.4rem;
}

.rider-card li::before {
    content: "";
    position: absolute;
    top: 0.68rem;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--red-bright);
    border-radius: 50%;
}

.split-image {
    aspect-ratio: 16 / 10;
}

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

.gallery-item {
    position: relative;
    min-height: 310px;
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--black-3);
    box-shadow: 0 18px 64px rgba(0, 0, 0, 0.22);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(5, 5, 5, 0.82));
}

.gallery-item img {
    min-height: 310px;
    filter: saturate(1.04) contrast(1.08);
    transition: transform 0.55s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item figcaption {
    position: absolute;
    z-index: 2;
    left: 1rem;
    bottom: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    background: rgba(5, 5, 5, 0.7);
    color: var(--white);
    font-weight: 900;
}

.booking-form {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    background: rgba(5, 5, 5, 0.72);
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

.booking-form label {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    margin-bottom: 0.45rem;
    text-transform: uppercase;
}

.form-control {
    min-height: 54px;
    border: 1px solid var(--line);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.075);
    color: var(--white);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--red-bright);
    box-shadow: 0 0 0 0.25rem rgba(237, 24, 57, 0.16);
    color: var(--white);
}

.contact-card {
    display: grid;
    min-height: 190px;
    place-items: center;
    gap: 1rem;
    padding: 2rem;
    text-align: center;
    overflow-wrap: anywhere;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 24, 57, 0.46);
}

.contact-card i {
    color: var(--red-bright);
    font-size: 2rem;
}

.contact-card span {
    font-size: 1.05rem;
    font-weight: 900;
}

.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(237, 24, 57, 0.32);
    background:
        linear-gradient(135deg, rgba(93, 7, 18, 0.42), rgba(5, 5, 5, 0.96) 44%),
        #030303;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 14% 12%, rgba(237, 24, 57, 0.16), transparent 18rem),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 92px);
    pointer-events: none;
}

.site-footer .container {
    position: relative;
}

.footer-main {
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.footer-col h2 {
    margin-bottom: 1.2rem;
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-contact {
    display: grid;
    gap: 0.9rem;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted);
}

.footer-contact i {
    min-width: 18px;
    color: var(--red-bright);
}

.footer-contact a:hover,
.footer-bottom a {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    font-weight: 800;
    color: var(--red-bright);
}

.footer-links,
.footer-social-list {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a,
.footer-social-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--muted);
    font-size: 0.92rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a::before {
    content: "\f105";
    color: var(--red-bright);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.footer-links a:hover,
.footer-social-list a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-social-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.85rem;
}

.footer-social-list i {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 4px;
    background: rgba(237, 24, 57, 0.12);
    color: var(--white);
}

.scroll-top {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

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

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

.hero-title.reveal {
    transform: translateY(32px) scale(0.985);
}

.hero-title.reveal.is-visible {
    transform: translateY(0) scale(1);
}

@keyframes heroCinematicZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

@keyframes aboutCinematicZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

@keyframes heroPortraitFloat {
    from { transform: scale(1.06) translateX(0); }
    to { transform: scale(1) translateX(1.2rem); }
}

@keyframes slowZoomOut {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

@keyframes pulseSweep {
    from { opacity: 0.55; transform: translateX(-2%); }
    to { opacity: 1; transform: translateX(2%); }
}

@keyframes scrollCue {
    0% { opacity: 0; transform: translateY(0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translateY(16px); }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 1rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .music-grid,
    .venue-grid,
    .performance-highlights,
    .latest-track-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .latest-strip,
    .events-feature {
        grid-template-columns: 1fr;
    }

    .gallery-grid-clean {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-section {
        padding-top: 7.5rem;
    }

}

@media (max-width: 767.98px) {
    .artist-logo {
        font-size: 0.88rem;
        letter-spacing: 0.12em;
    }

    .artist-logo::after {
        width: 22px;
    }

    .hero-title {
        font-size: clamp(2.25rem, 11vw, 2.625rem);
        line-height: 1;
    }

    .hero-bg {
        background-position: 64% center;
    }

    .section-title,
    .small-title {
        font-size: clamp(1.75rem, 8vw, 2.125rem);
    }

    .page-title {
        font-size: clamp(2.2rem, 10vw, 2.7rem);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .profile-list div,
    .release-panel {
        grid-template-columns: 1fr;
    }

    .image-panel {
        min-height: 430px;
    }

    .release-art {
        min-height: 240px;
    }

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

    .music-grid,
    .venue-grid,
    .performance-highlights,
    .latest-track-list {
        grid-template-columns: 1fr;
    }

    .events-feature-media {
        min-height: 280px;
    }

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

    .gallery-tile {
        height: 340px;
    }

    .gallery-lightbox {
        padding: 1rem;
    }

    .lightbox-prev,
    .lightbox-next {
        top: auto;
        bottom: 1rem;
    }

    .music-card-body p:not(.music-category) {
        min-height: auto;
    }

    .page-hero {
        padding-top: 7.5rem;
    }

    .about-strip {
        min-height: auto;
        background:
            radial-gradient(circle at 82% 20%, rgba(237, 24, 57, 0.16), transparent 18rem),
            linear-gradient(135deg, #050505 0%, #0b0b0b 48%, #15070a 100%);
    }

    .about-strip::after {
        left: auto;
        right: 1.5rem;
    }

    .about-actions .btn {
        width: 100%;
    }

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

    .about-cinematic {
        background:
            radial-gradient(circle at 22% 30%, rgba(237, 24, 57, 0.14), transparent 18rem),
            linear-gradient(135deg, #050505 0%, #0b0b0b 52%, #15070a 100%);
    }

    .about-bg {
        background-size: auto 58%;
        background-position: left top;
        opacity: 0.42;
    }

    .about-cinematic::after {
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.92) 38%, rgba(5, 5, 5, 0.98) 100%),
            linear-gradient(90deg, rgba(5, 5, 5, 0.42), rgba(5, 5, 5, 0.98));
    }

    .contact-booking {
        background:
            linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.88) 100%),
            url("../images/artist-booth.jpg") right top / cover no-repeat;
    }
}

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

/* QA polish: accessibility, mobile comfort, and secure form states. */
:focus-visible {
    outline: 2px solid var(--red-bright);
    outline-offset: 3px;
}

.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    line-height: 1.6;
}

.form-alert ul {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
}

.form-alert-success {
    border: 1px solid rgba(87, 207, 137, 0.32);
    background: rgba(87, 207, 137, 0.1);
    color: #d8ffe7;
}

.form-alert-error {
    border: 1px solid rgba(237, 24, 57, 0.4);
    background: rgba(237, 24, 57, 0.12);
    color: #ffe3e8;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.38);
}

.btn,
.nav-link,
.social-row a,
.footer-social-list a,
.gallery-tile {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1199.98px) {
    .hero-title {
        max-width: 620px;
    }

    .hero-copy {
        max-width: 520px;
    }
}

@media (max-width: 991.98px) {
    .site-nav {
        background: rgba(5, 5, 5, 0.96);
        border-bottom: 1px solid var(--line);
    }

    .navbar-collapse {
        margin-top: 0.85rem;
        padding: 1rem;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(5, 5, 5, 0.96);
        box-shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
    }

    .navbar-nav {
        align-items: stretch !important;
        gap: 0.25rem;
    }

    .nav-link {
        min-height: 44px;
        padding: 0.8rem 0.6rem;
        font-size: 0.95rem;
    }

    .nav-link::after {
        left: 0.6rem;
        right: auto;
        width: 34px;
    }

    .btn-nav {
        width: 100%;
        min-height: 46px;
    }

    .contact-info-panel,
    .booking-form,
    .footer-main {
        backdrop-filter: none;
    }
}

@media (max-width: 767.98px) {
    body {
        overflow-x: hidden;
    }

    .container {
        width: min(100% - 1.5rem, 540px);
    }

    .hero-section {
        min-height: auto;
        padding: 7rem 0 4rem;
    }

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

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

    .hero-actions {
        gap: 0.7rem;
        margin-top: 1.5rem;
    }

    .hero-social {
        flex-wrap: wrap;
    }

    .page-hero,
    .music-hero,
    .events-hero,
    .gallery-hero {
        padding: 6.5rem 0 3rem;
    }

    .section-pad,
    .music-catalogue,
    .events-page,
    .gallery-page,
    .contact-booking,
    .about-cinematic {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .section-copy {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .latest-track-list a,
    .contact-info-list a,
    .footer-contact a {
        overflow-wrap: anywhere;
    }

    .booking-form {
        padding: 1.1rem;
    }

    .booking-form .btn {
        width: 100%;
    }

    .form-control {
        font-size: 1rem;
    }

    .footer-main {
        padding: 1rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .social-row a {
        width: 44px;
        height: 44px;
    }
}
