@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Cormorant+Garamond:wght@400;500;600;700&family=Parisienne&family=Playfair+Display:wght@600;700;800;900&family=Allura&family=Eagle+Horizon&display=swap');

:root {
    --bg: #0d1317;
    --bg-alt: #121b21;
    --panel: rgba(15, 23, 28, 0.9);
    --panel-soft: rgba(22, 29, 35, 0.9);
    --panel-light: rgba(27, 35, 41, 0.8);
    --line: rgba(255, 255, 255, 0.08);
    --primary: #2d4f6f;
    --primary-strong: #213d58;
    --primary-alt: #6c8bab;
    --text: #edf3f7;
    --muted: rgba(237, 243, 247, 0.72);
    --text-dark: #14232d;
    --text-soft: #5e6b72;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Roboto', sans-serif;
    background: #edf3f7;
    color: var(--text-dark);
    line-height: 1.6;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }

.navbar {
    background: rgba(23, 31, 37, 0.68);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    left: 0.75rem;
    right: 0.75rem;
    width: auto;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 14px 30px rgba(0,0,0,0.12);
    border-radius: 0 0 24px 24px;
    padding: 0.3rem 0;
    z-index: 1040;
}

.navbar .container {
    position: relative;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(255,255,255,0.96);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 0.7rem;
    background: linear-gradient(135deg, #365d80, #7ea2c2);
    color: #edf3f7;
    font-weight: 900;
}

.navbar-nav {
    gap: 0.2rem;
}

.nav-link {
    color: rgba(214, 223, 230, 0.9) !important;
    font-size: 0.83rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0.35rem;
    padding: 0.7rem 0.9rem !important;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.02));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link.active,
.nav-link:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.05);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.btn-primary {
    background: linear-gradient(135deg, #2e4f6d, #395f82);
    border: 0;
    border-radius: 0;
    clip-path: polygon(0 18%, 100% 0, 100% 82%, 0 100%);
    box-shadow: 0 10px 22px rgba(29, 62, 89, 0.35);
    color: #edfdfd;
    font-weight: 800;
    letter-spacing: 0.02em;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #233f5d, #2d567d);
    color: #edfdfd;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(29, 62, 89, 0.4);
}

.btn-submit {
    background: linear-gradient(135deg, #c1392b, #e74c3c);
    border: 0;
    border-radius: 0;
    clip-path: polygon(0 18%, 100% 0, 100% 82%, 0 100%);
    box-shadow: 0 10px 22px rgba(193, 57, 43, 0.35);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #a93226, #d35400);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(193, 57, 43, 0.4);
}

.btn-book {
    background: linear-gradient(135deg, #d32f2f, #e53935);
    border: 0;
    border-radius: 0;
    clip-path: polygon(0 18%, 100% 0, 100% 82%, 0 100%);
    box-shadow: 0 10px 22px rgba(211, 47, 47, 0.35);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-book:hover {
    background: linear-gradient(135deg, #b71c1c, #c62828);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(211, 47, 47, 0.4);
}

.btn-outline-light {
    border-color: rgba(255,255,255,0.2);
    color: #edf3f7;
    background: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    background: rgba(46, 79, 109, 0.7);
    border-color: rgba(46, 79, 109, 0.9);
    color: #edf3f7;
}

.btn-view-shows {
    border-color: #d32f2f;
}

.btn-view-shows:hover,
.btn-view-shows:focus {
    background: #d32f2f;
    border-color: #d32f2f;
    color: #ffffff;
}

.luxury-landing {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 5.5rem;
    padding-bottom: 4rem;
    background:
        radial-gradient(circle at 15% 30%, rgba(103, 154, 176, 0.34), transparent 25%),
        radial-gradient(circle at 72% 12%, rgba(122, 176, 195, 0.24), transparent 28%),
        rgba(26, 34, 39, 0.72);
}

.luxury-landing::before,
.luxury-landing::after {
    content: "";
    position: absolute;
    pointer-events: none;
    filter: blur(90px);
    opacity: 0.8;
    will-change: transform;
}

.luxury-landing::before {
    width: 46rem;
    height: 46rem;
    right: -12rem;
    top: -10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 181, 202, 0.9) 0%, rgba(124, 181, 202, 0.42) 35%, rgba(124, 181, 202, 0.08) 60%, transparent 76%);
    animation: ambientFloat 17s ease-in-out infinite alternate;
    box-shadow: 0 0 110px rgba(124, 181, 202, 0.28);
}

.luxury-landing::after {
    width: 38rem;
    height: 18rem;
    left: -8rem;
    bottom: 5rem;
    border-radius: 22% 78% 58% 42% / 52% 26% 74% 48%;
    background: linear-gradient(120deg, rgba(199, 223, 255, 0.52), rgba(116, 153, 182, 0.24) 40%, transparent 75%);
    transform: rotate(-14deg);
    animation: beamSweep 12s ease-in-out infinite alternate;
    box-shadow: 0 0 90px rgba(186, 214, 245, 0.24);
}

.luxury-landing__media,
.hero-video,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.luxury-landing__media {
    overflow: hidden;
    animation: mediaDrift 18s ease-in-out infinite alternate;
}

.hero-video {
    object-fit: cover;
    filter: grayscale(1) brightness(0.34) contrast(1.25) saturate(0.2);
    transform: scale(1.06);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(9, 13, 17, 0.92) 0%, rgba(17, 23, 28, 0.82) 30%, rgba(17, 23, 28, 0.55) 60%, rgba(17, 23, 28, 0.72) 100%),
        linear-gradient(180deg, rgba(9, 13, 17, 0.14), rgba(9, 13, 17, 0.38));
}

.luxury-landing__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 9rem);
    width: 100%;
    color: #edf3f7;
}

.luxury-landing__content .row {
    width: 100%;
    min-height: 100%;
    align-items: center !important;
}

.luxury-landing__content .hero h1,
.luxury-landing__content .hero p,
.luxury-landing__content .hero .stat-box strong,
.luxury-landing__content .hero .stat-box span,
.luxury-landing__content .luxury-badge,
.luxury-landing__content .luxury-wordmark,
.luxury-landing__content .cta-row .btn,
.luxury-landing__content .luxury-spotlight__meta span,
.luxury-landing__content .luxury-spotlight__meta strong,
.luxury-landing__content .luxury-spotlight__meta small {
    color: #edf3f7;
}

.luxury-badge,
.luxury-wordmark,
.hero p,
.cta-row,
.hero-stats {
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.8s ease forwards;
}

.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.88);
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0.4rem;
    margin-bottom: 1rem;
    animation-delay: 0.1s;
}

.luxury-wordmark {
    color: rgba(255,255,255,0.14);
    font-size: clamp(0.8rem, 1vw, 1rem);
    letter-spacing: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.9rem;
    animation-delay: 0.12s;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.hero h1 {
    font-size: clamp(3.1rem, 6vw, 6rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin: 0 0 1rem;
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeUp 0.9s ease forwards;
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
}

.hero h1 .accent {
    background: linear-gradient(135deg, #f4f8ff, #dbeeff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Parisienne', cursive;
    font-size: 1.12em;
    font-style: normal;
    letter-spacing: 0.02em;
    display: inline-block;
    transform: translateY(-0.06em);
}

.hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.12rem;
    max-width: 620px;
    animation-delay: 0.2s;
}

.cta-row { animation-delay: 0.3s; }
.hero-stats { animation-delay: 0.4s; }

.luxury-spotlight {
    position: relative;
    background: rgba(18, 24, 29, 0.38);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.5rem;
    padding: 0.9rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.22);
}

.luxury-spotlight__image {
    overflow: hidden;
    border-radius: 1.1rem;
    transition: transform 2s ease, box-shadow 2s ease;
}

.luxury-spotlight__image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    transition: transform 3s ease, filter 3s ease, brightness 3s ease;
}

.luxury-spotlight:hover .luxury-spotlight__image {
    transform: scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.luxury-spotlight:hover .luxury-spotlight__image img {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.08);
}

.luxury-spotlight__meta {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 0.3rem 0.2rem;
}

.luxury-spotlight__meta span,
.luxury-spotlight__meta small {
    color: var(--muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.68rem;
}

.luxury-spotlight__meta strong {
    font-size: 1.4rem;
    letter-spacing: -0.04em;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ambientFloat {
    0% {
        transform: translate3d(0, 0, 0) scale(0.92);
        opacity: 0.72;
    }
    50% {
        opacity: 0.92;
    }
    100% {
        transform: translate3d(28px, 22px, 0) scale(1.14);
        opacity: 1;
    }
}

@keyframes beamSweep {
    0% {
        transform: translate3d(-12px, 0, 0) rotate(-18deg) scaleX(0.9);
        opacity: 0.38;
    }
    50% {
        transform: translate3d(10px, -6px, 0) rotate(-12deg) scaleX(1.1);
        opacity: 0.68;
    }
    100% {
        transform: translate3d(22px, 8px, 0) rotate(-10deg) scaleX(1.18);
        opacity: 0.92;
    }
}

@keyframes mediaDrift {
    0% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }
    100% {
        transform: scale(1.13) translate3d(-16px, 10px, 0);
    }
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.cta-row .btn-lg {
    font-size: 0.95rem;
    padding: 0.8rem 2.2rem !important;
}

.btn,
.btn-lg,
.btn-sm,
.btn-primary,
.btn-outline-light {
    border-radius: 0 !important;
    clip-path: polygon(0 18%, 100% 0, 100% 82%, 0 100%);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.5rem;
}

.stat-box {
    min-width: 130px;
}

.stat-box strong {
    display: block;
    font-size: clamp(2.4rem, 3.4vw, 3.6rem);
    font-weight: 400;
    margin-bottom: 0.4rem;
    letter-spacing: 0.02em;
    line-height: 0.9;
    color: #e8f1f7;
    font-family: 'Allura', cursive;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3), 0 0 15px rgba(232, 241, 247, 0.14);
    position: relative;
    font-style: normal;
}

.stat-box strong::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 2.2rem;
    height: 1px;
    background: rgba(164, 197, 218, 0.5);
}

.stat-box span {
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.68rem;
    font-weight: 600;
    display: inline-block;
    padding-top: 0.35rem;
}

.section {
    padding: 5rem 0;
    background: #112028;
    color: var(--text);
}

.section-light {
    background: #18272e;
}

.section-title {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
    font-weight: 700;
    margin-bottom: 0.9rem;
    color: #edf3f7;
    font-family: 'Cormorant Garamond', serif;
}

.section-subtitle {
    max-width: 680px;
    margin: 0 auto 2rem;
    font-size: 1.05rem;
    color: rgba(237, 243, 247, 0.78);
}

.featured-album {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(21, 29, 35, 0.9);
    border: 1px solid var(--line);
    border-radius: 1.8rem;
    box-shadow: var(--shadow);
}

.album-art img,
.release-art img,
.about-image img,
.gallery-item img {
    width: 100%;
    border-radius: 1.2rem;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease;
}

.album-art img {
    height: 100%;
    min-height: 520px;
}

.album-art,
.release-art,
.about-image,
.gallery-item,
.luxury-spotlight__image {
    overflow: hidden;
    position: relative;
    isolation: isolate;
    height: 100%;
}

.album-art::after,
.release-art::after,
.about-image::after,
.gallery-item::after,
.luxury-spotlight__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 16, 21, 0.04), rgba(10, 16, 21, 0.18));
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.album-art:hover img,
.release-art:hover img,
.about-image:hover img,
.gallery-item:hover img,
.luxury-spotlight__image:hover img {
    transform: scale(1.05) translateY(-3px);
    filter: saturate(1.12) contrast(1.08) brightness(1.04);
    box-shadow: 0 20px 30px rgba(8, 15, 20, 0.28);
}

.album-art:hover::after,
.release-art:hover::after,
.about-image:hover::after,
.gallery-item:hover::after,
.luxury-spotlight__image:hover::after {
    opacity: 1;
}

.album-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album-content h3 {
    font-size: clamp(1.7rem, 2.3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    color: #edf3f7;
}

.tag {
    display: inline-flex;
    width: fit-content;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(123, 182, 210, 0.16);
    border: 1px solid rgba(123, 182, 210, 0.26);
    color: #d7ecfb;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.waveform-panel {
    margin-top: 1.5rem;
    padding: 1.1rem 1.1rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: rgba(255,255,255,0.02);
}

.waveform-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.waveform-header small {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(237,243,247,0.62);
}

.waveform-header strong {
    font-size: 1.1rem;
}

.waveform-header span {
    color: rgba(237,243,247,0.8);
    font-weight: 600;
}

#waveform {
    width: 100%;
    height: 120px;
    display: block;
    border-radius: 0.8rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.04));
}

.waveform-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.8rem;
}

.wave-btn {
    border: 0;
    border-radius: 999px;
    background: rgba(123, 182, 210, 0.2);
    color: white;
    padding: 0.65rem 1.2rem;
    font-weight: 700;
}

.wave-status {
    color: rgba(237,243,247,0.7);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.player-wrap {
    margin-top: 1.25rem;
    padding: 0.5rem 0;
}

.player-wrap audio,
.music-dock-player audio {
    width: 100%;
}

.spotify-player-wrap {
    margin-top: 1.1rem;
}

.spotify-embed-frame {
    border-radius: 12px;
}

.track-list {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.track-row {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 0.8rem;
    align-items: center;
    padding: 0.8rem 0.9rem;
    border-radius: 0.8rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    color: var(--text);
}

.track-row span,
.track-row em {
    color: rgba(237,243,247,0.66);
}

.music-card,
.show-card,
.about-panel,
.contact-box,
.gallery-item {
    background: rgba(19, 26, 31, 0.95);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 1.25rem;
    box-shadow: var(--shadow);
}

.music-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.release-art {
    margin-bottom: 1rem;
}

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

.music-card h4,
.show-card h4 {
    margin-top: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    font-family: 'Cormorant Garamond', serif;
    color: #edf3f7;
}

.music-card p,
.show-card p,
.about-text p {
    color: rgba(237,243,247,0.75);
}

.music-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(237,243,247,0.75);
}

.show-card {
    padding: 1rem 1rem 0.9rem;
    min-height: 100%;
}

.show-date {
    min-width: 74px;
    padding: 0.7rem 0.5rem;
    border-radius: 0.8rem;
    background: rgba(123, 182, 210, 0.12);
    border: 1px solid rgba(123, 182, 210, 0.24);
    color: #dfeef9;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.2;
}

.page-header {
    background: linear-gradient(180deg, rgba(17, 24, 29, 0.9), rgba(17, 24, 29, 0.96));
    padding-top: 8rem;
    padding-bottom: 4rem;
    color: var(--text);
}

.page-intro {
    max-width: 760px;
}

.page-breadcrumb {
    color: rgba(237,243,247,0.68);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.page-intro h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: #edf3f7;
}

.page-intro p {
    font-size: 1.08rem;
    color: rgba(237,243,247,0.72);
}

.about-image img {
    height: auto;
    min-height: 0;
    display: block;
}

#about .about-image {
    height: 540px;
}

#about .about-image img {
    height: 100%;
    object-fit: contain;
}

.about-panel {
    padding: 2rem;
}

.feature-list {
    margin: 1.4rem 0 0;
    padding-left: 1.2rem;
    color: rgba(237,243,247,0.78);
}

.feature-list li + li {
    margin-top: 0.6rem;
}

.gallery-item {
    overflow: hidden;
    padding: 0.5rem;
}

.gallery-item img {
    aspect-ratio: 4 / 5;
}

.contact-box {
    padding: 2rem;
}

.contact-box h4 {
    font-size: 1.65rem;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: #edf3f7;
}

.contact-box a,
.contact-box a:hover,
.contact-box a:focus,
.contact-box a:visited {
    color: #9ab7ca;
    text-decoration: none;
}

.form-control {
    background: rgba(255,255,255,0.02);
    border-color: rgba(93, 167, 255, 0.24);
    color: var(--text);
}

.form-control::placeholder {
    color: rgba(237,243,247,0.45);
}

.form-label {
    color: var(--text);
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.site-footer {
    background: linear-gradient(180deg, rgba(17, 24, 29, 0.96), rgba(12, 18, 22, 1));
    color: rgba(237,243,247,0.9);
    padding-top: 4rem;
    padding-bottom: 2rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links a {
    color: rgba(237,243,247,0.78);
    text-decoration: none;
}

.music-dock {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1050;
    width: min(460px, calc(100% - 1rem));
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.8rem;
    border-radius: 0.9rem;
    background: rgba(14, 20, 25, 0.85);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.music-dock-art {
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 0.6rem;
    flex-shrink: 0;
}

.music-dock-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.music-dock-meta {
    display: flex;
    flex-direction: column;
    min-width: 110px;
    color: #edf3f7;
}

.music-dock-meta strong {
    font-size: 0.86rem;
}

.music-dock-meta small {
    color: rgba(237,243,247,0.7);
}

.music-dock-player {
    flex: 1;
}

.intro-splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(26, 39, 49, 0.88), rgba(7, 11, 15, 1));
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-splash.hide {
    opacity: 0;
    visibility: hidden;
}

.splash-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.8rem;
    animation: splashPulse 1.3s ease-in-out infinite alternate;
}

.splash-logo {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #dfe9f4);
    color: #091722;
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 0 40px rgba(93, 167, 255, 0.45);
}

.splash-text {
    letter-spacing: 0.42em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.8);
    text-align: center;
}

.splash-line {
    width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(93, 167, 255, 0.9), transparent);
    margin: 1.25rem auto 0;
    animation: lineGlow 1.3s ease-in-out infinite;
}

@keyframes splashPulse {
    0% { transform: scale(0.96); opacity: 0.7; }
    100% { transform: scale(1.05); opacity: 1; }
}

@keyframes lineGlow {
    0% { transform: scaleX(0.3); opacity: 0.4; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0.7); opacity: 0.8; }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(16, 24, 31, 0.96);
        border-radius: 1rem;
        padding: 1rem;
        margin-top: 0.75rem;
    }
    .navbar-nav {
        gap: 0.4rem;
    }
    .luxury-landing__content {
        min-height: auto;
        padding-top: 3rem;
    }
    .featured-album {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 4rem 0;
    }
    .music-dock {
        padding: 0.6rem 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .music-dock {
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
    }
    .music-dock-meta {
        min-width: 0;
    }
    .social-links {
        justify-content: flex-start;
    }
    .album-content h3 {
        font-size: 1.8rem;
    }
}
