:root {
    --ink: #efe8dc;
    --ink-muted: #c9bfc3;
    --ink-dim: #8b8378;
    --night: #0b0a0d;
    --night-soft: #151016;
    --wine: #7a2f55;
    --rose: #c98fae;
    --line: rgb(239 232 220 / 0.14);
    --display: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
    --body: "EB Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
    --utility: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    --page: min(84vw, 1180px);
}

/* Les navigateurs compatibles conservent une continuité visuelle entre deux
   pages. Les animations restent purement progressives : la navigation garde
   son fonctionnement normal partout ailleurs. */
@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: page-leave 180ms cubic-bezier(.4, 0, 1, 1) both;
}
::view-transition-new(root) {
    animation: page-enter 520ms cubic-bezier(.16, 1, .3, 1) both;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--night); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--night);
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
html.motion-ready body { animation: page-load 480ms cubic-bezier(.16, 1, .3, 1) both; }
body.nav-open { overflow: hidden; }
::selection { color: var(--ink); background: var(--wine); }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
    position: fixed;
    z-index: 99999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--night);
    background: var(--ink);
    transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 4px; }

.site-header {
    position: fixed;
    z-index: 60;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 22px 6%;
    background: linear-gradient(to bottom, rgb(11 10 13 / 0.92), rgb(11 10 13 / 0.62) 72%, transparent);
    backdrop-filter: blur(8px);
    transition: min-height 250ms ease, background 250ms ease;
}
.site-header.is-scrolled {
    min-height: 70px;
    background: rgb(11 10 13 / 0.9);
    border-bottom: 1px solid var(--line);
}
.brand {
    font-family: var(--display);
    font-size: 20px;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}
.header-actions,
.site-nav,
.language-switcher { display: flex; align-items: center; }
.header-actions { gap: clamp(20px, 2vw, 32px); }
.site-nav { gap: clamp(22px, 2.5vw, 38px); }
.site-nav a {
    position: relative;
    color: var(--ink-muted);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
}
.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--rose);
    content: "";
    transform: scaleX(0);
    transition: transform 220ms ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--rose); }
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.language-switcher {
    gap: 13px;
    padding-left: clamp(18px, 1.8vw, 28px);
    color: var(--ink-dim);
    border-left: 1px solid var(--line);
    font-family: var(--display);
    font-size: 12px;
    letter-spacing: .06em;
}
.language-switcher button {
    padding: 3px 0;
    color: inherit;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
    letter-spacing: inherit;
}
.language-switcher button:hover,
.language-switcher button[aria-current="true"] { color: var(--rose); }
.language-switcher button[aria-current="true"] { cursor: default; }
.language-switcher.translation-unavailable button:not([aria-current="true"]) {
    opacity: .45;
}
.language-switcher.is-translating { cursor: progress; }
.language-switcher.is-translating button { pointer-events: none; }
.nav-toggle {
    display: none;
    color: var(--ink);
    border: 0;
    background: transparent;
    font-family: var(--utility);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    padding: 120px 6% 11vh;
    place-items: end center;
    overflow: hidden;
    text-align: center;
    isolation: isolate;
}
.hero::after {
    position: absolute;
    z-index: 0;
    right: 0;
    bottom: -1px;
    left: 0;
    height: clamp(110px, 17vh, 190px);
    background: linear-gradient(to bottom, transparent, rgb(11 10 13 / .82) 72%, var(--night));
    content: "";
    pointer-events: none;
}
.hero-media,
.hero-wash,
.hero-particles { position: absolute; inset: 0; }
.hero-media {
    z-index: -4;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0) scale(1.012);
    transform-origin: center;
}
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(.5) brightness(.72) contrast(1.08);
}
.motion-ready .hero-media {
    animation: hero-ken-burns 22s cubic-bezier(.4, 0, .2, 1) infinite alternate;
    animation-play-state: paused;
    will-change: transform;
}
.motion-ready .hero-media.is-active { animation-play-state: running; }
.hero-motion-active .site-header {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}
.hero-wash {
    z-index: -3;
    background:
        radial-gradient(circle at 50% 38%, rgb(91 34 67 / 0.18), transparent 46%),
        linear-gradient(to bottom, rgb(11 10 13 / 0.28), rgb(11 10 13 / 0.1) 42%, rgb(11 10 13 / 0.46)),
        rgb(26 10 22 / 0.16);
    mix-blend-mode: normal;
}
.hero-orbit {
    position: absolute;
    z-index: -1;
    top: 37%;
    left: 50%;
    width: min(52vw, 560px);
    aspect-ratio: 1;
    border: 1px solid rgb(201 143 174 / 0.18);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.hero-orbit::before {
    position: absolute;
    inset: -1px;
    border: 1px solid transparent;
    border-top-color: rgb(201 143 174 / 0.55);
    border-right-color: rgb(201 143 174 / 0.14);
    border-radius: inherit;
    content: "";
}
.motion-ready .hero-orbit::before {
    animation: orbit-drift 18s cubic-bezier(.4, 0, .2, 1) infinite alternate;
}
.particle {
    position: absolute;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background: var(--color);
    box-shadow: 0 0 8px var(--color);
    animation: twinkle var(--duration) ease-in-out var(--delay) infinite;
}
.hero-kicker {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    color: var(--rose);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}
.hero-corner {
    position: absolute;
    z-index: 2;
    width: 34px;
    height: 34px;
    opacity: .62;
    pointer-events: none;
}
.corner-tl { top: 104px; left: 2.2%; border-top: 1px solid var(--rose); border-left: 1px solid var(--rose); }
.corner-tr { top: 104px; right: 2.2%; border-top: 1px solid var(--rose); border-right: 1px solid var(--rose); }
.corner-bl { bottom: 52px; left: 2.2%; border-bottom: 1px solid var(--rose); border-left: 1px solid var(--rose); }
.corner-br { right: 2.2%; bottom: 52px; border-right: 1px solid var(--rose); border-bottom: 1px solid var(--rose); }
.hero h1 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(64px, 11.5vw, 164px);
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 0.84;
    text-shadow: 0 0 70px rgb(122 47 85 / 0.5);
}
.hero-word {
    display: inline-block;
    white-space: nowrap;
}
.hero-letter {
    display: inline-block;
    transform-origin: 50% 100%;
}
.motion-ready .hero-letter {
    animation: hero-letter-in 900ms cubic-bezier(.16, 1, .3, 1) both;
    animation-delay: calc(180ms + var(--letter-index) * 55ms);
}
.ornament {
    display: block;
    width: 72px;
    height: 1px;
    margin: 36px auto 26px;
    background: linear-gradient(to right, transparent, var(--wine), transparent);
}
.hero-quote {
    max-width: 680px;
    margin: 0 auto;
    color: #d3b9c4;
    font-family: var(--display);
    font-size: clamp(19px, 1.9vw, 27px);
    font-style: italic;
    line-height: 1.5;
}
.outline-link {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin-top: 44px;
    padding: 10px 25px;
    color: var(--ink);
    border: 1px solid rgb(201 143 174 / 0.52);
    background: transparent;
    cursor: pointer;
    font-family: var(--body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 350ms cubic-bezier(.16, 1, .3, 1);
}
.outline-link:hover { color: var(--night); border-color: var(--rose); background: var(--rose); transform: translateY(-2px); }
.outline-link:active { transform: translateY(0) scale(.98); }
.outline-link.secondary { color: var(--ink-muted); border-color: rgb(239 232 220 / 0.25); }
.outline-link.secondary:hover { color: var(--night); border-color: var(--ink); background: var(--ink); }
.external-link-icon { display: block; width: 16px; height: 16px; flex: 0 0 auto; }

.hero-scroll-cue {
    position: absolute;
    z-index: 3;
    bottom: 17px;
    left: 50%;
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    align-items: center;
    color: rgb(239 232 220 / .48);
    transform: translateX(-50%);
    pointer-events: none;
}
.hero-scroll-cue small {
    padding-left: .22em;
    font-family: var(--utility);
    font-size: 8px;
    letter-spacing: .22em;
    text-transform: uppercase;
}
.hero-scroll-cue span {
    position: relative;
    display: block;
    width: 1px;
    height: 36px;
    overflow: hidden;
    background: rgb(201 143 174 / .18);
}
.hero-scroll-cue span::after {
    position: absolute;
    top: -100%;
    left: 0;
    width: 1px;
    height: 100%;
    background: var(--rose);
    content: "";
    animation: scroll-pulse 2.4s cubic-bezier(.76, 0, .24, 1) infinite;
}
.motion-ready .hero-kicker,
.motion-ready .hero-content > .ornament,
.motion-ready .hero-quote,
.motion-ready .hero .outline-link,
.motion-ready .hero-corner,
.motion-ready .hero-scroll-cue {
    animation: hero-soft-in 900ms cubic-bezier(.16, 1, .3, 1) both;
}
.motion-ready .hero-kicker { animation-delay: 80ms; }
.motion-ready .hero-content > .ornament { animation-delay: 720ms; }
.motion-ready .hero-quote { animation-delay: 820ms; }
.motion-ready .hero .outline-link { animation-delay: 930ms; }
.motion-ready .hero-corner { animation-delay: 650ms; }
.motion-ready .hero-scroll-cue {
    animation-name: hero-scroll-cue-in;
    animation-delay: 1.15s;
}

.motion-ready .js-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
        opacity 700ms cubic-bezier(.16, 1, .3, 1),
        transform 850ms cubic-bezier(.16, 1, .3, 1);
    transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready .js-reveal.is-visible { opacity: 1; transform: none; }
.motion-ready .reveal-mask {
    opacity: 1;
    transform: none;
}
.motion-ready .reveal-mask img {
    clip-path: inset(0 100% 0 0);
    transform: scale(1.1);
    transition:
        clip-path 1100ms cubic-bezier(.16, 1, .3, 1),
        transform 1400ms cubic-bezier(.16, 1, .3, 1);
}
.motion-ready .reveal-mask.is-visible img { clip-path: inset(0); transform: scale(1); }

.section-shell { width: var(--page); margin: 0 auto; padding: 160px 0 140px; }
.score-lines {
    position: relative;
}
.eyebrow {
    margin: 0 0 20px;
    color: var(--rose);
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.composer > h2,
.albums-page h1,
.text-page > h1,
.contact-page h1,
.error-page h1 {
    max-width: 850px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 300;
    line-height: 1.08;
}
.composer > h2 { margin-bottom: 100px; }
.portrait-story {
    display: grid;
    grid-template-columns: minmax(260px, .85fr) minmax(320px, 1.15fr);
    gap: clamp(50px, 7vw, 90px);
    align-items: center;
    margin-bottom: 160px;
}
.framed-media { position: relative; margin: 0; }
.framed-media::before {
    position: absolute;
    z-index: -1;
    top: -14px;
    right: 14px;
    bottom: 14px;
    left: -14px;
    border: 1px solid rgb(201 143 174 / 0.42);
    content: "";
}
.framed-media img { width: 100%; height: 100%; object-fit: cover; }
.portrait { aspect-ratio: 3 / 4; }
.story-copy .quote-mark,
.vision .quote-mark {
    display: block;
    color: rgb(122 47 85 / 0.66);
    font-family: var(--display);
    font-size: 78px;
    line-height: .45;
}
.rich-copy { color: #d9d0c1; font-size: 18px; line-height: 1.85; }
.rich-copy > :first-child { margin-top: 0; }
.rich-copy > :last-child { margin-bottom: 0; }
.rich-copy h2,
.rich-copy h3 { color: var(--ink); font-family: var(--display); font-weight: 400; }
.rich-copy a { color: var(--rose); text-underline-offset: 4px; }
.rich-copy img { height: auto; }

.journey { margin-bottom: 150px; }
.journey > .eyebrow { margin-bottom: 38px; }
.timeline {
    position: relative;
    padding-left: 1px;
}
.timeline::before,
.timeline::after {
    position: absolute;
    top: 32px;
    bottom: 32px;
    left: 0;
    width: 1px;
    content: "";
}
.timeline::before { background: rgb(201 143 174 / 0.18); }
.timeline::after {
    background: linear-gradient(to bottom, var(--rose), var(--wine));
    box-shadow: 0 0 12px rgb(201 143 174 / .3);
    transform: scaleY(var(--timeline-progress, 0));
    transform-origin: top;
}
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
    padding: 31px 0 34px 44px;
    border-bottom: 1px solid rgb(239 232 220 / .09);
}
.timeline-item::before {
    position: absolute;
    top: 50%;
    left: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--wine);
    box-shadow: 0 0 0 4px var(--night);
    content: "";
    transform: translateY(-50%);
    transition: background 350ms ease, box-shadow 350ms ease, transform 500ms cubic-bezier(.16, 1, .3, 1);
}
.timeline-item.is-visible::before {
    background: var(--rose);
    box-shadow: 0 0 0 4px var(--night), 0 0 18px rgb(201 143 174 / .52);
    transform: translateY(-50%) scale(1.12);
}
.timeline-year {
    margin: 0;
    color: var(--rose);
    font-family: var(--display);
    font-size: clamp(27px, 2.35vw, 34px);
    line-height: 1.15;
    letter-spacing: -.025em;
    white-space: nowrap;
}
.timeline-copy {
    max-width: 760px;
    margin: 1px 0 0;
    color: #d9d0c1;
    font-size: 17px;
    line-height: 1.58;
}

.vision {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    margin: 0 0 160px;
    padding: 86px 6%;
    border: 0;
    background: radial-gradient(ellipse, rgb(122 47 85 / 0.1), transparent 70%);
    text-align: center;
}
.vision::before {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: min(60vw, 640px);
    aspect-ratio: 1;
    border: 1px solid rgb(201 143 174 / .16);
    border-radius: 50%;
    content: "";
    opacity: 0;
    transform: translate(-50%, -50%) scale(.78);
    transition: opacity 1s ease, transform 1.4s cubic-bezier(.16, 1, .3, 1);
}
.vision.is-visible::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.vision .quote-mark { position: absolute; top: 44px; left: 50%; font-size: 130px; transform: translateX(-50%); }
.motion-ready .vision.is-visible .quote-mark { animation: quote-settle 900ms cubic-bezier(.16, 1, .3, 1) 250ms both; }
.vision .eyebrow { position: relative; margin-bottom: 28px; }
.vision > p:not(.eyebrow) {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    font-family: var(--display);
    font-size: clamp(26px, 3vw, 38px);
    font-style: italic;
    line-height: 1.45;
}
.vision i { display: block; width: 45px; height: 1px; margin: 34px auto 0; background: var(--wine); }
.gallery > .eyebrow { margin-bottom: 45px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 155px; gap: 20px; }
.gallery-item { position: relative; grid-row: span 1; margin: 0; overflow: hidden; border: 1px solid transparent; background: var(--night-soft); transition: border-color 500ms ease; }
.gallery-item.is-tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms cubic-bezier(.16, 1, .3, 1), filter 700ms ease; }
.gallery-item::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: radial-gradient(circle at 80% 12%, rgb(201 143 174 / .22), transparent 45%);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity 600ms ease;
}
.gallery-item::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(to top, rgb(11 10 13 / 0.75), transparent 60%);
    content: "";
    pointer-events: none;
}
.gallery-item:hover { border-color: rgb(201 143 174 / .28); }
.gallery-item:hover::before { opacity: 1; }
.gallery-item:hover img { filter: saturate(1.08) brightness(1.04); transform: scale(1.06); }
.motion-ready .gallery-item.js-reveal { transform: translate3d(0, 28px, 0) scale(.96); }
.motion-ready .gallery-item.js-reveal.is-visible { transform: none; }
.gallery-item figcaption {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 12px;
    left: 14px;
    color: var(--ink-muted);
    font-family: var(--utility);
    font-size: 9px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.albums-page { padding-top: 170px; }
.albums-intro { position: relative; margin-bottom: 80px; }
.albums-intro h1 { margin: 0; }
.albums-intro-line {
    position: absolute;
    right: 0;
    bottom: 8px;
    width: min(38vw, 460px);
    height: 1px;
    background: linear-gradient(to right, transparent, rgb(201 143 174 / .55));
    transform-origin: right;
}
.album-list { border-bottom: 1px solid var(--line); }
.album-row {
    position: relative;
    display: flex;
    gap: clamp(46px, 6vw, 80px);
    align-items: center;
    padding: 65px 0;
    border-top: 1px solid var(--line);
    overflow: hidden;
}
.album-row::after {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(to right, var(--wine), var(--rose), transparent 82%);
    content: "";
    pointer-events: none;
}
.album-row:nth-child(even) { flex-direction: row-reverse; }
.album-ghost-number {
    position: absolute;
    z-index: -1;
    top: -55px;
    right: 0;
    color: rgb(122 47 85 / 0.17);
    font-family: var(--display);
    font-size: 190px;
    line-height: 1;
}
.album-row:nth-child(even) .album-ghost-number { right: auto; left: 0; }
.album-cover { flex: 0 0 44%; aspect-ratio: 16 / 11; }
.album-cover::before { top: -12px; right: 12px; bottom: 12px; left: -12px; }
.album-row:nth-child(even) .album-cover::before { right: -12px; left: 12px; }
.album-cover img { transition: transform 900ms cubic-bezier(.16, 1, .3, 1), filter 600ms ease; }
.album-cover:hover img { transform: scale(1.045); }
.album-summary { flex: 1; }
.album-summary h2 {
    margin: 0 0 18px;
    font-family: var(--display);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.05;
}
.album-title-link {
    text-decoration: none;
    transition: color 220ms ease;
}
.album-title-link:hover { color: var(--rose); }
.album-summary > p:not(.eyebrow) { max-width: 500px; margin: 0 0 24px; color: var(--ink-muted); }
.album-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 25px; color: #7a6470; font-size: 12px; letter-spacing: .08em; }
.album-meta i { width: 4px; height: 4px; border-radius: 50%; background: var(--wine); }
.text-link {
    display: inline-flex;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgb(201 143 174 / 0.5);
    font-size: 12px;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
}
.text-link:hover { color: var(--rose); border-color: var(--rose); }
.text-link-icon { display: block; width: 15px; height: 15px; flex: 0 0 auto; }

.motion-ready .albums-intro-line {
    opacity: 0;
    transform: scaleX(0);
    transition: opacity 700ms ease 280ms, transform 1100ms cubic-bezier(.16, 1, .3, 1) 280ms;
}
.motion-ready .page-intro-title.is-visible + .albums-intro-line { opacity: 1; transform: scaleX(1); }
.motion-ready .album-row-reveal { opacity: 1; transform: none; }
.motion-ready .album-row-reveal::after {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 950ms cubic-bezier(.16, 1, .3, 1);
}
.motion-ready .album-row-reveal.is-visible::after { transform: scaleX(1); }
.motion-ready .album-row-reveal .album-cover {
    opacity: 0;
    transform: translate3d(0, calc(var(--discography-parallax, 0px) + 22px), 0);
    transition:
        opacity 700ms cubic-bezier(.16, 1, .3, 1) 100ms,
        transform 1200ms cubic-bezier(.16, 1, .3, 1) 100ms;
}
.motion-ready .album-row-reveal.is-visible .album-cover {
    opacity: 1;
    transform: translate3d(0, var(--discography-parallax, 0px), 0);
}
.motion-ready .album-row-reveal .album-cover img { transform: scale(1.08); }
.motion-ready .album-row-reveal.is-visible .album-cover img { transform: scale(1); }
.motion-ready .album-row-reveal.is-visible .album-cover:hover img { transform: scale(1.045); }
.motion-ready .album-row-reveal .album-summary > * {
    opacity: 0;
    transform: translate3d(28px, 0, 0);
    transition: opacity 650ms ease, transform 850ms cubic-bezier(.16, 1, .3, 1);
}
.motion-ready .album-row-reveal:nth-child(even) .album-summary > * { transform: translate3d(-28px, 0, 0); }
.motion-ready .album-row-reveal.is-visible .album-summary > * { opacity: 1; transform: none; }
.motion-ready .album-row-reveal.is-visible .album-summary > :nth-child(1) { transition-delay: 220ms; }
.motion-ready .album-row-reveal.is-visible .album-summary > :nth-child(2) { transition-delay: 300ms; }
.motion-ready .album-row-reveal.is-visible .album-summary > :nth-child(3) { transition-delay: 380ms; }
.motion-ready .album-row-reveal.is-visible .album-summary > :nth-child(4) { transition-delay: 450ms; }
.motion-ready .album-row-reveal.is-visible .album-summary > :nth-child(5) { transition-delay: 520ms; }
.motion-ready .album-row-reveal .album-ghost-number {
    opacity: 0;
    transform: translate3d(0, calc(var(--discography-number-shift, 0px) + 30px), 0);
    transition: opacity 1s ease 250ms, transform 1.2s cubic-bezier(.16, 1, .3, 1) 250ms;
}
.motion-ready .album-row-reveal.is-visible .album-ghost-number {
    opacity: 1;
    transform: translate3d(0, var(--discography-number-shift, 0px), 0);
}

.album-detail {
    position: relative;
    min-height: 100svh;
    overflow: clip;
    background:
        radial-gradient(circle at 72% 12%, rgb(122 47 85 / .12), transparent 27%),
        var(--night);
}
.album-backdrop {
    position: absolute;
    z-index: 0;
    top: -4vh;
    right: -12vw;
    width: min(76vw, 1080px);
    height: 110svh;
    overflow: hidden;
    opacity: .2;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to left, #000 10%, transparent 88%);
    mask-image: linear-gradient(to left, #000 10%, transparent 88%);
}
.album-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(45px) saturate(.72) contrast(1.15);
    transform: translate3d(0, var(--album-backdrop-shift, 0px), 0) scale(1.16);
}
.album-opening {
    position: relative;
    z-index: 1;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: 132px 0 90px;
    isolation: isolate;
}
.album-opening::after {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 220px;
    background: linear-gradient(to bottom, transparent, var(--night));
    content: "";
}
.album-opening-inner { width: var(--page); margin: 0 auto; }
.back-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--ink-muted);
    font-family: var(--utility);
    font-size: 9px;
    letter-spacing: .16em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 220ms ease, transform 350ms cubic-bezier(.16, 1, .3, 1);
}
.back-link:hover { color: var(--rose); transform: translateX(-4px); }
.back-link-icon { display: block; width: 14px; height: 14px; flex: 0 0 auto; }
.album-opening-back { margin-bottom: clamp(42px, 6vh, 72px); }
.album-hero-grid {
    display: grid;
    grid-template-columns: minmax(310px, .92fr) minmax(360px, 1.08fr);
    gap: clamp(64px, 10vw, 150px);
    align-items: center;
}
.album-cover-stage {
    position: relative;
    width: min(100%, 530px);
    padding: clamp(28px, 4vw, 58px);
}
.detail-cover {
    position: relative;
    z-index: 2;
    aspect-ratio: 1;
    margin: 0;
    overflow: hidden;
    background: #17131a;
    box-shadow:
        0 55px 120px rgb(0 0 0 / .62),
        0 12px 36px rgb(0 0 0 / .42);
    transform: translate3d(0, var(--album-cover-shift, 0px), 0) rotate(-1.6deg);
}
.detail-cover::after {
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgb(239 232 220 / .22);
    content: "";
    pointer-events: none;
}
.detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.album-orbit {
    position: absolute;
    z-index: 0;
    border: 1px solid rgb(201 143 174 / .26);
    border-radius: 50%;
    pointer-events: none;
}
.album-orbit::after {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 22px rgb(201 143 174 / .9);
    content: "";
}
.orbit-one { inset: 2%; transform: rotate(28deg); }
.orbit-one::after { top: 12%; left: 12%; }
.orbit-two { inset: -5% 11% 10% -4%; border-color: rgb(239 232 220 / .12); transform: rotate(-18deg); }
.orbit-two::after { right: 8%; bottom: 22%; width: 4px; height: 4px; background: var(--ink); }
.award-seal {
    position: absolute;
    z-index: 4;
    right: -8px;
    bottom: 8%;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    justify-content: center;
    width: clamp(108px, 9.5vw, 136px);
    aspect-ratio: 1;
    padding: 20px;
    color: var(--ink);
    border: 1px solid rgb(221 184 125 / .72);
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 22%, rgb(255 241 214 / .14), transparent 30%),
        linear-gradient(145deg, rgb(64 29 48 / .92), rgb(14 11 16 / .96) 64%);
    box-shadow:
        0 22px 48px rgb(0 0 0 / .48),
        inset 0 0 32px rgb(201 143 174 / .08),
        0 0 0 4px rgb(11 10 13 / .52);
    text-align: center;
    transform: rotate(-4deg);
    backdrop-filter: blur(12px);
}
.award-seal::before {
    position: absolute;
    inset: 6px;
    border: 1px solid rgb(221 184 125 / .3);
    border-radius: inherit;
    content: "";
}
.award-seal i,
.award-seal span,
.award-seal strong,
.award-seal small { position: relative; display: block; }
.award-seal i { color: #ddb87d; font-size: 9px; font-style: normal; line-height: 1; }
.award-icon { width: 10px; height: 10px; }
.award-seal .award-year { color: #ddb87d; font-family: var(--utility); font-size: 8px; letter-spacing: .24em; line-height: 1.2; }
.award-seal strong {
    margin: 1px 0 3px;
    font-family: var(--display);
    font-size: clamp(17px, 1.6vw, 23px);
    font-style: italic;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: .9;
}
.award-seal small {
    max-width: 76px;
    color: var(--ink-muted);
    font-family: var(--utility);
    font-size: 5.5px;
    letter-spacing: .11em;
    line-height: 1.45;
    text-transform: uppercase;
}
.album-opening-copy { position: relative; z-index: 2; min-width: 0; }
.album-opening-kicker { margin-bottom: 28px; }
.album-hero-grid h1 {
    margin: 0 0 28px;
    font-family: var(--display);
    font-size: clamp(58px, 6.6vw, 104px);
    font-weight: 300;
    letter-spacing: -.035em;
    line-height: .78;
    text-wrap: balance;
}
.album-lead {
    max-width: 560px;
    margin: 0;
    color: #d9d0c1;
    font-family: var(--display);
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.45;
}
.album-facts {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 28px;
    color: var(--ink-dim);
    font-family: var(--utility);
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.album-facts i { width: 3px; height: 3px; border-radius: 50%; background: var(--rose); }
.album-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.album-actions .outline-link { gap: 16px; margin-top: 0; }
.award-banner {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 30px;
    align-items: baseline;
    margin-top: clamp(62px, 9vh, 100px);
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.award-banner .eyebrow,
.award-banner > p { margin: 0; }
.award-banner > p:last-child {
    max-width: 720px;
    color: var(--ink-muted);
    font-family: var(--display);
    font-size: clamp(20px, 2.1vw, 29px);
    line-height: 1.35;
}
.album-scroll-cue {
    position: absolute;
    right: 3vw;
    bottom: 55px;
    display: flex;
    gap: 14px;
    align-items: center;
    color: var(--ink-dim);
    font-family: var(--utility);
    font-size: 8px;
    letter-spacing: .16em;
    text-decoration: none;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}
.album-scroll-cue span { display: block; width: 1px; height: 52px; background: linear-gradient(var(--rose), transparent); }
.flight-score {
    position: absolute;
    z-index: 0;
    top: 92svh;
    left: 4.4%;
    width: 1px;
    height: calc(100% - 112svh);
    background: linear-gradient(to bottom, transparent, rgb(201 143 174 / .22) 5%, rgb(201 143 174 / .08) 85%, transparent);
    pointer-events: none;
}
.flight-score span {
    position: sticky;
    top: 22vh;
    display: block;
    width: 7px;
    height: 7px;
    margin-left: -3px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 20px rgb(201 143 174 / .72);
}
.flight-score i { position: absolute; left: -2px; width: 5px; height: 5px; border: 1px solid var(--rose); border-radius: 50%; }
.flight-score i:nth-child(2) { top: 18%; }
.flight-score i:nth-child(3) { top: 51%; }
.flight-score i:nth-child(4) { top: 82%; }
.album-section-heading { max-width: 850px; }
.album-section-heading h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(44px, 6vw, 82px);
    font-weight: 300;
    letter-spacing: -.025em;
    line-height: .98;
    text-wrap: balance;
}
.album-story { position: relative; z-index: 1; padding-top: clamp(130px, 16vw, 210px); }
.album-story-grid {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(380px, 1.28fr);
    gap: clamp(60px, 9vw, 130px);
    align-items: start;
    margin-top: 100px;
}
.album-story-portrait {
    position: sticky;
    top: 120px;
    margin: 0;
}
.album-story-portrait::before {
    position: absolute;
    top: -18px;
    right: 18px;
    bottom: 18px;
    left: -18px;
    border: 1px solid rgb(201 143 174 / .32);
    content: "";
}
.album-story-portrait img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.76) contrast(1.06); }
.album-story-portrait figcaption {
    position: relative;
    margin-top: 18px;
    color: var(--ink-dim);
    font-family: var(--utility);
    font-size: 9px;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.album-story-copy { padding-top: 35px; font-size: clamp(18px, 1.7vw, 22px); }
.album-story-copy p { margin: 0 0 1.45em; }
.album-story-copy p:first-child::first-letter {
    float: left;
    margin: .05em .13em 0 0;
    color: var(--rose);
    font-family: var(--display);
    font-size: 4.5em;
    line-height: .72;
}
.ensemble-section {
    position: relative;
    z-index: 1;
    background:
        linear-gradient(90deg, rgb(122 47 85 / .08) 1px, transparent 1px) 50% 0 / calc(var(--page) / 4) 100%,
        var(--night-soft);
    border-block: 1px solid var(--line);
}
.ensemble-heading {
    display: grid;
    grid-template-columns: 1.5fr .5fr;
    gap: 50px;
    align-items: end;
    margin-bottom: 90px;
}
.ensemble-intro { max-width: 310px; margin: 0 0 7px; color: var(--ink-muted); }
.musician-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(26px, 3vw, 44px) 18px;
}
.musician-card {
    flex: 0 0 calc((100% - 54px) / 4);
    min-width: 0;
}
.musician-portrait {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid transparent;
    background: var(--night);
    text-decoration: none;
    transition: border-color 400ms ease, transform 600ms cubic-bezier(.16, 1, .3, 1);
}
.musician-portrait::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, transparent 55%, rgb(11 10 13 / .86));
    content: "";
}
.musician-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.58);
    transition: filter 600ms ease, transform 850ms cubic-bezier(.16, 1, .3, 1);
}
.musician-index,
.musician-arrow {
    position: absolute;
    z-index: 1;
    color: var(--ink);
    font-family: var(--utility);
    font-size: 9px;
}
.musician-index { top: 13px; left: 13px; padding: 4px 7px; background: rgb(11 10 13 / .7); }
.musician-arrow { right: 15px; bottom: 13px; opacity: 0; transform: translate(-6px, 6px); transition: opacity 300ms ease, transform 400ms ease; }
.musician-portrait:hover { border-color: rgb(201 143 174 / .38); transform: translateY(-5px); }
.musician-portrait:hover img { filter: saturate(.95); transform: scale(1.055); }
.musician-portrait:hover .musician-arrow { opacity: 1; transform: none; }
.musician-meta { padding: 16px 5px 0; }
.musician-meta h3 { margin: 0; font-family: var(--display); font-size: 21px; font-weight: 400; line-height: 1.1; }
.musician-meta p { margin: 5px 0 0; color: var(--rose); font-family: var(--utility); font-size: 8px; letter-spacing: .14em; text-transform: uppercase; }
.legend-section {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-right: calc((100% - var(--page)) / 2);
    padding-left: calc((100% - var(--page)) / 2);
    padding-top: clamp(120px, 15vw, 200px);
    padding-bottom: clamp(120px, 15vw, 200px);
}
.legend-copy { width: 100%; margin: 0; }
.legend-quote {
    margin: 0 0 35px;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(34px, 4vw, 58px);
    font-style: italic;
    line-height: 1.08;
}
.legend-copy .rich-copy { max-width: none; color: var(--ink-muted); }
.album-information {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(70px, 8vw, 110px);
    padding-top: 110px;
    padding-bottom: 110px;
    border-top: 1px solid var(--line);
}
.album-information audio { width: 100%; filter: sepia(.15) saturate(.65); }
.audio-track-list { display: grid; gap: 16px; }
.audio-track { padding: 18px 20px 20px; border: 1px solid rgb(201 143 174 / .28); background: rgb(11 10 13 / .24); }
.audio-track-heading { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: baseline; }
.audio-track-heading > span { color: var(--ink-dim); font-family: var(--utility); font-size: 10px; }
.audio-track h3 { margin: 0; color: var(--ink); font-family: var(--display); font-size: 21px; font-weight: 400; }
.audio-track-note { margin: 6px 0 14px 40px; color: var(--ink-muted); font-size: 14px; }
.audio-track-missing { margin: 12px 0 0 40px; color: var(--ink-dim); font-size: 13px; }
.audio-file-picker {
    display: none;
    min-height: 44px;
    margin: 14px 0 0 40px;
    align-items: center;
    color: var(--rose);
    font-size: 11px;
    letter-spacing: .08em;
    text-underline-offset: 4px;
    text-transform: uppercase;
}
.audio-file-picker[href*="evoque-field="] { display: inline-flex; }
.audio-empty { display: flex; gap: 18px; align-items: center; padding: 17px 20px; border: 1px solid rgb(201 143 174 / .3); color: var(--ink-dim); }
.audio-empty span { display: grid; width: 36px; height: 36px; border: 1px solid rgb(239 232 220 / .4); border-radius: 50%; place-items: center; }
.audio-empty-icon { display: block; width: 17px; height: 17px; }
.audio-empty p,
.credits-list p { margin: 0; }
.credits-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px clamp(36px, 6vw, 90px); color: #d9d0c1; }
.credits-list p { padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.partners-section {
    position: relative;
    z-index: 1;
    padding-top: 90px;
    border-top: 1px solid var(--line);
}
.partner-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 18px; margin-top: 40px; }
.partner-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 26px;
    align-items: center;
    min-height: 130px;
    padding: 10px 34px 10px 10px;
    border: 1px solid var(--line);
    color: var(--ink-muted);
    font-family: var(--utility);
    font-size: 9px;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 280ms ease, border-color 280ms ease, transform 500ms cubic-bezier(.16, 1, .3, 1);
}
.partner-card img { width: 110px; height: 110px; object-fit: cover; filter: grayscale(1) contrast(1.1); transition: filter 450ms ease; }
.partner-card span { display: flex; justify-content: space-between; gap: 18px; }
.partner-card .partner-arrow { color: var(--rose); font-style: normal; }
.partner-card:hover { color: var(--ink); border-color: rgb(201 143 174 / .36); transform: translateY(-3px); }
.partner-card:hover img { filter: grayscale(0) contrast(1); }
.album-body { max-width: 760px; padding-top: 0; }
.album-body:empty { display: none; }

.motion-ready .album-opening-kicker,
.motion-ready .album-opening-copy .album-lead,
.motion-ready .album-opening-copy .album-facts,
.motion-ready .album-opening-copy .album-actions,
.motion-ready .album-opening-back,
.motion-ready .award-banner {
    animation: album-soft-in 900ms cubic-bezier(.16, 1, .3, 1) both;
}
.motion-ready .album-opening-back { animation-delay: 80ms; }
.motion-ready .album-opening-kicker { animation-delay: 250ms; }
.motion-ready .album-opening-copy .album-lead { animation-delay: 610ms; }
.motion-ready .album-opening-copy .album-facts { animation-delay: 720ms; }
.motion-ready .album-opening-copy .album-actions { animation-delay: 820ms; }
.motion-ready .award-banner { animation-delay: 920ms; }
.motion-ready .album-hero-grid h1 { animation: album-title-in 1100ms cubic-bezier(.16, 1, .3, 1) 320ms both; }
.motion-ready .album-cover-stage { animation: album-cover-in 1400ms cubic-bezier(.16, 1, .3, 1) 120ms both; }
.motion-ready .award-seal { animation: seal-in 1000ms cubic-bezier(.16, 1, .3, 1) 850ms both; }
.motion-ready .orbit-one { animation: cover-orbit 24s linear infinite; }
.motion-ready .orbit-two { animation: cover-orbit-reverse 31s linear infinite; }
.motion-ready .album-scroll-cue { animation: album-soft-in 800ms ease 1.2s both; }

.contact-page {
    position: relative;
    display: grid;
    min-height: 100svh;
    max-width: 900px;
    padding-top: 175px;
    place-items: center;
    overflow: clip;
    isolation: isolate;
}
.contact-content { position: relative; z-index: 1; width: 100%; }
.contact-ambient {
    position: absolute;
    z-index: 0;
    top: 50%;
    right: -20%;
    width: min(58vw, 620px);
    aspect-ratio: 1;
    border: 1px solid rgb(201 143 174 / .1);
    border-radius: 50%;
    opacity: .72;
    transform: translateY(-50%);
    pointer-events: none;
    transition: opacity 700ms ease, border-color 700ms ease;
}
.contact-ambient::before,
.contact-ambient::after {
    position: absolute;
    border: 1px solid rgb(201 143 174 / .09);
    border-radius: inherit;
    content: "";
}
.contact-ambient::before { inset: 12%; }
.contact-ambient::after { inset: 28%; }
.contact-ambient span {
    position: absolute;
    top: 14%;
    left: 14%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose);
    box-shadow: 0 0 24px rgb(201 143 174 / .7);
}
.contact-ambient i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 46%;
    background: linear-gradient(to bottom, rgb(201 143 174 / .28), transparent);
    transform-origin: top;
}
.contact-page:focus-within .contact-ambient { opacity: 1; border-color: rgb(201 143 174 / .2); }
.contact-intro { max-width: 590px; margin: 26px 0 58px; color: #d9d0c1; font-size: 18px; }
.contact-form > label,
.form-row label { position: relative; display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 34px; }
.contact-form > label { margin-bottom: 40px; }
.contact-form label span {
    display: block;
    margin-bottom: 6px;
    color: #7a6470;
    font-family: var(--utility);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 0;
    color: var(--ink);
    border: 0;
    border-bottom: 1px solid rgb(239 232 220 / .28);
    border-radius: 0;
    outline: 0;
    background: transparent;
}
.contact-form textarea {
    display: block;
    resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--rose); }
.contact-form label::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--rose);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 500ms cubic-bezier(.16, 1, .3, 1);
}
.contact-form label:focus-within::after { transform: scaleX(1); }
.contact-form .outline-link { margin-top: 0; }
.hp { position: absolute !important; left: -9999px !important; }
.contact-meta { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; margin-top: 90px; padding-top: 32px; border-top: 1px solid var(--line); color: var(--ink-dim); font-size: 13px; }
.contact-meta a { text-decoration: none; }
.contact-meta .rich-copy { font-size: 13px; line-height: 1.6; text-align: right; }
.form-success { max-width: 650px; padding: 28px; border: 1px solid rgb(201 143 174 / .35); background: rgb(122 47 85 / .1); }
.form-success p:last-child { margin-bottom: 0; }

.motion-ready .contact-ambient { animation: contact-orbit-breathe 9s cubic-bezier(.4, 0, .2, 1) infinite alternate; }
.motion-ready .contact-ambient i { animation: contact-orbit-hand 24s linear infinite; }
.motion-ready .contact-title { --reveal-delay: 80ms; }
.motion-ready .contact-intro { --reveal-delay: 160ms; }
.motion-ready .contact-form.js-reveal { opacity: 1; transform: none; }
.motion-ready .contact-form.js-reveal .form-row label,
.motion-ready .contact-form.js-reveal > label,
.motion-ready .contact-form.js-reveal > .outline-link {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 600ms ease, transform 800ms cubic-bezier(.16, 1, .3, 1);
}
.motion-ready .contact-form.js-reveal.is-visible .form-row label,
.motion-ready .contact-form.js-reveal.is-visible > label,
.motion-ready .contact-form.js-reveal.is-visible > .outline-link { opacity: 1; transform: none; }
.motion-ready .contact-form.js-reveal.is-visible .form-row label:first-child { transition-delay: 80ms; }
.motion-ready .contact-form.js-reveal.is-visible .form-row label:last-child { transition-delay: 150ms; }
.motion-ready .contact-form.js-reveal.is-visible > label { transition-delay: 230ms; }
.motion-ready .contact-form.js-reveal.is-visible > .outline-link { transition-delay: 310ms; }
.motion-ready .contact-meta { --reveal-delay: 240ms; }

.text-page,
.error-page { min-height: 80svh; padding-top: 175px; }
.text-page > h1 { margin-bottom: 55px; }
.text-page > .rich-copy { max-width: 780px; }
.error-page { text-align: center; }
.error-page h1 { margin-inline: auto; }
.error-page > p:not(.eyebrow) { color: var(--ink-muted); }
.composable-page { min-height: 75svh; padding-top: 110px; }

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    width: var(--page);
    margin: 0 auto;
    padding: 36px 0;
    color: var(--ink-dim);
    border-top: 1px solid var(--line);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.site-footer p { margin: 0; }
.site-credit { text-transform: none; }

/*
 * Les wrappers du builder doivent conserver une vraie boîte : le core y
 * positionne les contrôles déplacer/supprimer. `display: contents` supprimait
 * cette boîte et superposait notamment les outils des extraits et des crédits.
 */
.album-list > .evoque-rep-item,
.timeline > .evoque-rep-item,
.gallery-grid > .evoque-rep-item,
.audio-track-list > .evoque-rep-item,
.credits-list > .evoque-rep-item {
    position: relative;
    display: block;
    min-width: 0;
}

/* Le wrapper devient l’item de grille ; son contenu reprend toute sa place. */
.gallery-grid > .evoque-rep-item > .gallery-item,
.audio-track-list > .evoque-rep-item > .audio-track { height: 100%; }
.gallery-grid > .evoque-rep-item:has(> .gallery-item.is-tall) { grid-row: span 2; }
.gallery-grid > .evoque-rep-item > .gallery-item { grid-row: auto; }

/* L’alternance de la discographie doit désormais se lire sur le wrapper. */
.album-list > .evoque-rep-item:nth-child(even) > .album-row { flex-direction: row-reverse; }
.album-list > .evoque-rep-item:nth-child(even) > .album-row .album-ghost-number { right: auto; left: 0; }
.album-list > .evoque-rep-item:nth-child(even) > .album-row .album-cover::before { right: -12px; left: 12px; }
.evoque-editable:empty { min-width: 1.5em; min-height: 1em; }

/* Blocs composables du core, adaptés à l’univers du thème. */
.content-block,
.page-hero,
.cta { padding: 70px 0; }
.content-block > .container,
.page-hero > .container,
.cta > .container { width: var(--page); margin: 0 auto; }
.columns-grid { display: grid; gap: 38px; }
.columns-grid-1 { grid-template-columns: 1fr; }
.columns-grid-2 { grid-template-columns: repeat(2, 1fr); }
.columns-grid-3 { grid-template-columns: repeat(3, 1fr); }
.columns-grid-4 { grid-template-columns: repeat(4, 1fr); }
.column-item img,
.block-image img { width: 100%; height: auto; }
.cta { color: var(--ink); background: var(--cta-bg, var(--night-soft)); text-align: center; }
.cta .btn,
.page-hero .btn { display: inline-flex; padding: 10px 24px; border: 1px solid var(--rose); text-decoration: none; }
.block-image figure { margin: 0; }
.block-image figcaption { margin-top: 10px; color: var(--ink-dim); font-size: 13px; text-align: center; }

@keyframes hero-letter-in {
    from { opacity: 0; transform: translateY(.42em) rotateX(-48deg) scale(.92); filter: blur(8px); }
    to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes page-load {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes page-leave {
    from { opacity: 1; }
    to { opacity: .35; }
}
@keyframes page-enter {
    from { opacity: 0; transform: translateY(12px) scale(.996); }
    to { opacity: 1; transform: none; }
}
@keyframes hero-soft-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}
@keyframes hero-scroll-cue-in {
    from { opacity: 0; transform: translate(-50%, 16px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes hero-ken-burns {
    from { transform: translate3d(-1.2%, -.7%, 0) scale(1.035); }
    to { transform: translate3d(1.4%, .9%, 0) scale(1.105); }
}
@keyframes orbit-drift {
    from { transform: rotate(-10deg); }
    to { transform: rotate(105deg); }
}
@keyframes scroll-pulse {
    0% { transform: translateY(0); }
    55%, 100% { transform: translateY(200%); }
}
@keyframes quote-settle {
    from { opacity: 0; transform: translate(-50%, 18px) scale(.86); }
    to { opacity: 1; transform: translateX(-50%) scale(1); }
}
@keyframes twinkle {
    0%, 100% { opacity: .05; transform: scale(.35); }
    50% { opacity: .85; transform: scale(1); }
}
@keyframes album-soft-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}
@keyframes album-title-in {
    from { opacity: 0; transform: translateY(.34em); filter: blur(10px); }
    to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes album-cover-in {
    from { opacity: 0; transform: translate3d(-30px, 35px, 0) scale(.92); filter: blur(12px); }
    to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes seal-in {
    from { opacity: 0; transform: rotate(-16deg) scale(.62); filter: blur(7px); }
    to { opacity: 1; transform: rotate(-4deg) scale(1); filter: blur(0); }
}
@keyframes cover-orbit {
    to { transform: rotate(388deg); }
}
@keyframes cover-orbit-reverse {
    to { transform: rotate(-378deg); }
}
@keyframes contact-orbit-breathe {
    from { transform: translateY(-50%) scale(.96) rotate(-4deg); }
    to { transform: translateY(-50%) scale(1.035) rotate(4deg); }
}
@keyframes contact-orbit-hand {
    to { transform: rotate(360deg); }
}

/* Sur les écrans à la fois larges et hauts, garder le hero composé autour du
   piano plutôt que de laisser sa hauteur repousser tout le texte vers le bas. */
@media (min-width: 1400px) and (min-height: 900px) {
    .hero {
        padding-bottom: clamp(100px, 9vh, 130px);
        place-items: center;
    }
    .hero-content {
        max-width: 1500px;
        transform: translateY(clamp(105px, 12vh, 150px));
    }
    .hero h1 { font-size: clamp(132px, 8.3vw, 148px); }
    .hero-orbit { top: 35%; }
}

@media (max-width: 900px) {
    :root { --page: min(88vw, 740px); }
    .portrait-story { grid-template-columns: .8fr 1.2fr; gap: 45px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .album-row { gap: 45px; }
    .album-hero-grid { grid-template-columns: .85fr 1.15fr; gap: 45px; }
    .album-cover-stage { padding: 30px; }
    .album-story-grid { gap: 60px; }
    .musician-card { flex-basis: calc((100% - 36px) / 3); }
    .columns-grid-3,
    .columns-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    :root { --page: calc(100vw - 40px); }
    body { font-size: 16px; }
    .site-header { min-height: 72px; padding: 17px 20px; }
    .brand { font-size: 17px; }
    .nav-toggle { display: inline-flex; gap: 10px; align-items: center; cursor: pointer; }
    .nav-toggle i,
    .nav-toggle i::before { display: block; width: 20px; height: 1px; background: currentColor; content: ""; transition: transform 200ms ease; }
    .nav-toggle i::before { transform: translateY(5px); }
    .nav-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
    .nav-toggle[aria-expanded="true"] i::before { transform: rotate(-90deg); }
    .site-nav {
        position: absolute;
        top: 100%;
        right: 0;
        bottom: auto;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: calc(100svh - 71px);
        gap: 32px;
        background: rgb(11 10 13 / .98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 180ms ease, transform 180ms ease;
    }
    .header-actions { display: contents; }
    .language-switcher {
        position: fixed;
        z-index: 2;
        bottom: 28px;
        left: 50%;
        display: flex;
        padding-left: 0;
        border-left: 0;
        opacity: 0;
        pointer-events: none;
        transform: translate(-50%, 8px);
        transition: opacity 180ms ease, transform 180ms ease;
    }
    .site-nav.is-open + .language-switcher {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }
    .site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
    .site-nav a { font-family: var(--display); font-size: 27px; letter-spacing: .08em; }
    .hero { padding-right: 20px; padding-bottom: 12vh; padding-left: 20px; }
    .hero-kicker { margin-bottom: 24px; font-size: 10px; letter-spacing: .24em; }
    .hero h1 { font-size: clamp(58px, 21vw, 92px); line-height: .88; }
    .hero-orbit { top: 40%; width: 92vw; }
    .hero-corner { width: 24px; height: 24px; }
    .corner-tl, .corner-tr { top: 92px; }
    .corner-bl, .corner-br { bottom: 28px; }
    .hero-scroll-cue { display: none; }
    .outline-link { margin-top: 34px; }
    .section-shell { padding-top: 110px; padding-bottom: 100px; }
    .composer > h2 { margin-bottom: 70px; }
    .portrait-story { grid-template-columns: 1fr; margin-bottom: 110px; }
    .portrait { width: 86%; max-width: 420px; }
    .journey > .eyebrow { margin-bottom: 28px; }
    .timeline::before,
    .timeline::after { top: 28px; bottom: 28px; }
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: start;
        padding: 24px 0 28px 28px;
    }
    .timeline-item::before { top: 33px; transform: none; }
    .timeline-item.is-visible::before { transform: scale(1.12); }
    .timeline-year { font-size: 25px; }
    .timeline-copy { font-size: 16px; }
    .vision { margin-bottom: 110px; padding: 70px 10px; }
    .gallery-grid { gap: 12px; grid-auto-rows: 130px; }
    .album-row,
    .album-row:nth-child(even) { flex-direction: column; align-items: stretch; gap: 42px; padding: 55px 0 70px; }
    .album-list > .evoque-rep-item:nth-child(even) > .album-row { flex-direction: column; }
    .album-cover { flex-basis: auto; }
    .albums-intro { margin-bottom: 55px; }
    .albums-intro-line { right: auto; bottom: -20px; left: 0; width: 92px; transform-origin: left; }
    .album-ghost-number,
    .album-row:nth-child(even) .album-ghost-number { top: 10px; right: -10px; left: auto; font-size: 120px; }
    .album-list > .evoque-rep-item:nth-child(even) > .album-row .album-ghost-number { top: 10px; right: -10px; left: auto; }
    .album-opening { min-height: auto; padding: 105px 0 90px; }
    .album-opening-back { margin-bottom: 28px; }
    .album-hero-grid { grid-template-columns: 1fr; gap: 45px; align-items: stretch; }
    .album-cover-stage { width: min(100%, 460px); margin: 0 auto; padding: 26px; }
    .detail-cover { width: 100%; }
    .award-seal { right: -2px; width: 104px; padding: 16px; }
    .award-seal strong { font-size: 17px; }
    .album-hero-grid h1 { font-size: clamp(48px, 14vw, 62px); }
    .album-facts { flex-wrap: wrap; }
    .album-actions { align-items: stretch; }
    .album-actions .outline-link { flex: 1 1 100%; }
    .award-banner { grid-template-columns: 1fr; gap: 8px; margin-top: 60px; }
    .album-scroll-cue,
    .flight-score { display: none; }
    .album-story { padding-top: 110px; }
    .album-story-grid { grid-template-columns: 1fr; gap: 48px; margin-top: 65px; }
    .album-story-portrait { position: relative; top: auto; width: 86%; max-width: 430px; }
    .album-story-copy { padding-top: 0; }
    .ensemble-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 60px; }
    .musician-grid { gap: 34px 12px; }
    .musician-card { flex-basis: calc((100% - 12px) / 2); }
    .musician-meta h3 { font-size: 18px; }
    .album-information { grid-template-columns: 1fr; gap: 50px; }
    .credits-list { grid-template-columns: 1fr; }
    .partner-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 28px; }
    .contact-ambient { top: 43%; right: -48%; width: 120vw; opacity: .42; }
    .contact-meta { flex-direction: column; }
    .contact-meta .rich-copy { text-align: left; }
    .site-footer { flex-direction: column; text-align: center; }
    .columns-grid { grid-template-columns: 1fr; }
    .motion-ready .js-reveal { transform: translate3d(0, 22px, 0); }
    .motion-ready .gallery-item.js-reveal { transform: translate3d(0, 20px, 0) scale(.97); }
}

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