:root {
    --ink: #071726;
    --ink-soft: #102b3f;
    --ink-muted: #35536a;
    --paper: #f6f3eb;
    --paper-deep: #ebe5d9;
    --white: #fff;
    --gold: #d49a35;
    --gold-soft: #f0c878;
    --aqua: #6fc8d5;
    --azure: #1787ae;
    --red: #c74234;
    --silver: #a7b1ba;
    --line: rgba(7, 23, 38, .14);
    --shadow: 0 24px 70px rgba(4, 18, 30, .16);
    --radius: 28px;
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Segoe UI", Inter, Arial, sans-serif;
    --content: min(1240px, calc(100vw - 48px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: .08em;
    text-underline-offset: .2em;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

.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;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ink);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    color: var(--white);
    background: linear-gradient(180deg, rgba(4, 16, 27, .86), rgba(4, 16, 27, 0));
    transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
    background: rgba(5, 20, 33, .95);
    box-shadow: 0 1px 0 rgba(255, 255, 255, .1);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    width: var(--content);
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.brand__mark {
    width: 42px;
    height: 42px;
    color: var(--gold-soft);
}

.brand__mark svg {
    width: 100%;
    height: 100%;
}

.brand__name {
    font-family: var(--serif);
    font-size: clamp(1.3rem, 1.8vw, 1.75rem);
    font-style: italic;
    letter-spacing: .02em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
    margin-left: auto;
}

.primary-nav a {
    position: relative;
    color: rgba(255, 255, 255, .82);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 -9px;
    height: 1px;
    background: var(--gold-soft);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    transform: scaleX(1);
}

.language-switch {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
}

.language-switch button {
    width: 40px;
    min-height: 34px;
    border: 0;
    color: rgba(255, 255, 255, .62);
    background: transparent;
    cursor: pointer;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .05em;
}

.language-switch button[aria-pressed="true"] {
    color: var(--ink);
    background: var(--gold-soft);
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 30%, rgba(26, 128, 164, .42), transparent 33%),
        radial-gradient(circle at 17% 75%, rgba(212, 154, 53, .18), transparent 28%),
        linear-gradient(135deg, #061827 0%, #082c46 48%, #071726 100%);
    display: grid;
    place-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

.hero__orb {
    position: absolute;
    border: 1px solid rgba(111, 200, 213, .24);
    border-radius: 50%;
}

.hero__orb--one {
    width: 70vw;
    height: 70vw;
    top: -39vw;
    right: -14vw;
}

.hero__orb--two {
    width: 45vw;
    height: 45vw;
    bottom: -30vw;
    left: -15vw;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: var(--content);
    padding: 160px min(49vw, 700px) 120px 0;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .22em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.art-teaser h2,
.manifesto blockquote,
.about-grid h2,
.contact-banner h2 {
    margin: 0;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -.035em;
    line-height: .98;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3.6rem, 7.2vw, 7.6rem);
}

.hero__lede {
    max-width: 660px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

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

.button--primary {
    color: var(--ink);
    background: var(--gold-soft);
}

.button--primary:hover {
    background: var(--white);
}

.button--ghost {
    color: inherit;
    border-color: currentColor;
    background: transparent;
}

.button--ghost:hover {
    color: var(--ink);
    background: var(--white);
}

.hero__facts {
    display: flex;
    gap: clamp(28px, 4vw, 60px);
    margin-top: 60px;
}

.hero__facts div {
    display: grid;
    gap: 2px;
}

.hero__facts strong {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
}

.hero__facts span {
    color: rgba(255, 255, 255, .54);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero__cover-stack {
    position: absolute;
    z-index: 1;
    width: min(44vw, 650px);
    height: min(58vw, 760px);
    top: 14%;
    right: max(3vw, calc((100vw - 1440px) / 2));
}

.hero-cover {
    position: absolute;
    width: 62%;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .42);
    aspect-ratio: 1;
    transform-origin: center;
}

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

.hero-cover--1 {
    z-index: 3;
    top: 3%;
    right: 5%;
    transform: rotate(4deg);
}

.hero-cover--2 {
    z-index: 2;
    bottom: 3%;
    left: 0;
    transform: rotate(-7deg);
}

.hero-cover--3 {
    z-index: 1;
    right: -4%;
    bottom: 5%;
    transform: rotate(10deg) scale(.84);
}

.hero__scroll {
    position: absolute;
    z-index: 3;
    bottom: 28px;
    left: 50%;
    color: rgba(255, 255, 255, .64);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .68rem;
    letter-spacing: .18em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.section {
    width: var(--content);
    margin: 0 auto;
    padding: clamp(90px, 10vw, 150px) 0;
}

.section--catalogue {
    position: relative;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 56px;
}

.section-heading h2,
.art-teaser h2,
.about-grid h2,
.contact-banner h2 {
    font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.section-heading > p,
.art-teaser__copy > p,
.about-grid__copy,
.page-hero__inner > p {
    color: var(--ink-muted);
    font-size: 1.05rem;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
}

.album-card {
    grid-column: span 2;
    min-width: 0;
}

.album-card:nth-child(4),
.album-card:nth-child(5) {
    grid-column: span 3;
}

.album-card__cover {
    position: relative;
    overflow: hidden;
    background: var(--paper-deep);
    box-shadow: 0 18px 44px rgba(7, 23, 38, .13);
    display: block;
    aspect-ratio: 1;
}

.album-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .7, .2, 1);
}

.album-card:nth-child(5) .album-card__cover img {
    object-position: center 48%;
}

.album-card__cover:hover img {
    transform: scale(1.035);
}

.album-card__action {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(7, 23, 38, .84);
    display: grid;
    place-items: center;
    backdrop-filter: blur(8px);
}

.album-card__body {
    padding: 22px 4px 0;
}

.album-card__meta {
    color: var(--ink-muted);
    display: flex;
    justify-content: space-between;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.album-card h3 {
    margin: 10px 0 8px;
    font-family: var(--serif);
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
    font-weight: 400;
    line-height: 1.05;
}

.album-card p {
    margin: 0;
    color: var(--ink-muted);
    font-size: .92rem;
}

.upcoming-album {
    margin-top: 72px;
    padding: clamp(22px, 4vw, 48px);
    border-radius: var(--radius);
    color: var(--white);
    background:
        radial-gradient(circle at 78% 20%, rgba(212, 154, 53, .2), transparent 30%),
        linear-gradient(135deg, #061827, #0b334b);
    display: grid;
    grid-template-columns: minmax(240px, 420px) minmax(0, 1fr);
    gap: clamp(34px, 7vw, 90px);
    align-items: center;
    overflow: hidden;
}

.upcoming-album__cover {
    position: relative;
    margin: 0;
}

.upcoming-album__cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .32);
}

.upcoming-album__badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 9px 15px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    color: var(--white);
    background: rgba(5, 20, 33, .86);
    backdrop-filter: blur(8px);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.upcoming-album__copy .eyebrow {
    color: var(--aqua);
}

.upcoming-album__copy h2 {
    margin: 12px 0 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 7vw, 7rem);
    font-weight: 400;
    line-height: .92;
}

.upcoming-album__description {
    max-width: 660px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: 1.02rem;
}

.section-cta {
    margin-top: 54px;
    text-align: right;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link span[aria-hidden] {
    font-size: 1.3rem;
    transition: transform .2s ease;
}

.text-link:hover span[aria-hidden] {
    transform: translateX(5px);
}

.art-teaser {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: clamp(50px, 8vw, 120px);
    align-items: center;
    border-top: 1px solid var(--line);
}

.art-teaser__copy .button {
    margin-top: 18px;
}

.art-teaser__mosaic {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
}

.art-teaser__mosaic figure {
    margin: 0;
    overflow: hidden;
    background: #d8d3ca;
}

.art-teaser__mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.art-teaser__mosaic figure:hover img {
    transform: scale(1.035);
}

.art-teaser__large {
    grid-row: 1 / 3;
    min-height: 650px;
}

.manifesto {
    position: relative;
    overflow: hidden;
    padding: clamp(100px, 13vw, 190px) max(24px, calc((100vw - 1240px) / 2));
    color: var(--white);
    background:
        radial-gradient(circle at 90% 0, rgba(111, 200, 213, .22), transparent 34%),
        linear-gradient(130deg, #061522, #0c3147);
    text-align: center;
}

.manifesto::after {
    content: "≈";
    position: absolute;
    right: 5vw;
    bottom: -12vw;
    color: rgba(255, 255, 255, .035);
    font-family: var(--serif);
    font-size: 42vw;
    line-height: 1;
}

.manifesto blockquote {
    position: relative;
    z-index: 1;
    max-width: 1020px;
    margin: 0 auto 42px;
    font-size: clamp(3rem, 6vw, 6.5rem);
}

.text-link--light {
    position: relative;
    z-index: 1;
    color: var(--gold-soft);
}

.page-hero {
    position: relative;
    min-height: 68vh;
    padding: 180px 0 110px;
    color: var(--white);
    background:
        radial-gradient(circle at 75% 20%, rgba(111, 200, 213, .22), transparent 28%),
        linear-gradient(130deg, #061522, #0b334b);
    display: grid;
    align-items: end;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: 7vw;
    bottom: 5vw;
    width: min(30vw, 430px);
    height: min(30vw, 430px);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 50%;
    box-shadow:
        0 0 0 40px rgba(255, 255, 255, .025),
        0 0 0 80px rgba(255, 255, 255, .02);
}

.page-hero--art {
    background:
        radial-gradient(circle at 75% 20%, rgba(212, 154, 53, .25), transparent 28%),
        linear-gradient(130deg, #18120f, #413024);
}

.page-hero--about {
    background:
        radial-gradient(circle at 75% 20%, rgba(212, 154, 53, .2), transparent 28%),
        linear-gradient(130deg, #0b1821, #29333a);
}

.page-hero--contact {
    background:
        radial-gradient(circle at 75% 20%, rgba(111, 200, 213, .24), transparent 28%),
        linear-gradient(130deg, #061522, #173d4f);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    width: var(--content);
    margin: 0 auto;
}

.page-hero h1 {
    max-width: 980px;
    font-size: clamp(3.5rem, 7vw, 7.2rem);
}

.page-hero__inner > p:last-child {
    max-width: 700px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .7);
}

.discography {
    padding-top: 58px;
}

.album-jump {
    position: sticky;
    z-index: 20;
    top: 88px;
    overflow-x: auto;
    margin: 0 0 70px;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(246, 243, 235, .92);
    display: flex;
    gap: 6px;
    scrollbar-width: none;
    backdrop-filter: blur(16px);
}

.album-jump::-webkit-scrollbar {
    display: none;
}

.album-jump a {
    padding: 8px 17px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.album-jump a:hover {
    color: var(--white);
    background: var(--ink);
}

.album-detail {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: start;
    padding: 86px 0;
    border-top: 1px solid var(--line);
    scroll-margin-top: 140px;
}

.album-detail:first-of-type {
    border-top: 0;
}

.album-detail__cover {
    position: sticky;
    top: 160px;
}

.album-detail__cover img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow);
}

.album-detail--silver .album-detail__cover img {
    object-fit: contain;
    background: #c7cbd0;
}

.album-detail__number {
    margin-bottom: 12px;
    color: var(--ink-muted);
    font-family: var(--serif);
    font-size: 1.2rem;
}

.album-detail__heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.album-detail__heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(3rem, 5vw, 5.8rem);
    font-weight: 400;
    line-height: .95;
}

.duration {
    color: var(--ink-muted);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.album-detail__description {
    max-width: 760px;
    margin: 26px 0 38px;
    color: var(--ink-muted);
    font-size: 1.05rem;
}

.track-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.track-list li {
    min-height: 64px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 62px auto;
    gap: 12px;
    align-items: center;
}

.track-list__number,
.track-list__duration {
    color: var(--ink-muted);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.track-list__title {
    min-width: 0;
    overflow: hidden;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-button {
    min-width: 88px;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.preview-button:hover,
.preview-button.is-playing {
    color: var(--white);
    border-color: var(--ink);
    background: var(--ink);
}

.archive-note {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .42);
    display: flex;
    gap: 18px;
}

.archive-note > span {
    color: var(--gold);
    font-size: 1.7rem;
}

.archive-note p {
    margin: 0;
}

.audio-dock {
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 24px;
    left: 24px;
    max-width: 920px;
    min-height: 88px;
    margin: 0 auto;
    padding: 15px 20px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    background: rgba(5, 20, 33, .96);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
    display: grid;
    grid-template-columns: 54px minmax(160px, 1fr) minmax(160px, 1.5fr) auto 34px;
    gap: 17px;
    align-items: center;
    backdrop-filter: blur(18px);
}

.audio-dock__toggle,
.audio-dock__close {
    border: 0;
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.audio-dock__toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--ink);
    background: var(--gold-soft);
}

.audio-dock__info {
    min-width: 0;
    display: grid;
}

.audio-dock__eyebrow,
.audio-dock__info > span:last-child {
    color: rgba(255, 255, 255, .55);
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.audio-dock__info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.audio-dock__timeline {
    height: 4px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255, 255, 255, .16);
}

.audio-dock__progress {
    width: 0;
    height: 100%;
    background: var(--gold-soft);
    display: block;
}

.audio-dock__time {
    font-size: .7rem;
    font-variant-numeric: tabular-nums;
}

.audio-dock__close {
    font-size: 1.6rem;
}

.gallery-section {
    padding-top: 80px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 42px 24px;
    align-items: start;
}

.gallery-card {
    grid-column: span 4;
    margin: 0;
}

.gallery-card--2 {
    margin-top: 90px;
}

.gallery-card button {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: var(--paper-deep);
    cursor: zoom-in;
}

.gallery-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: transform .55s ease;
}

.gallery-card--3 img {
    height: 420px;
}

.gallery-card button:hover img {
    transform: scale(1.025);
}

.gallery-card__zoom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(7, 23, 38, .84);
    display: grid;
    place-items: center;
}

.gallery-card figcaption {
    padding: 15px 0 0;
    display: grid;
}

.gallery-card figcaption strong {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 400;
}

.gallery-card figcaption span {
    color: var(--ink-muted);
    font-size: .78rem;
}

.lightbox {
    width: min(1100px, calc(100vw - 40px));
    max-height: calc(100vh - 40px);
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 16px;
    color: var(--white);
    background: #050d14;
}

.lightbox::backdrop {
    background: rgba(2, 8, 13, .88);
    backdrop-filter: blur(8px);
}

.lightbox img {
    width: 100%;
    max-height: calc(100vh - 110px);
    object-fit: contain;
}

.lightbox p {
    margin: 0;
    padding: 14px 20px;
}

.lightbox__close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    background: rgba(0, 0, 0, .7);
    cursor: pointer;
    font-size: 1.6rem;
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(50px, 10vw, 150px);
}

.about-grid__copy {
    font-size: 1.16rem;
}

.about-grid__copy p:first-child {
    margin-top: 0;
}

.values {
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.values article {
    padding: 42px;
    background: var(--paper);
}

.values article > span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.35rem;
}

.values h3 {
    margin: 58px 0 10px;
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
}

.values p {
    margin: 0;
    color: var(--ink-muted);
}

.contact-banner {
    width: var(--content);
    margin: 0 auto 120px;
    padding: clamp(48px, 7vw, 90px);
    color: var(--white);
    background:
        radial-gradient(circle at 90% 0, rgba(111, 200, 213, .2), transparent 30%),
        var(--ink);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
}

.contact-banner h2 {
    max-width: 760px;
}

.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(50px, 9vw, 130px);
}

.contact-card {
    padding: clamp(34px, 5vw, 70px);
    color: var(--white);
    background: var(--ink);
}

.contact-card__email {
    display: block;
    overflow-wrap: anywhere;
    margin: 20px 0;
    color: var(--gold-soft);
    font-family: var(--serif);
    font-size: clamp(1.7rem, 3.5vw, 3.5rem);
}

.contact-card .button {
    margin-top: 22px;
}

.contact-notes {
    border-top: 1px solid var(--line);
}

.contact-notes article {
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
}

.contact-notes article > span {
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.25rem;
}

.contact-notes h2 {
    margin: 0 0 8px;
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
}

.contact-notes p {
    margin: 0;
    color: var(--ink-muted);
}

.page-shell,
.editorial-page {
    width: var(--content);
    margin: 0 auto;
}

.page-shell {
    min-height: 70vh;
    padding: 180px 0 120px;
}

.editorial-page {
    max-width: 840px;
}

.editorial-page h1 {
    margin: 0 0 40px;
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 400;
}

.site-footer {
    color: rgba(255, 255, 255, .72);
    background: #040f18;
}

.site-footer__inner {
    width: var(--content);
    margin: 0 auto;
    padding: 68px 0 34px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
}

.site-footer__brand {
    margin: 0;
    color: var(--white);
    font-family: var(--serif);
    font-size: 2rem;
    font-style: italic;
}

.site-footer__tagline {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .45);
}

.site-footer__links {
    display: grid;
    gap: 6px;
    text-align: right;
}

.site-footer__links a {
    text-decoration: none;
}

.site-footer__legal {
    grid-column: 1 / -1;
    margin: 30px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .36);
    font-size: .72rem;
}

@media (max-width: 1100px) {
    .primary-nav {
        gap: 16px;
    }

    .primary-nav a {
        font-size: .68rem;
    }

    .hero__inner {
        padding-right: 46vw;
    }

    .hero__cover-stack {
        width: 44vw;
    }

    .album-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .album-card,
    .album-card:nth-child(4),
    .album-card:nth-child(5) {
        grid-column: auto;
    }

    .album-card:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        align-items: center;
    }

    .gallery-card {
        grid-column: span 6;
    }

    .gallery-card--2 {
        margin-top: 0;
    }
}

@media (max-width: 860px) {
    .upcoming-album {
        grid-template-columns: 1fr;
    }

    .upcoming-album__cover {
        max-width: 560px;
    }

    :root {
        --content: min(100% - 34px, 720px);
    }

    .site-header__inner {
        min-height: 74px;
    }

    .nav-toggle {
        position: relative;
        z-index: 3;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, .22);
        border-radius: 50%;
        background: transparent;
        display: grid;
        place-items: center;
    }

    .nav-toggle__lines,
    .nav-toggle__lines::before,
    .nav-toggle__lines::after {
        width: 18px;
        height: 1px;
        background: var(--white);
        display: block;
        transition: transform .2s ease;
    }

    .nav-toggle__lines {
        position: relative;
    }

    .nav-toggle__lines::before,
    .nav-toggle__lines::after {
        content: "";
        position: absolute;
        left: 0;
    }

    .nav-toggle__lines::before {
        top: -6px;
    }

    .nav-toggle__lines::after {
        top: 6px;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__lines {
        background: transparent;
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__lines::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__lines::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .primary-nav {
        position: fixed;
        inset: 0;
        padding: 120px 30px 40px;
        color: var(--white);
        background: rgba(4, 15, 24, .98);
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

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

    .primary-nav a {
        font-family: var(--serif);
        font-size: clamp(2rem, 9vw, 4rem);
        font-weight: 400;
        letter-spacing: -.02em;
        text-transform: none;
    }

    .language-switch {
        position: relative;
        z-index: 3;
    }

    .hero {
        min-height: auto;
        padding-top: 74px;
        display: block;
    }

    .hero__inner {
        padding: 80px 0 50px;
    }

    .hero h1 {
        font-size: clamp(3.4rem, 14vw, 6rem);
    }

    .hero__cover-stack {
        position: relative;
        width: var(--content);
        height: min(100vw, 660px);
        top: auto;
        right: auto;
        margin: 0 auto 90px;
    }

    .hero__scroll {
        display: none;
    }

    .section-heading,
    .art-teaser,
    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .album-detail {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .album-detail__cover {
        position: static;
        max-width: 560px;
    }

    .art-teaser__large {
        min-height: 480px;
    }

    .values {
        grid-template-columns: 1fr;
    }

    .values h3 {
        margin-top: 28px;
    }

    .contact-banner {
        align-items: flex-start;
        flex-direction: column;
    }

    .audio-dock {
        grid-template-columns: 50px minmax(0, 1fr) 32px;
    }

    .audio-dock__timeline,
    .audio-dock__time {
        display: none;
    }
}

@media (max-width: 620px) {
    :root {
        --content: calc(100% - 28px);
        --radius: 20px;
    }

    body {
        font-size: 16px;
    }

    .brand__name {
        font-size: 1.25rem;
    }

    .brand__mark {
        width: 36px;
        height: 36px;
    }

    .language-switch button {
        width: 34px;
        min-height: 32px;
    }

    .hero__inner {
        padding-top: 64px;
    }

    .hero__lede {
        margin-top: 22px;
    }

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

    .button {
        width: 100%;
    }

    .hero__facts {
        justify-content: space-between;
        gap: 14px;
    }

    .hero__cover-stack {
        height: 115vw;
    }

    .hero-cover {
        width: 72%;
    }

    .album-grid {
        grid-template-columns: 1fr;
    }

    .album-card:last-child {
        grid-column: auto;
        display: block;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2,
    .art-teaser h2,
    .about-grid h2,
    .contact-banner h2 {
        font-size: 2.7rem;
    }

    .art-teaser__mosaic {
        grid-template-columns: 1fr 1fr;
    }

    .art-teaser__large {
        min-height: 390px;
    }

    .manifesto blockquote {
        font-size: 2.8rem;
    }

    .page-hero {
        min-height: 70vh;
        padding: 140px 0 70px;
    }

    .page-hero h1 {
        font-size: 3.5rem;
    }

    .album-jump {
        top: 74px;
        margin-bottom: 30px;
        border-radius: 14px;
    }

    .album-detail {
        padding: 62px 0;
    }

    .album-detail__heading {
        align-items: start;
        flex-direction: column;
    }

    .album-detail__heading h2 {
        font-size: 3.25rem;
    }

    .track-list li {
        grid-template-columns: 34px minmax(0, 1fr) auto;
    }

    .track-list__duration {
        display: none;
    }

    .track-list__title {
        font-size: .9rem;
    }

    .preview-button {
        min-width: 42px;
        width: 42px;
        padding: 0;
    }

    .preview-button span:last-child {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gallery-card {
        grid-column: auto;
    }

    .gallery-card img,
    .gallery-card--3 img {
        height: auto;
        max-height: 600px;
    }

    .contact-banner {
        margin-bottom: 70px;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .site-footer__links {
        text-align: left;
    }

    .site-footer__legal {
        grid-column: auto;
    }

    .audio-dock {
        right: 12px;
        bottom: 12px;
        left: 12px;
        min-height: 78px;
        padding: 12px;
        gap: 10px;
    }
}

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