* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #080607;
    --bg-soft: #130d10;
    --text: #fff8f2;
    --muted: #c9b8b0;
    --gold: #d9aa66;
    --rose: #d75f78;
    --card: rgba(255, 255, 255, .05);
    --border: rgba(255, 255, 255, .10);
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(215, 95, 120, .18), transparent 28%),
        radial-gradient(circle at top right, rgba(217, 170, 102, .12), transparent 24%),
        linear-gradient(135deg, #050404, #120a0d 55%, #050404);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(18px);
    background: rgba(0, 0, 0, .45);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 32px;
    font-family: 'Playfair Display', serif;
    letter-spacing: -1px;
}

.logo span {
    color: var(--gold);
}

nav {
    display: flex;
    gap: 34px;
}

nav a {
    color: var(--muted);
    transition: .25s;
}

nav a:hover {
    color: white;
}

.lang-switch {
    display: flex;
    gap: 8px;
}

.lang-switch a {
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--muted);
    transition: .25s;
}

.lang-switch a:hover,
.lang-switch a.active {
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: black;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(215, 95, 120, .12);
    filter: blur(120px);
    right: -120px;
    top: 100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 12px;
    margin-bottom: 20px;
    font-weight: 700;
}

.release-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 10px 15px;
    border-radius: 999px;
    margin-bottom: 26px;
    color: #eee;
    font-size: 14px;
}

.release-pill span {
    color: var(--gold);
    font-weight: 700;
}

h1 {
    font-size: 110px;
    line-height: .85;
    letter-spacing: -5px;
    font-family: 'Playfair Display', serif;
}

h1 span {
    display: block;
    background: linear-gradient(135deg, #fff, #d9aa66, #d75f78);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-text {
    margin-top: 34px;
    color: var(--muted);
    line-height: 1.9;
    font-size: 18px;
    max-width: 620px;
}

.hero-buttons {
    margin-top: 42px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    padding: 15px 28px;
    border-radius: 999px;
    transition: .25s;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: #14090c;
    box-shadow: 0 18px 40px rgba(215, 95, 120, .25);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .03);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .08);
}

.hero-card {
    min-height: 620px;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, .12), rgba(0, 0, 0, .58)),
        url('../img/new-release.jpg') center/cover;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .45);
    display: flex;
    align-items: flex-end;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .72));
}

.hero-card-content {
    position: relative;
    z-index: 2;
    padding: 42px;
}

.release-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    margin-bottom: 14px;
    font-weight: 700;
}

.hero-card h3 {
    font-size: 48px;
    line-height: 1;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

.hero-card p {
    color: #ddd;
    line-height: 1.8;
}

section {
    padding: 120px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.section-head p {
    max-width: 520px;
    color: var(--muted);
    line-height: 1.8;
}

section h2 {
    font-size: 64px;
    letter-spacing: -2px;
    font-family: 'Playfair Display', serif;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.music-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
    transition: .25s;
}

.music-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .08);
}

.music-cover {
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
}

.music-content {
    padding: 28px;
}

.music-content span {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-weight: 700;
}

.music-content h3 {
    margin-top: 14px;
    font-size: 34px;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
}

.music-content p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.8;
}

.music-links {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.music-links a {
    border: 1px solid rgba(255, 255, 255, .10);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    color: #eee;
}

.upcoming-card {
    opacity: .92;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    min-height: 620px;
    border-radius: 38px;
    background:
        linear-gradient(rgba(0, 0, 0, .12), rgba(0, 0, 0, .5)),
        url('../img/artist.jpg') center/cover;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
}

.about-text {
    color: var(--muted);
    line-height: 1.95;
    font-size: 18px;
    margin-top: 26px;
}

blockquote {
    margin: 34px 0;
    padding-left: 24px;
    border-left: 3px solid var(--gold);
    font-size: 28px;
    line-height: 1.5;
    font-family: 'Playfair Display', serif;
}

.newsletter-box {
    background:
        radial-gradient(circle at top right, rgba(215, 95, 120, .16), transparent 30%),
        rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 40px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 50px;
    align-items: center;
}

.newsletter-box p {
    color: var(--muted);
    margin-top: 20px;
    line-height: 1.8;
}

.newsletter-box form {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, .22);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 8px;
    border-radius: 999px;
}

.newsletter-box input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: white;
    padding: 0 16px;
    font-size: 15px;
}

.newsletter-box button {
    border: 0;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: black;
    font-weight: 700;
    cursor: pointer;
}

.contact-box {
    margin-top: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 34px;
    padding: 42px;
}

.contact-box p {
    color: var(--muted);
    line-height: 1.8;
}

.social-links {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-links a {
    border: 1px solid rgba(255, 255, 255, .10);
    padding: 11px 15px;
    border-radius: 999px;
    transition: .25s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, .08);
}

footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--muted);
}

@media(max-width:980px) {

    .hero-grid,
    .about-grid,
    .newsletter-box {
        grid-template-columns: 1fr;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-top: 18px;
    }

    h1 {
        font-size: 72px;
    }

    section h2 {
        font-size: 48px;
    }

}

@media(max-width:768px) {

    nav {
        display: none;
    }

    .nav {
        height: 74px;
    }

    h1 {
        font-size: 58px;
    }

    .hero-card {
        min-height: 480px;
    }

    .newsletter-box {
        padding: 34px;
    }

    .newsletter-box form {
        border-radius: 24px;
        flex-direction: column;
    }

    .newsletter-box input {
        padding: 16px;
    }

}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .06);
    color: white;
    font-size: 22px;
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 74px;
    left: 14px;
    right: 14px;
    z-index: 998;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(8, 6, 7, .94);
    border: 1px solid rgba(255, 255, 255, .10);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--muted);
    transition: .25s;
}

.mobile-menu a:hover {
    color: white;
    background: rgba(255, 255, 255, .06);
}

.mobile-lang {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.mobile-lang a {
    border: 1px solid rgba(255, 255, 255, .10);
    padding: 9px 12px;
    border-radius: 999px;
    font-size: 12px;
}

@media(max-width:768px) {
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lang-switch {
        display: none;
    }
}