:root {
    --bg: #080807;
    --panel: #121210;
    --panel-2: #191916;
    --text: #f6f2ea;
    --muted: #b8b0a3;
    --line: rgba(246, 242, 234, 0.14);
    --lime: #d9ff5f;
    --cyan: #5de7ff;
    --coral: #ff6f61;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, sans-serif;
}

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px clamp(18px, 4vw, 48px);
    background: rgba(8, 8, 7, 0.74);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand,
.nav-links,
.hero-actions,
.artist-stats,
.contact-actions {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(217, 255, 95, 0.7);
    background: var(--lime);
    color: #111;
    font-family: "Space Grotesk", sans-serif;
}

.brand-name {
    letter-spacing: 0;
}

.nav-links {
    gap: clamp(14px, 3vw, 32px);
    color: var(--muted);
    font-size: 0.94rem;
}

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

.hero {
    position: relative;
    min-height: 94vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #080807;
}

.hero-media {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(8, 8, 7, 0.98) 0%, rgba(8, 8, 7, 0.86) 52%, rgba(8, 8, 7, 0.72) 100%),
        linear-gradient(0deg, var(--bg) 0%, rgba(8, 8, 7, 0.2) 48%, rgba(8, 8, 7, 0.9) 100%);
    background-position: center, center;
    background-size: cover, cover;
    background-repeat: no-repeat;
    filter: saturate(0.85) contrast(1.08);
    opacity: 0.7;
    transform: scale(1.03);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(217, 255, 95, 0.12), transparent 26%),
        linear-gradient(290deg, rgba(93, 231, 255, 0.14), transparent 32%);
    mix-blend-mode: screen;
    opacity: 0.55;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 32%;
    background: linear-gradient(0deg, var(--bg), transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
    gap: clamp(28px, 5vw, 60px);
    align-items: end;
    padding: 150px 0 58px;
}

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

.eyebrow {
    margin: 0 0 14px;
    color: var(--lime);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", Inter, sans-serif;
    letter-spacing: 0;
}

h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(4rem, 12vw, 10.2rem);
    line-height: 0.84;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4.8rem);
    line-height: 0.96;
}

h3 {
    margin: 0 0 18px;
    font-size: 1.25rem;
}

.hero-text {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(246, 242, 234, 0.76);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.6;
}

.hero-visual {
    align-self: stretch;
    min-height: 200px;
    display: grid;
    grid-template-rows: 1fr auto;
    border: 1px solid rgba(246, 242, 234, 0.18);
    background:
        linear-gradient(180deg, rgba(246, 242, 234, 0.08), transparent 34%),
        rgba(18, 18, 16, 0.54);
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.44);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: 64% center;
    filter: saturate(0.95) contrast(1.04) brightness(0.92);
}

.hero-visual-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-top: 1px solid rgba(246, 242, 234, 0.16);
    background: rgba(8, 8, 7, 0.76);
}

.hero-visual-meta span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-visual-meta strong {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.primary-button {
    background: var(--lime);
    color: #10100d;
}

.secondary-button {
    background: rgba(246, 242, 234, 0.08);
    border-color: var(--line);
    color: var(--text);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.artist-stats {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 0;
}

.artist-stats div {
    width: min(100%, 220px);
    padding: 16px;
    background: rgba(18, 18, 16, 0.62);
    border: 1px solid rgba(246, 242, 234, 0.16);
    backdrop-filter: blur(16px);
}

.artist-stats dt {
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.artist-stats dd {
    margin: 8px 0 0;
    font-weight: 800;
}

.section {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(64px, 9vw, 112px) 0;
}

.section-intro,
.about-section,
.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading p,
.about-copy p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.featured-player,
.track-card,
.playlist-card,
.press-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.featured-player {
    padding: 16px;
}

.spotify-frame {
    display: block;
    width: 100%;
    height: 152px;
    border: 0;
}

.track-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.playlist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.track-card {
    min-height: 100%;
    padding: 16px;
}

.playlist-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(93, 231, 255, 0.1), transparent 45%),
        var(--panel);
}

.playlist-copy {
    display: grid;
    gap: 10px;
}

.playlist-copy h3,
.playlist-copy p {
    margin: 0;
}

.playlist-copy p {
    color: var(--muted);
    line-height: 1.6;
}

.playlist-frame {
    height: 502px;
}

.track-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.track-title {
    margin: 0 0 6px;
    font-size: 1.08rem;
}

.track-tag {
    flex: 0 0 auto;
    padding: 7px 9px;
    background: rgba(93, 231, 255, 0.12);
    color: var(--cyan);
    font-size: 0.78rem;
    font-weight: 800;
}

.track-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.track-card .spotify-frame {
    margin-top: 18px;
}

.about-section {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.press-panel {
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(255, 111, 97, 0.16), transparent 44%),
        var(--panel-2);
}

.press-panel a {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    color: var(--text);
    font-weight: 800;
}

.press-panel a::after {
    content: "+";
    color: var(--lime);
}

.contact-section {
    align-items: start;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 28px clamp(18px, 4vw, 48px);
    border-top: 1px solid var(--line);
    color: var(--muted);
}

@media (max-width: 860px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-between;
    }

    .section-intro,
    .about-section,
    .contact-section,
    .track-grid,
    .playlist-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-items: start;
        padding-top: 180px;
    }

    .hero-visual {
        min-height: 340px;
        max-width: 420px;
        /* aspect-ratio: 9 / 16; */
    }

    .site-footer {
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .nav-links {
        gap: 10px;
        font-size: 0.86rem;
    }

    h1 {
        font-size: clamp(3.4rem, 24vw, 6.6rem);
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding-bottom: 42px;
    }

    .hero-visual {
        min-height: 260px;
        max-width: none;
    }

    .artist-stats div {
        width: 100%;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }
}
