:root {
    --black: #030303;
    --black-2: #09090c;
    --panel: rgba(10, 10, 14, 0.9);
    --panel-2: rgba(16, 16, 22, 0.94);
    --panel-border: rgba(255, 255, 255, 0.08);
    --text: #f3efe9;
    --text-muted: rgba(243, 239, 233, 0.52);
    --text-faint: rgba(243, 239, 233, 0.22);
    --violet: #8f5cff;
    --violet-deep: #5f34d6;
    --violet-soft: rgba(143, 92, 255, 0.14);
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.58);
    --heading: "Oswald", sans-serif;
    --body: "Source Sans 3", sans-serif;
    --content-width: 1180px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 50% 0%, rgba(143, 92, 255, 0.16), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.03), transparent 14%),
        linear-gradient(180deg, #08080b 0%, #040405 52%, #020203 100%);
    color: var(--text);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        repeating-linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.018) 0,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px,
            transparent 4px
        );
    opacity: 0.14;
    pointer-events: none;
    mix-blend-mode: screen;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(143, 92, 255, 0.05) 48%, transparent 100%),
        linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
    opacity: 0.38;
    pointer-events: none;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 82%);
}

body {
    opacity: 0;
    transition: opacity 0.32s ease;
}

body.page-ready {
    opacity: 1;
}

body.page-transition {
    opacity: 0;
}

body.menu-open {
    overflow: hidden;
}

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

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

main {
    position: relative;
    z-index: 1;
}

.shell {
    width: min(calc(100% - 2.5rem), var(--content-width));
    margin: 0 auto;
}

.section-label,
.label,
.eyebrow {
    display: inline-block;
    font-family: var(--heading);
    font-size: 0.74rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
}

.section-label,
.eyebrow {
    color: var(--text-faint);
}

.label {
    color: rgba(143, 92, 255, 0.82);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.5rem;
    border: 1px solid var(--violet);
    background: linear-gradient(180deg, var(--violet) 0%, var(--violet-deep) 100%);
    color: rgba(243, 239, 233, 0.92);
    font-family: var(--heading);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(95, 52, 214, 0.24);
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 20px 38px rgba(95, 52, 214, 0.32);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--violet-soft);
    border-color: var(--violet);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 2rem), var(--content-width));
    margin: 1rem auto 0;
    padding: 0.95rem 1.1rem;
    background: rgba(4, 4, 6, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.nav::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 92, 255, 0.45), transparent);
}

.nav-logo img {
    height: 34px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
}

.nav-links a {
    font-family: var(--heading);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    color: var(--text-faint);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
    color: rgba(243, 239, 233, 0.82);
}

.nav-toggle {
    display: none;
    position: relative;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 2px;
    margin-left: -9px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

.hero {
    position: relative;
    min-height: 100vh;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.82)), url("../images/background.jpg") center/cover;
    filter: grayscale(0.32) brightness(0.34) contrast(1.16);
    transform: scale(1.05);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(143, 92, 255, 0.14), transparent 26%),
        linear-gradient(180deg, transparent 0%, rgba(2, 2, 2, 0.94) 88%);
}

.hero-shell,
.featured-inner,
.album-inner,
.contact-layout {
    width: min(calc(100% - 2.5rem), var(--content-width));
    margin: 0 auto;
}

.hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 2rem;
    align-items: end;
}

.hero-content {
    position: relative;
    max-width: 760px;
    padding: 0 0 0 1rem;
}

.hero-content::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    bottom: 1rem;
    width: 2px;
    background: linear-gradient(180deg, rgba(143, 92, 255, 0.7), transparent);
}

.hero-logo {
    width: min(440px, 74vw);
    margin-bottom: 1.4rem;
    transform: rotate(-2deg);
}

.hero-manifesto,
.page-title,
.featured-title,
.album-title,
.contact-copy h2 {
    font-family: var(--heading);
    text-transform: uppercase;
    line-height: 0.9;
}

.hero-manifesto {
    max-width: 10ch;
    font-size: clamp(2.9rem, 8vw, 7rem);
    letter-spacing: 0.02em;
    margin: 0.7rem 0 1rem;
}

.hero-copy,
.page-intro,
.featured-desc,
.releases-copy,
.album-summary,
.contact-copy p,
.contact-note,
.about-card p,
.album-tagline,
.footer-copy,
.contact-copy li,
.about-manifesto-inner p {
    color: var(--text-muted);
}

.hero-copy {
    max-width: 45ch;
    font-size: 1.06rem;
    margin-bottom: 2rem;
}

.hero-actions,
.stream-links,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-panel,
.featured-inner,
.about-card,
.contact-copy,
.contact-form-wrap,
.album-inner,
.manifesto-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006)),
        linear-gradient(135deg, rgba(143, 92, 255, 0.06), transparent 42%);
    border: 1px solid var(--panel-border);
    box-shadow: var(--shadow);
}

.hero-panel::before,
.featured-inner::before,
.about-card::before,
.contact-form-wrap::before,
.contact-copy::before,
.album-inner::before,
.manifesto-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 12px;
    right: 12px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(143, 92, 255, 0.5), transparent);
}

.hero-panel {
    padding: 1.5rem;
    transform: translateY(2.5rem);
}

.hero-panel h2 {
    font-size: clamp(1.3rem, 2.3vw, 2rem);
    letter-spacing: 0.05em;
    color: rgba(243, 239, 233, 0.82);
}

.hero-panel p,
.hero-stat span {
    color: rgba(243, 239, 233, 0.42);
    font-size: 0.76rem;
}

.hero-stat {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat strong {
    display: block;
    font-family: var(--heading);
    font-size: 1.3rem;
    color: rgba(143, 92, 255, 0.88);
    letter-spacing: 0.08em;
}

.featured { padding: 2rem 0 4rem; }

.featured-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 2rem;
    padding: 2rem;
    transform: translateX(1.25rem);
}

.featured-title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 0.8rem; color: rgba(243, 239, 233, 0.72); }
.page-title { font-size: clamp(2rem, 5vw, 4.2rem); letter-spacing: 0.08em; }
.album-title { font-size: clamp(1.8rem, 4vw, 3.2rem); margin-bottom: 0.75rem; color: rgba(243, 239, 233, 0.74); }
.contact-copy h2 { font-size: clamp(1.4rem, 2.6vw, 2.1rem); letter-spacing: 0.06em; color: rgba(243, 239, 233, 0.72); }

.featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 1.4rem 0 1.7rem;
}

.featured-meta span,
.stream-btn {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.02);
}

.featured-meta span {
    padding: 0.45rem 0.8rem;
    color: rgba(243, 239, 233, 0.28);
    font-size: 0.62rem;
}

.featured-art a,
.release-item,
.album-art {
    display: block;
    position: relative;
    overflow: hidden;
}

.featured-art a::after,
.release-item::after,
.album-art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(143, 92, 255, 0.12), transparent 48%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.featured-art img,
.release-item img,
.album-art img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: grayscale(0.16) brightness(0.78) contrast(1.1);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.featured-art a:hover img,
.release-item:hover img,
.album-art:hover img {
    transform: scale(1.04);
    filter: grayscale(0) brightness(0.92) contrast(1.14);
}

.manifesto {
    padding: 2rem 0 4rem;
}

.manifesto-card {
    width: min(calc(100% - 2.5rem), 980px);
    margin: 0 auto;
    padding: 2.3rem 2rem;
    transform: translateX(-1.4rem);
}

.manifesto p {
    font-family: var(--heading);
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    line-height: 0.92;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(243, 239, 233, 0.52);
}

.releases { padding: 1rem 0 6rem; }

.releases-head {
    width: min(calc(100% - 2.5rem), var(--content-width));
    margin: 0 auto 1.8rem;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.releases-grid {
    width: min(calc(100% - 2.5rem), var(--content-width));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
}

.release-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #0b0b0f;
}

.release-item:nth-child(1) {
    transform: translateY(1.6rem);
}

.release-item:nth-child(2) {
    transform: translateY(-1.1rem);
}

.release-caption {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.1rem;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.94));
}

.release-caption strong {
    display: block;
    font-family: var(--heading);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(243, 239, 233, 0.72);
}

.release-caption span {
    color: rgba(243, 239, 233, 0.34);
    font-size: 0.66rem;
}

.page-header {
    padding: 9.5rem 0 3rem;
}

.page-header .shell {
    display: grid;
    gap: 0.8rem;
}

.about-description,
.about-manifesto,
.contact-section,
.album-section {
    padding-bottom: 4rem;
}

.about-card,
.contact-copy,
.contact-form-wrap,
.album-inner {
    padding: 2rem;
}

.about-card {
    width: min(calc(100% - 2.5rem), 900px);
    margin: 0 auto;
    transform: translateX(1.2rem);
}

.about-manifesto-inner {
    width: min(calc(100% - 2.5rem), 900px);
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.about-manifesto-inner p {
    padding: 1.25rem 1.2rem;
    border-left: 3px solid rgba(143, 92, 255, 0.4);
    background: rgba(255, 255, 255, 0.02);
    font-family: var(--heading);
    font-size: clamp(0.92rem, 2vw, 1.24rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-closing {
    color: rgba(243, 239, 233, 0.8) !important;
    border-left-color: var(--violet) !important;
    background: rgba(143, 92, 255, 0.08) !important;
}

.album-inner {
    display: grid;
    grid-template-columns: minmax(0, 410px) minmax(0, 1fr);
    gap: 2rem;
}

.album-section--reverse .album-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 410px);
}

.album-section--reverse .album-art {
    order: 2;
}

.album-art {
    scroll-margin-top: 100px;
}

.track-list {
    list-style: none;
    counter-reset: track;
    margin: 1.4rem 0 1.7rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.track-list li {
    counter-increment: track;
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0.78rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: var(--text-muted);
    font-size: 0.78rem;
}

.track-list li::before {
    content: counter(track, decimal-leading-zero);
    min-width: 1.8rem;
    font-family: var(--heading);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    color: var(--violet);
}

.track-list li:hover,
.track-list a:hover,
.track-list a:focus-visible,
.stream-btn:hover,
.stream-btn:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
    color: rgba(243, 239, 233, 0.82);
}

.stream-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.68rem 1rem;
    font-family: var(--heading);
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(243, 239, 233, 0.46);
}

.stream-btn:hover,
.stream-btn:focus-visible {
    border-color: var(--violet);
    background: var(--violet-soft);
}

.album-divider {
    width: min(calc(100% - 2.5rem), var(--content-width));
    margin: 0 auto 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
    gap: 2rem;
}

.contact-copy {
    transform: translateY(1.4rem);
}

.contact-form-wrap {
    transform: translateX(-1rem);
}

.contact-copy ul {
    margin-top: 1.4rem;
    list-style: none;
    display: grid;
    gap: 0.85rem;
}

.contact-copy li {
    display: flex;
    gap: 0.8rem;
    font-size: 0.78rem;
}

.contact-copy strong {
    min-width: 100px;
    font-family: var(--heading);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(243, 239, 233, 0.72);
}

.contact-form { display: grid; gap: 1.35rem; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-group { display: grid; gap: 0.45rem; }

.form-group label {
    font-family: var(--heading);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 52px;
    padding: 0.95rem 1rem;
    background: #09090b;
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(243, 239, 233, 0.82);
    font: inherit;
    font-size: 0.82rem;
}

.form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--violet);
    background: #111117;
    box-shadow: 0 0 0 3px rgba(143, 92, 255, 0.14);
}

.select-wrapper { position: relative; }
.select-wrapper::after {
    content: "v";
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-faint);
    pointer-events: none;
}

.form-group select { appearance: none; }
.form-group select option { background: #121218; color: var(--text); }
.contact-submit { justify-self: start; }

.footer {
    padding: 0 0 2.5rem;
}

.footer-shell {
    width: min(calc(100% - 2.5rem), var(--content-width));
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-links a {
    font-family: var(--heading);
    font-size: 0.66rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-faint);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px) scale(0.985);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.home-page .hero {
    padding: 9rem 0 3rem;
}

.home-page .hero::before {
    background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.46)), url("../images/background.jpg") center 18%/cover;
    filter: grayscale(0.04) brightness(0.74) contrast(1.02);
}

.home-page .hero-shell {
    min-height: calc(100vh - 12rem);
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    gap: 0.6rem;
}

.home-page .hero-content {
    max-width: 560px;
    margin-top: clamp(9rem, 26vh, 16.25rem);
    padding: 0;
    text-align: center;
}

.home-page .hero-content::before {
    display: none;
}

.home-page .hero-logo {
    width: min(264px, 45vw);
    margin: 0 auto 2rem;
    transform: none;
}

.home-page .eyebrow {
    display: block;
    font-size: 0.46rem;
    letter-spacing: 0.42em;
    color: rgba(243, 239, 233, 0.18);
    margin-bottom: 0.7rem;
}

.home-page .hero-manifesto {
    max-width: none;
    font-size: 0.76rem;
    line-height: 1.45;
    letter-spacing: 0.12em;
    text-transform: none;
    color: rgba(243, 239, 233, 0.58);
    margin: 0 auto 1.4rem;
}

.home-page .hero-copy {
    max-width: 34ch;
    margin: 0 auto 1.4rem;
    font-size: 0.66rem;
    line-height: 1.45;
    color: rgba(243, 239, 233, 0.22);
}

.home-page .hero-actions {
    justify-content: center;
}

.home-page .hero-actions .btn {
    min-height: 40px;
    padding: 0.72rem 1.15rem;
    font-size: 0.58rem;
}

.home-page .hero-panel {
    width: min(100%, 340px);
    padding: 1.1rem;
    transform: none;
}

.home-page .hero-panel .label {
    font-size: 0.54rem;
    color: rgba(143, 92, 255, 0.68);
}

.home-page .hero-panel h2 {
    font-size: 0.92rem;
    color: rgba(243, 239, 233, 0.52);
}

.home-page .hero-panel p,
.home-page .hero-stat span {
    font-size: 0.62rem;
    color: rgba(243, 239, 233, 0.24);
}

.home-page .hero-stat strong {
    font-size: 0.9rem;
    color: rgba(143, 92, 255, 0.72);
}

.home-page .featured-title,
.home-page .manifesto p,
.home-page .release-caption strong {
    color: rgba(243, 239, 233, 0.58);
}

.home-page .featured-desc,
.home-page .releases-copy,
.home-page .release-caption span {
    color: rgba(243, 239, 233, 0.28);
}

.home-page .featured-title {
    font-size: clamp(1.3rem, 3vw, 2rem);
}

.home-page .manifesto p {
    font-size: clamp(0.95rem, 2vw, 1.4rem);
}

@media (max-width: 900px) {
    .hero-shell,
    .featured-inner,
    .album-inner,
    .album-section--reverse .album-inner,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .featured-inner,
    .manifesto-card,
    .about-card,
    .contact-copy,
    .contact-form-wrap,
    .release-item,
    .release-item:nth-child(1),
    .release-item:nth-child(2),
    .home-page .hero-panel {
        transform: none;
    }

    .album-section--reverse .album-art { order: 0; }

    .releases-head,
    .footer-shell,
    .form-row {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        width: calc(100% - 1rem);
        margin-top: 0.5rem;
    }

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

    .nav-links {
        position: fixed;
        inset: 70px 0 0;
        padding: 2rem 1.4rem;
        background: linear-gradient(180deg, rgba(3, 3, 5, 0.96) 0%, rgba(2, 2, 4, 0.985) 100%);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(14px);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
        flex-direction: column;
        gap: 1.4rem;
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .nav-links.open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
        list-style: none;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.95rem 1rem;
        font-size: 1.1rem;
        background: rgba(0, 0, 0, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .releases-grid { grid-template-columns: 1fr; }
    .hero { min-height: auto; }
    .hero-content { padding-left: 0.75rem; }
    .home-page .hero-shell { min-height: auto; }
    .home-page .hero-content {
        margin-top: clamp(8.5rem, 22vh, 13rem);
        padding-left: 0;
    }
    .home-page .hero-logo { width: min(200px, 54vw); }
    .home-page .hero-manifesto { font-size: 0.76rem; }
}

@media (max-width: 540px) {
    .hero-actions,
    .stream-links,
    .footer-links {
        flex-direction: column;
        align-items: stretch;
    }

    .btn,
    .stream-btn,
    .contact-submit { width: 100%; }

    .featured-inner,
    .album-inner,
    .about-card,
    .contact-copy,
    .contact-form-wrap,
    .manifesto-card { padding: 1.35rem; }

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

    .home-page .hero-content {
        margin-top: 7.25rem;
    }
}
