:root {
    --black: #0A0A0A;
    --black-soft: #111111;
    --gold: #D8B46A;
    --amber: #E7A94B;
    --off-white: #F4F2ED;
    --grey: #A7A39A;
    --line: rgba(216, 180, 106, 0.25);
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--off-white);
    background: var(--black);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.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;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    transform: translateY(-160%);
    background: var(--gold);
    color: var(--black);
    padding: 10px 14px;
    text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease;
}
.site-header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    border-color: rgba(216, 180, 106, 0.16);
    backdrop-filter: blur(14px);
}
.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    letter-spacing: .28em;
    color: var(--gold);
    text-decoration: none;
    font-size: .86rem;
}
.main-nav { display: flex; gap: 34px; }
.main-nav a {
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .72rem;
    color: rgba(244, 242, 237, .76);
    transition: color .2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--gold); }
.nav-toggle { display: none; }

.hero {
    min-height: 100svh;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 85%, rgba(216, 180, 106, .08), transparent 32%),
        linear-gradient(180deg, #020202 0%, var(--black) 100%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 35%, black 70%, transparent 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 70px;
}
.hero-logo {
    width: min(100%, 1120px);
    margin: 0 auto;
}
.hero-statement {
    margin: 4px auto 0;
    max-width: 660px;
    font-size: clamp(1rem, 1.6vw, 1.24rem);
    font-weight: 300;
    letter-spacing: .045em;
    color: rgba(244, 242, 237, .78);
}
.hero-actions {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--amber); color: var(--black); }
.button-primary:hover { background: var(--gold); }
.button-secondary { border-color: rgba(216,180,106,.55); color: var(--off-white); background: rgba(10,10,10,.35); }
.button-secondary:hover { border-color: var(--gold); }
.scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 54px;
    border: 1px solid rgba(216, 180, 106, .4);
    border-radius: 20px;
}
.scroll-cue span {
    position: absolute;
    width: 4px;
    height: 8px;
    border-radius: 4px;
    background: var(--gold);
    top: 10px;
    left: 14px;
    animation: scroll 1.8s infinite;
}
@keyframes scroll { 0% { transform: translateY(0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translateY(22px); opacity: 0; } }

.section { padding: 120px 0; }
.section-dark { background: #070707; }
.section-heading { max-width: 760px; margin: 0 auto 54px; text-align: center; }
.section-heading-left { margin-left: 0; text-align: left; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-transform: uppercase;
    letter-spacing: .24em;
    color: var(--gold);
    font-size: .72rem;
    font-weight: 500;
}
.eyebrow::before { content: ""; width: 42px; height: 1px; background: var(--gold); }
h2 {
    margin: 18px 0 18px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.12;
    font-weight: 300;
    letter-spacing: -.02em;
}
h3 { font-family: "Montserrat", sans-serif; font-weight: 400; }
.section-heading p, .about-copy p, .live-copy p, .contact-intro p { color: rgba(244, 242, 237, .67); }

.release-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.release-card {
    border: 1px solid rgba(216, 180, 106, .16);
    background: var(--black-soft);
    transition: transform .25s ease, border-color .25s ease;
}
.release-card:hover { transform: translateY(-6px); border-color: rgba(216,180,106,.48); }
.release-art {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    background:
        linear-gradient(145deg, rgba(216,180,106,.18), transparent 38%),
        radial-gradient(circle at 70% 30%, rgba(231,169,75,.18), transparent 25%),
        #090909;
    border-bottom: 1px solid rgba(216, 180, 106, .13);
}
.release-art span {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: .15em;
    color: var(--gold);
    opacity: .82;
}
.release-content { padding: 26px; }
.release-content h3 { margin: 6px 0 10px; font-size: 1.35rem; }
.release-content p { color: rgba(244,242,237,.62); font-size: .94rem; }
.release-type { margin: 0; text-transform: uppercase; letter-spacing: .16em; color: var(--gold) !important; font-size: .67rem !important; }
.text-link { display: inline-block; margin-top: 8px; color: var(--gold); text-decoration: none; font-size: .82rem; }
.text-link-muted { opacity: .5; }
.platform-row { margin-top: 40px; display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; }
.platform-row a, .footer-socials a { text-decoration: none; color: rgba(244,242,237,.58); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
a[aria-disabled="true"] { pointer-events: none; opacity: .42; }

.about-section { background: var(--black); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.visual-frame {
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216,180,106,.22);
    background: linear-gradient(180deg, #080808 0%, #111 55%, #050505 100%);
}
.visual-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 70%, rgba(231,169,75,.22), transparent 18%);
}
.visual-horizon { position: absolute; left: 8%; right: 8%; bottom: 28%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.visual-light { position: absolute; width: 56%; height: 56%; left: 22%; bottom: -14%; border-radius: 50%; background: radial-gradient(circle, rgba(231,169,75,.28), rgba(231,169,75,.02) 56%, transparent 70%); }
.visual-frame span { position: absolute; left: 38px; bottom: 38px; font-family: "Montserrat", sans-serif; color: var(--gold); font-size: clamp(1.2rem, 2.5vw, 2.4rem); line-height: 1.25; letter-spacing: .16em; font-weight: 300; }
.lead { font-size: 1.18rem; color: var(--off-white) !important; }
.signature-line { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--gold); font-family: "Montserrat", sans-serif; letter-spacing: .08em; }

.live-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.feature-list { list-style: none; padding: 0; margin: 28px 0 34px; }
.feature-list li { position: relative; padding: 12px 0 12px 30px; border-bottom: 1px solid rgba(216,180,106,.12); }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 22px; width: 12px; height: 1px; background: var(--gold); }
.quote-card { padding: 56px; border: 1px solid rgba(216,180,106,.28); background: linear-gradient(145deg, rgba(216,180,106,.08), transparent 45%); }
.quote-card blockquote { margin: 0 0 22px; font-family: "Montserrat", sans-serif; font-size: clamp(1.7rem, 3vw, 3rem); line-height: 1.3; font-weight: 300; }
.quote-card span { color: var(--gold); text-transform: uppercase; letter-spacing: .15em; font-size: .7rem; }

.contact-section { background: #0d0d0d; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 100px); }
.contact-details { margin-top: 34px; display: grid; gap: 6px; }
.contact-details span { color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; }
.contact-details a { text-decoration: none; font-size: 1.05rem; }
.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { text-transform: uppercase; letter-spacing: .13em; color: rgba(244,242,237,.63); font-size: .68rem; }
.contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(216,180,106,.22);
    background: #080808;
    color: var(--off-white);
    padding: 14px 16px;
    border-radius: 0;
    outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.contact-form .button { justify-self: start; }
.honeypot { position: absolute; left: -9999px; }
.form-message { padding: 14px 16px; border: 1px solid; }
.form-message.success { border-color: rgba(108, 193, 130, .5); color: #b9e8c5; }
.form-message.error { border-color: rgba(211, 99, 99, .55); color: #efb6b6; }

.site-footer { border-top: 1px solid rgba(216,180,106,.14); background: #050505; padding: 34px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.footer-inner > div:first-child { display: grid; gap: 3px; }
.footer-inner strong { color: var(--gold); letter-spacing: .18em; font-family: "Montserrat", sans-serif; font-weight: 400; font-size: .78rem; }
.footer-inner span, .footer-inner p { color: rgba(244,242,237,.44); font-size: .72rem; }
.footer-inner p { text-align: right; margin: 0; }
.footer-socials { display: flex; gap: 18px; }

@media (max-width: 900px) {
    .section { padding: 90px 0; }
    .release-grid { grid-template-columns: 1fr; }
    .release-card { display: grid; grid-template-columns: 220px 1fr; }
    .about-grid, .live-grid, .contact-grid { grid-template-columns: 1fr; }
    .about-visual { max-width: 620px; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }
    .footer-inner > div:first-child { justify-items: center; }
    .footer-inner p { text-align: center; }
    .footer-socials { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 700px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .header-inner { min-height: 66px; }
    .nav-toggle {
        width: 42px;
        height: 42px;
        display: grid;
        place-content: center;
        gap: 5px;
        border: 0;
        background: transparent;
        cursor: pointer;
    }
    .nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 1px; background: var(--gold); transition: transform .2s ease, opacity .2s ease; }
    .nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .main-nav {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        background: rgba(10,10,10,.98);
        border-bottom: 1px solid rgba(216,180,106,.18);
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
        transition: transform .2s ease, opacity .2s ease;
    }
    .main-nav.open { transform: scaleY(1); opacity: 1; }
    .main-nav a { padding: 16px 24px; border-top: 1px solid rgba(216,180,106,.09); }
    .hero { min-height: 90svh; }
    .hero-logo { width: 112%; max-width: none; margin-left: -6%; }
    .hero-statement { max-width: 92%; }
    .scroll-cue { display: none; }
    .release-card { display: block; }
    .form-row { grid-template-columns: 1fr; }
    .quote-card { padding: 36px 28px; }
    .visual-frame span { left: 24px; bottom: 24px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* Self-hosted release previews */
.release-audio {
    display: block;
    width: 100%;
    margin-top: 1.25rem;
    accent-color: #D8B46A;
}

.release-audio:focus-visible {
    outline: 2px solid #E7A94B;
    outline-offset: 4px;
}

/* Release cover artwork */
.release-art {
    overflow: hidden;
}

.release-cover {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.release-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
}
