:root {
    --bg: #120d11;
    --bg-elevated: rgba(36, 24, 31, 0.72);
    --bg-soft: rgba(255, 255, 255, 0.05);
    --surface: rgba(255, 245, 240, 0.08);
    --surface-strong: rgba(255, 245, 240, 0.12);
    --text: #f8efe9;
    --muted: rgba(248, 239, 233, 0.74);
    --line: rgba(255, 230, 220, 0.12);
    --accent: #ed8f63;
    --accent-strong: #f2b36c;
    --accent-soft: #d798b5;
    --accent-lilac: #b983bf;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    --radius-lg: 32px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --container: min(1180px, calc(100vw - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(237, 143, 99, 0.22), transparent 32%),
        radial-gradient(circle at 82% 12%, rgba(185, 131, 191, 0.16), transparent 26%),
        linear-gradient(180deg, #120d11 0%, #1b1216 55%, #120d11 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
}

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

a {
    color: inherit;
}

button,
audio {
    font: inherit;
}

.container {
    width: var(--container);
    max-width: 100%;
    margin: 0 auto;
}

.page-glow {
    position: fixed;
    z-index: -1;
    width: 35rem;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    pointer-events: none;
}

.page-glow-left {
    top: 4rem;
    left: -10rem;
    background: rgba(237, 143, 99, 0.8);
}

.page-glow-right {
    right: -10rem;
    bottom: 8rem;
    background: rgba(185, 131, 191, 0.72);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 1rem 0 0;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(18, 13, 17, 0.74);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    text-decoration: none;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-lilac));
    color: #170f14;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand-text {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0 auto;
    padding: 0;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    text-decoration: none;
    transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
    display: none;
    width: 3rem;
    height: 3rem;
    padding: 0;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 1rem;
    height: 2px;
    margin: 0.3rem auto;
    background: currentColor;
    border-radius: 999px;
}

.hero-section {
    padding: 4.5rem 0 2rem;
}

.hero-grid,
.section-grid,
.editorial-grid,
.video-layout,
.contact-grid {
    display: grid;
    gap: 2rem;
}

.clips-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
    gap: 2rem;
    align-items: center;
    padding: 5rem 0 1rem;
}

.hero-copy,
.hero-visual,
.section-copy,
.split-copy,
.audio-body,
.playlist-copy,
.track-info,
.track-actions,
.section-heading,
.editorial-card,
.feature-card,
.release-card,
.contact-card,
.video-aside,
.clips-hero-copy,
.clips-hero-media {
    min-width: 0;
}

.clips-hero-frame {
    min-height: 18rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    min-height: calc(100vh - 10rem);
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--accent-soft);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.96;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.2rem, 7vw, 6.6rem);
    max-width: 12ch;
}

h2 {
    font-size: clamp(2.3rem, 4.6vw, 4rem);
}

h3 {
    font-size: clamp(1.55rem, 2vw, 2rem);
}

p,
li,
.footer-links a,
.track-actions a {
    color: var(--muted);
    line-height: 1.75;
}

.hero-text,
.lead {
    max-width: 62ch;
    font-size: 1.05rem;
}

.hero-actions,
.audio-links,
.stack-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.hero-actions {
    margin-top: 2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    color: #201216;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
}

.button-ghost {
    color: var(--accent-strong);
}

.hero-note,
.feature-card,
.audio-card,
.release-card,
.video-panel,
.gallery-card,
.editorial-card,
.palette-card,
.quote-panel,
.playlist-feature,
.track,
.contact-card,
.cta-panel,
.legal-card {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.hero-note {
    margin-top: 1.75rem;
    padding: 1.1rem 1.2rem;
    max-width: 34rem;
    width: 100%;
}

.hero-note p {
    margin: 0.65rem 0 0;
}

.note-pill {
    display: inline-flex;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(185, 131, 191, 0.14);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 0.78fr;
    gap: 1rem;
    align-items: end;
}

.visual-stack {
    display: grid;
    gap: 1rem;
}

.home-shot {
    overflow: hidden;
}

.home-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.8rem;
}

.home-shot-main {
    aspect-ratio: 4 / 5;
}

.home-shot-top,
.home-shot-bottom {
    aspect-ratio: 4 / 3;
}

.home-shot-bottom {
    margin-top: 1.25rem;
}

.visual-frame {
    overflow: hidden;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-frame {
    background: none;
    border: 0;
    box-shadow: none;
    min-height: 0;
}

.no-frame img {
    height: auto;
    object-fit: contain;
    border-radius: 1.6rem;
}

.visual-tall {
    min-height: 38rem;
}

.visual-small {
    min-height: 18.5rem;
}

.accent-frame {
    transform: translateY(2rem);
}

.section,
.inner-main {
    padding-bottom: 2rem;
}

.section {
    padding-top: 4rem;
}

.section-contrast {
    position: relative;
}

.section-contrast::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
    pointer-events: none;
}

.section-heading {
    margin-bottom: 2rem;
}

.feature-grid,
.release-grid,
.gallery-grid {
    display: grid;
    gap: 1.2rem;
}

.feature-grid,
.release-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.release-card,
.editorial-card,
.palette-card,
.contact-card,
.legal-card {
    padding: 1.75rem;
}

.release-cover {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: 1rem;
    border-radius: 1rem;
    object-fit: cover;
}

.card-index,
.release-year,
.audio-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--accent-soft);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-grid,
.split-panel,
.playlist-feature {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
}

.video-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    align-items: start;
}

.audio-card,
.playlist-feature {
    display: grid;
    grid-template-columns: 16rem 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
}

.audio-artwork,
.playlist-cover {
    overflow: hidden;
    border-radius: 1.6rem;
}

.audio-artwork img,
.playlist-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.audio-body h3 {
    font-size: clamp(2rem, 3vw, 3rem);
}

.audio-meta {
    margin-top: 0.7rem;
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 1.25rem;
}

.player-button,
.play-small {
    flex: none;
    display: inline-grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #1d1015;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(237, 143, 99, 0.22);
}

.progress-shell {
    width: 100%;
    height: 0.4rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.progress-bar {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-soft), var(--accent-strong));
    transition: width 120ms linear;
}

.video-panel,
.cta-panel,
.quote-panel {
    padding: 1.6rem;
}

.video-aside {
    padding: 1.6rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.video-frame {
    overflow: hidden;
    border-radius: 1.6rem;
    aspect-ratio: 16 / 9;
}

.video-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

.gallery-card {
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.gallery-card figcaption {
    padding: 1rem 1.2rem 1.25rem;
    color: var(--muted);
}

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

.split-panel {
    display: grid;
    gap: 1.5rem;
}

.clean-list {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
}

.palette-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.palette-row span {
    display: block;
    aspect-ratio: 1;
    border-radius: 1rem;
}

.palette-swatch {
    position: relative;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.palette-swatch-1 { background: #1a1317; }
.palette-swatch-2 { background: #5b3c45; }
.palette-swatch-3 { background: #a8735a; }
.palette-swatch-4 { background: #f0b36c; }
.palette-swatch-5 { background: #f2d2c5; }
.palette-swatch-6 { background: #b983bf; }

.palette-swatch:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
}

.palette-swatch::after {
    content: attr(data-label);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.7rem);
    transform: translateX(-50%);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(18, 13, 17, 0.92);
    color: var(--text);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
}

.palette-swatch:hover::after {
    opacity: 1;
}

.quote-panel {
    text-align: center;
}

.quote-mark {
    margin: 0;
    color: var(--accent-soft);
    font-size: 4rem;
    line-height: 1;
}

blockquote {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.quote-caption {
    margin-top: 0.75rem;
}

.tracks {
    display: grid;
    gap: 1rem;
}

.track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.2rem;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.track-info h3 {
    margin-bottom: 0.3rem;
    font-size: 1.8rem;
}

.track-info p {
    margin: 0;
}

.track-cover {
    width: 5rem;
    height: 5rem;
    border-radius: 1.1rem;
    object-fit: cover;
}

.track-cover-white {
    padding: 0.4rem;
    background: #ffffff;
    object-fit: contain;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.track-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.track-actions a {
    text-decoration: none;
    color: var(--accent-strong);
    font-weight: 700;
}

.inline-player {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0 0.8rem;
}

.stack-links {
    flex-direction: column;
    align-items: flex-start;
}

.stack-links a,
.release-card a,
.footer-links a,
.contact-mail {
    color: var(--text);
    text-decoration: none;
}

.stack-links a,
.release-card a {
    font-weight: 700;
}

.contact-mail {
    display: inline-block;
    margin: 0.8rem 0 1rem;
    font-size: 1.1rem;
}

.page-hero {
    padding: 5rem 0 1rem;
}

.page-hero-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.86fr);
    gap: 2rem;
    align-items: center;
    padding: 5rem 0 1rem;
}

.page-hero-copy,
.page-hero-media {
    min-width: 0;
}

.page-hero-card {
    overflow: hidden;
    min-height: 23rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
}

.page-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-card-cover {
    min-height: 20rem;
}

.page-hero-card-portrait {
    min-height: 20rem;
}

.lead {
    margin-top: 1rem;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.site-footer {
    padding: 2rem 0 2.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--line);
}

.footer-title,
.footer-copy {
    margin: 0;
    color: var(--text);
}

.footer-text {
    margin: 0.35rem 0 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    transition: transform 180ms ease, background 180ms ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
}

.footer-socials img {
    width: 2.25rem;
    height: 2.25rem;
}

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

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

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

body.js-ready .reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 500ms ease, transform 500ms ease;
}

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

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

    .reveal,
    .button,
    .progress-bar {
        transition: none;
    }
}

@media (max-width: 980px) {
    .hero-grid,
    .section-grid,
    .feature-grid,
    .release-grid,
    .gallery-grid,
    .editorial-grid,
    .legal-grid,
    .split-panel,
    .playlist-feature,
    .contact-grid,
    .video-layout,
    .clips-hero,
    .page-hero-split {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }

    .audio-card,
    .playlist-feature {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .page-hero-copy,
    .section-copy,
    .playlist-copy {
        max-width: 100%;
    }

    .cta-panel,
    .track {
        flex-direction: column;
        align-items: flex-start;
    }

    .track-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(1180px, calc(100vw - 1.25rem));
    }

    .site-header {
        padding-top: 0.75rem;
    }

    .nav {
        flex-wrap: wrap;
        border-radius: 1.8rem;
        padding: 0.8rem 0.95rem;
    }

    .nav-toggle {
        display: inline-block;
    }

    .nav-links {
        display: none;
        width: 100%;
        margin-left: 0;
        padding-top: 0.5rem;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        justify-content: center;
    }

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

    .hero-grid,
    .clips-hero,
    .page-hero-split {
        gap: 1.35rem;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(2.45rem, 10vw, 4rem);
        line-height: 1;
    }

    h2 {
        line-height: 1.02;
    }

    .page-hero,
    .page-hero-split,
    .clips-hero {
        padding-top: 3rem;
    }

    .hero-note,
    .feature-card,
    .release-card,
    .editorial-card,
    .palette-card,
    .contact-card,
    .legal-card,
    .track,
    .video-panel,
    .video-aside,
    .audio-card,
    .playlist-feature,
    .quote-panel,
    .cta-panel {
        padding: 1.2rem;
        border-radius: 1.45rem;
    }

    .visual-tall,
    .visual-small {
        min-height: auto;
    }

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

    .home-shot-main,
    .home-shot-top,
    .home-shot-bottom {
        aspect-ratio: auto;
    }

    .home-shot-bottom {
        margin-top: 0;
    }

    .hero-actions,
    .audio-links {
        width: 100%;
        flex-direction: column;
    }

    .hero-actions .button,
    .audio-links .button,
    .cta-panel .button {
        width: 100%;
    }

    .audio-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .audio-controls,
    .track-actions {
        width: 100%;
    }

    .inline-player {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .track-cover {
        width: 4.5rem;
        height: 4.5rem;
    }

    .track-info h3 {
        font-size: 1.55rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links,
    .footer-socials {
        width: 100%;
    }
}

@media (max-width: 520px) {
    :root {
        --container: min(1180px, calc(100vw - 1rem));
    }

    .nav {
        border-radius: 1.4rem;
    }

    .brand {
        gap: 0.65rem;
    }

    .brand-mark {
        width: 2.2rem;
        height: 2.2rem;
    }

    .brand-text {
        font-size: 0.82rem;
        letter-spacing: 0.1em;
    }

    .nav-toggle {
        width: 2.75rem;
        height: 2.75rem;
    }

    h1 {
        font-size: clamp(2.1rem, 11vw, 3.1rem);
    }

    .eyebrow {
        font-size: 0.74rem;
        letter-spacing: 0.15em;
    }

    .hero-text,
    .lead,
    p,
    li,
    .footer-links a,
    .track-actions a {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .hero-note,
    .feature-card,
    .release-card,
    .editorial-card,
    .palette-card,
    .contact-card,
    .legal-card,
    .track,
    .video-panel,
    .video-aside,
    .audio-card,
    .playlist-feature,
    .quote-panel,
    .cta-panel {
        padding: 1rem;
    }

    .note-pill {
        font-size: 0.7rem;
    }

    .palette-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-socials {
        gap: 0.5rem;
    }

    .footer-socials a {
        width: 2.75rem;
        height: 2.75rem;
    }

    .footer-socials img {
        width: 2rem;
        height: 2rem;
    }
}
