/* SUBOR Records
   Palette is the studio's own: charcoal surfaces, red accent, gold voice text,
   near-black panels. Display type is a condensed poster grotesque next to the
   brush-script wordmark; Noto Sans Georgian carries body copy in both languages. */

:root {
    --ink: #38373d;
    --ink-2: #3f3e45;
    --ink-deep: #020713;
    --panel: rgba(2, 7, 19, 0.82);
    --red: #f44336;
    --red-bright: #ff6a5e;
    --gold: #d8c860;
    --white: #ffffff;
    --text: #cfcdd8;
    --muted: #a19eb0;
    --line: rgba(255, 255, 255, 0.12);

    --font-display: 'Big Shoulders Display', 'Big Shoulders Fallback', 'Big Shoulders Fallback Sans', 'Noto Sans Georgian', 'Noto Sans Georgian Fallback', sans-serif;
    --font-body: 'Noto Sans Georgian', 'Noto Sans Georgian Fallback', system-ui, sans-serif;

    --wrap: 1180px;
    --gutter: clamp(16px, 4vw, 40px);
    --radius: 20px;
    --radius-sm: 12px;
    --topbar-h: 84px;
    --ease: cubic-bezier(0.2, 0.7, 0.2, 1);

    color-scheme: dark;
}

/* ---------- base ---------- */

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

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font: 400 1.0625rem/1.65 var(--font-body);
    overflow-x: clip;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

/* Georgian has no case and its glyphs run wider; give headings a little more room. */
html:lang(ka) h1,
html:lang(ka) h2,
html:lang(ka) h3,
html:lang(ka) h4 {
    letter-spacing: 0;
    line-height: 1.1;
}

p {
    margin: 0;
}

p + p {
    margin-top: 0.75em;
}

button {
    font: inherit;
    color: inherit;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
}

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

.icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.15em;
    flex-shrink: 0;
}

.icon--soundcloud,
.icon--spotify,
.icon--youtube,
.icon--facebook {
    fill: currentColor;
}

.wrap {
    width: min(100% - 2 * var(--gutter), var(--wrap));
    margin-inline: auto;
}

.road-rage {
    font-family: 'Road Rage', 'Road Rage Fallback', var(--font-display);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}

.eyebrow {
    font: 700 0.75rem/1 var(--font-body);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
}

.voice {
    color: var(--gold);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 62ch;
}

/* ---------- top bar ---------- */

.topbar {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: var(--topbar-h);
    padding-inline: var(--gutter);
    transition: background 0.3s, box-shadow 0.3s;
}

.topbar.is-stuck {
    background: rgba(2, 7, 19, 0.8);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    position: relative;
    z-index: 60;
}

.brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.brand__text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.brand__name {
    font-size: 2rem;
    line-height: 1;
}

.brand__tag {
    font: 600 0.7rem/1 var(--font-body);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav__list {
    display: flex;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a {
    position: relative;
    display: inline-block;
    padding: 0.35rem 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.site-nav__list a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.site-nav__list a:hover,
.site-nav__list a.is-active {
    color: var(--white);
}

.site-nav__list a:hover::after,
.site-nav__list a.is-active::after {
    transform: scaleX(1);
}

.lang {
    display: flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 3px;
}

.lang a {
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.lang a.is-on {
    background: var(--red);
    color: var(--white);
}

.lang a:not(.is-on):hover {
    color: var(--white);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.35rem;
    place-items: center;
    position: relative;
    z-index: 60;
}

.nav-toggle .icon--x {
    display: none;
}

@media (max-width: 899px) {
    .nav-toggle {
        display: grid;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 55;
        background: var(--ink-deep);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 2.5rem;
        padding: calc(var(--topbar-h) + 1rem) var(--gutter) 3rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.3s, transform 0.3s, visibility 0s 0.3s;
    }

    .site-header.is-open .site-nav {
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: opacity 0.3s, transform 0.3s;
    }

    .site-nav__list {
        flex-direction: column;
        gap: 0.5rem;
    }

    .site-nav__list a {
        font-family: var(--font-display);
        font-weight: 800;
        font-size: clamp(2.25rem, 9vw, 3.5rem);
        letter-spacing: 0.02em;
        padding: 0.1em 0;
        color: var(--white);
    }

    .site-nav__list a::after {
        height: 4px;
    }

    .site-header.is-open .nav-toggle .icon--menu {
        display: none;
    }

    .site-header.is-open .nav-toggle .icon--x {
        display: block;
    }

    body.nav-open {
        overflow: hidden;
    }
}

/* ---------- header: hero on the home page, banner elsewhere ---------- */

.site-header {
    position: relative;
    /* The header is its own stacking context (for the gradient overlay), so it
       needs a z-index of its own or the fixed top bar ends up under main content. */
    z-index: 10;
    isolation: isolate;
    background: var(--ink-deep) url('../images/header-bg.jpg') center / cover no-repeat;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        180deg,
        rgba(2, 7, 19, 0.62) 0%,
        rgba(2, 7, 19, 0.22) 40%,
        rgba(56, 55, 61, 0.6) 82%,
        var(--ink) 100%
    );
}

.hero {
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    align-content: end;
    padding: calc(var(--topbar-h) + 2rem) 0 clamp(3rem, 10vh, 6rem);
}

.hero__phrase {
    display: grid;
    margin-top: 1rem;
    font-size: clamp(3.25rem, 9.5vw, 8.75rem);
    max-width: 12ch;
}

.hero__item {
    grid-area: 1 / 1;
    opacity: 0;
    transform: translateY(0.3em);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.hero__item.is-on {
    opacity: 1;
    transform: none;
}

html:lang(ka) .hero__phrase {
    font-size: clamp(2rem, 6.5vw, 5.25rem);
    max-width: 16ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.banner {
    min-height: min(52vh, 520px);
    display: grid;
    align-content: end;
    padding: calc(var(--topbar-h) + 2rem) 0 clamp(2rem, 6vh, 4rem);
}

.banner__title {
    margin-top: 0.75rem;
    font-size: clamp(3rem, 8vw, 6.5rem);
}

html:lang(ka) .banner__title {
    font-size: clamp(2rem, 5.5vw, 4.25rem);
}

/* ---------- buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    font: 800 1.0625rem/1 var(--font-display);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
}

.btn .icon {
    font-size: 1.05em;
}

.btn--primary {
    background: var(--red);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
}

.btn--ghost {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
}

.btn--ghost:hover {
    border-color: var(--red);
    transform: translateY(-2px);
}

/* ---------- sections ---------- */

.section {
    padding-block: clamp(4rem, 9vw, 7.5rem);
    scroll-margin-top: var(--topbar-h);
}

.section--tight {
    padding-block: clamp(3rem, 6vw, 5rem);
}

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

.section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section__title {
    font-size: clamp(2.75rem, 6vw, 5rem);
}

html:lang(ka) .section__title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
}

/* ---------- services: the signal chain ---------- */

/* Recording feeds mixing feeds mastering, so the three sit on one line
   with a signal pulse travelling along it. */
.chain {
    --node: 96px;
    --chain-gap: 2.5rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem var(--chain-gap);
    list-style: none;
    margin: 0;
    padding: 0;
    /* Own stacking context: the two lines sit at z 0, the discs at z 1, so the
       pulse runs behind the discs instead of over the icons. */
    isolation: isolate;
}

.chain::before,
.chain::after {
    content: '';
    position: absolute;
    z-index: 0;
    top: calc(var(--node) / 2 - 1px);
    left: calc((100% - 2 * var(--chain-gap)) / 6);
    right: calc((100% - 2 * var(--chain-gap)) / 6);
    height: 2px;
    pointer-events: none;
}

.chain::before {
    background: var(--line);
}

.chain::after {
    background: linear-gradient(90deg, transparent 0%, transparent 35%, var(--gold) 50%, transparent 65%, transparent 100%);
    background-size: 300% 100%;
    background-position: 100% 0;
    opacity: 0;
}

.chain.is-inview::after {
    opacity: 1;
    animation: signal-x 3.2s linear infinite;
}

@keyframes signal-x {
    from {
        background-position: 100% 0;
    }
    to {
        background-position: 0% 0;
    }
}

.chain__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.chain__node {
    width: var(--node);
    height: var(--node);
    border-radius: 50%;
    background: var(--red);
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 8px var(--ink), 0 14px 32px -12px rgba(244, 67, 54, 0.75);
}

.chain__node img {
    width: 44%;
    filter: brightness(0) invert(1);
}

.chain__num {
    margin-top: 1.5rem;
    font: 800 0.9rem/1 var(--font-display);
    letter-spacing: 0.2em;
    color: var(--red);
}

.chain__step h3 {
    margin-top: 0.5rem;
    font-size: clamp(1.75rem, 2.6vw, 2.25rem);
}

.chain__step .voice {
    margin-top: 1rem;
    font-size: 1rem;
}

@media (max-width: 799px) {
    .chain {
        --node: 64px;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .chain::before,
    .chain::after {
        top: calc(var(--node) / 2);
        bottom: calc(var(--node) / 2);
        left: calc(var(--node) / 2 - 1px);
        right: auto;
        width: 2px;
        height: auto;
    }

    .chain::after {
        background: linear-gradient(180deg, transparent 0%, transparent 35%, var(--gold) 50%, transparent 65%, transparent 100%);
        background-size: 100% 300%;
        background-position: 0 100%;
    }

    .chain.is-inview::after {
        animation-name: signal-y;
    }

    .chain__step {
        display: grid;
        grid-template-columns: var(--node) 1fr;
        column-gap: 1.25rem;
        align-items: start;
        text-align: left;
    }

    .chain__node {
        grid-row: 1 / 4;
    }

    .chain__node img {
        width: 42%;
    }

    .chain__num {
        margin-top: 0.4rem;
    }

    .chain__step .voice {
        margin-top: 0.6rem;
    }
}

@keyframes signal-y {
    from {
        background-position: 0 100%;
    }
    to {
        background-position: 0 0%;
    }
}

/* ---------- photo bands ---------- */

.band {
    position: relative;
    isolation: isolate;
    padding-block: clamp(5rem, 12vw, 9rem);
    background: var(--ink-deep) center / cover no-repeat;
}

.band--welcome {
    background-image: url('../images/parallax2.jpg');
}

.band--about {
    background-image: url('../images/parallax1.jpg');
}

.band::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(2, 7, 19, 0.72) 0%, rgba(2, 7, 19, 0.35) 60%, rgba(2, 7, 19, 0.55) 100%);
}

.band__inner {
    display: grid;
    gap: 1.5rem;
}

.band__inner > .section__title,
.band__inner > .panel {
    max-width: 780px;
}

.band__inner--split {
    grid-template-columns: minmax(180px, 260px) 1fr;
    gap: clamp(1.5rem, 5vw, 4rem);
    align-items: center;
}

.band__inner--split > div {
    display: grid;
    gap: 1.5rem;
}

.panel {
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 2rem);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.panel.voice {
    font-size: clamp(1.125rem, 1.6vw, 1.35rem);
    max-width: none;
}

.portrait {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    margin-inline: auto;
    box-shadow: 0 0 0 6px rgba(2, 7, 19, 0.55), 0 20px 50px -20px rgba(0, 0, 0, 0.8);
}

@media (max-width: 699px) {
    .band__inner--split {
        grid-template-columns: 1fr;
    }

    .band__inner--split .portrait {
        max-width: 200px;
    }
}

/* ---------- artists ---------- */

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: clamp(1rem, 2.5vw, 1.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 1000px) {
    .artist-grid--home {
        grid-template-columns: repeat(4, 1fr);
    }
}

.artist {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s var(--ease), border-color 0.35s;
}

.artist:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
}

.artist__img {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--ink-deep);
}

.artist__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.artist:hover .artist__img img {
    transform: scale(1.04);
}

.artist__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.1rem 1.1rem;
    flex: 1;
}

.artist__name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.artist__genre {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.artist__genre p {
    margin: 0;
}

.artist__links {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

.plat {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.05rem;
    transition: background 0.25s, transform 0.25s;
}

.plat:hover {
    background: var(--red);
    transform: translateY(-2px);
}

/* ---------- contact block ---------- */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 2rem;
    align-items: center;
}

.contact__item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact__item > .icon {
    font-size: 1.75rem;
    color: var(--red);
    margin-top: 0.15rem;
}

.contact__item p,
.contact__item address {
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
}

.contact__item p + p {
    margin-top: 0.35em;
}

.contact__item a {
    color: var(--white);
}

.contact__item a:hover {
    color: var(--red);
}

.socials {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.socials a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--ink-2);
    border: 1px solid var(--line);
    color: var(--white);
    font-size: 1.25rem;
    transition: background 0.25s, transform 0.25s;
}

.socials a:hover {
    background: var(--red);
    transform: translateY(-2px);
}

@media (max-width: 799px) {
    .contact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ---------- map ---------- */

.map {
    padding-bottom: clamp(3rem, 8vw, 6rem);
}

.map iframe {
    display: block;
    width: 100%;
    height: clamp(320px, 55vh, 480px);
    border: 0;
    border-radius: var(--radius);
    filter: grayscale(0.35) contrast(1.05);
}

/* ---------- about + devices ---------- */

.about__intro {
    display: grid;
    grid-template-columns: 1fr minmax(220px, 380px);
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}

.about__intro .voice {
    margin-top: 1.25rem;
    font-size: 1.2rem;
}

.portrait--lg {
    max-width: 380px;
}

@media (max-width: 799px) {
    .about__intro {
        grid-template-columns: 1fr;
    }

    .portrait--lg {
        max-width: 260px;
    }
}

/* The gear list comes from the CMS as .columns > div > h4 + p; each div is one rack. */
.gear .columns {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.25rem;
    margin-top: clamp(2rem, 5vw, 3rem);
}

.gear .columns > div {
    background: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.4rem 1rem;
}

.gear h4 {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--gold);
    padding-bottom: 0.5rem;
}

.gear * + h4 {
    margin-top: 1.5rem;
}

.gear p,
.gear li {
    margin: 0;
    padding: 0.45rem 0;
    border-top: 1px solid var(--line);
    font-size: 0.95rem;
    line-height: 1.45;
}

.gear ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---------- site footer ---------- */

.site-footer {
    border-top: 1px solid var(--line);
    padding-block: 2rem;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.copyright {
    font-size: 0.875rem;
    color: var(--muted);
}

.copyright em {
    font-style: normal;
    font-weight: 700;
    color: var(--red);
}

/* ---------- artist media dialog ---------- */

.modal {
    width: min(100% - 2rem, 900px);
    max-height: min(92vh, 100%);
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--ink-deep);
    color: var(--text);
    overflow: hidden;
}

.modal::backdrop {
    background: rgba(2, 7, 19, 0.75);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.modal__bar {
    display: flex;
    justify-content: flex-end;
    padding: 0.6rem;
}

.modal__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.1rem;
}

.modal__close:hover {
    background: var(--red);
}

.modal__body {
    padding: 0 1rem 1rem;
    max-height: calc(92vh - 64px);
    overflow: auto;
}

.media iframe {
    display: block;
    width: 100%;
    border: 0;
}

.media--strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.media--strip > * {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

@media (min-width: 700px) {
    .media--spotify > * {
        /* Two players per view; a lone player takes the full width. */
        flex: 1 0 calc(50% - 0.5rem);
    }
}

.video {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #000;
}

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

.video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(180deg, transparent, rgba(2, 7, 19, 0.5));
}

.video__play .icon {
    width: 72px;
    height: 72px;
    padding: 22px;
    border-radius: 50%;
    background: var(--red);
    transition: transform 0.25s;
}

.video__play:hover .icon {
    transform: scale(1.08);
}

/* ---------- motion ---------- */

.js .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    transition-delay: calc(var(--i, 0) * 90ms);
}

.js .reveal.is-inview {
    opacity: 1;
    transform: none;
}

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

    .js .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero__item,
    .artist,
    .artist__img img,
    .btn,
    .plat,
    .socials a,
    .site-nav {
        transition: none;
    }

    .chain.is-inview::after {
        animation: none;
        opacity: 0;
    }
}
