/* =========================================================
   EmotionCreation — site public
   ========================================================= */

:root {
    --bg: #08080d;
    --bg-soft: #0e0e15;
    --surface: #14141d;
    --surface-soft: #191923;
    --surface-light: #f4f1eb;
    --text: #f8f5ef;
    --text-dark: #17171d;
    --muted: #aaa7b2;
    --muted-dark: #66636d;
    --gold: #e4b76f;
    --gold-light: #f1d199;
    --purple: #9367ff;
    --line: rgba(255, 255, 255, .11);
    --line-dark: rgba(20, 20, 29, .12);
    --shadow: 0 30px 90px rgba(0, 0, 0, .28);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --shell: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--text);
    font-family: "DM Sans", Arial, sans-serif;
    background:
        radial-gradient(circle at 8% 6%, rgba(228, 183, 111, .07), transparent 23rem),
        var(--bg);
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    opacity: .027;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitchTiles'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    display: block;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 999;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--text-dark);
    background: var(--gold);
    transform: translateY(-160%);
    transition: transform .2s ease;
}

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

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

/* Header */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 18px 0;
    background: linear-gradient(
        180deg,
        rgba(8, 8, 13, .92),
        rgba(8, 8, 13, .54) 75%,
        transparent
    );
}

.site-header__inner {
    width: min(var(--shell), calc(100% - 40px));
    min-height: 66px;
    margin-inline: auto;
    padding: 10px 12px 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 999px;
    background: rgba(15, 15, 23, .72);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
}

.site-brand,
.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.site-brand__image {
    width: auto;
    max-width: 190px;
    height: 40px;
    object-fit: contain;
}

.site-brand__mark {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #16110a;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: -.04em;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.site-brand__text {
    overflow: hidden;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-nav__link,
.site-nav__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 14px;
    border-radius: 999px;
    color: rgba(248, 245, 239, .72);
    font-size: 13px;
    font-weight: 600;
    transition:
        color .2s ease,
        background .2s ease,
        transform .2s ease;
}

.site-nav__link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, .07);
}

.site-nav__login {
    margin-left: 6px;
    padding-inline: 18px;
    color: #17110a;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

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

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-items: center;
    background: rgba(255, 255, 255, .06);
}

.menu-toggle span {
    grid-column: 1;
    grid-row: 1;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Hero */

.hero {
    position: relative;
    min-height: 840px;
    padding: 176px 0 96px;
    overflow: hidden;
    isolation: isolate;
    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 13, .97) 0%,
            rgba(8, 8, 13, .85) 44%,
            rgba(8, 8, 13, .42) 100%
        ),
        linear-gradient(180deg, transparent 55%, var(--bg) 100%),
        var(--hero-image, none);
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            115deg,
            rgba(147, 103, 255, .08),
            transparent 42%
        );
}

.hero__layout {
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr);
    align-items: center;
    gap: clamp(40px, 7vw, 100px);
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(255, 255, 255, .82);
}

.eyebrow__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(228, 183, 111, .10);
}

.hero h1 {
    max-width: 750px;
    margin: 24px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(54px, 7vw, 94px);
    line-height: .96;
    letter-spacing: -.065em;
    text-wrap: balance;
}

.hero__lead {
    max-width: 620px;
    margin: 28px 0 0;
    color: rgba(248, 245, 239, .70);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    transition:
        transform .2s ease,
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

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

.button--primary {
    color: #17110a;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    box-shadow: 0 18px 38px rgba(228, 183, 111, .16);
}

.button--ghost {
    border-color: rgba(255, 255, 255, .16);
    color: var(--text);
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(12px);
}

.button--ghost:hover {
    border-color: rgba(228, 183, 111, .45);
    background: rgba(228, 183, 111, .08);
}

.button--light {
    color: var(--text-dark);
    background: var(--surface-light);
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin: 34px 0 0;
    padding: 0;
    color: rgba(248, 245, 239, .52);
    list-style: none;
    font-size: 12px;
    font-weight: 600;
}

.hero__features li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__features li::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.hero__visual {
    position: relative;
    min-height: 530px;
    display: grid;
    place-items: center;
}

.hero-record {
    position: relative;
    width: clamp(300px, 37vw, 480px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        repeating-radial-gradient(
            circle,
            #09090d 0 4px,
            #181821 4px 7px
        );
    box-shadow:
        0 55px 100px rgba(0, 0, 0, .5),
        inset 0 0 0 1px rgba(255, 255, 255, .08);
    animation: record-spin 24s linear infinite;
}

.hero-record::before {
    content: "";
    position: absolute;
    inset: 8%;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: inherit;
}

.hero-record__ring {
    position: absolute;
    inset: 28%;
    border-radius: inherit;
    background:
        radial-gradient(circle, #08080d 0 12%, transparent 13%),
        linear-gradient(145deg, var(--gold), #8f6330);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, .22);
}

.hero-record__label {
    position: relative;
    z-index: 2;
    width: 32%;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-radius: 50%;
    text-align: center;
    color: #17110a;
    font-family: "Manrope", sans-serif;
    background: linear-gradient(145deg, var(--gold-light), var(--gold));
}

.hero-record__label span {
    max-width: 100%;
    overflow: hidden;
    font-size: clamp(11px, 1.6vw, 16px);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-record__label small {
    margin-top: 4px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-note {
    position: absolute;
    z-index: 3;
    width: min(260px, 70%);
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(18, 18, 27, .78);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
    backdrop-filter: blur(18px);
}

.hero-note--top {
    top: 6%;
    right: -2%;
}

.hero-note--bottom {
    left: -2%;
    bottom: 7%;
}

.hero-note__icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--gold);
    background: rgba(228, 183, 111, .10);
}

.hero-note strong,
.hero-note small {
    display: block;
}

.hero-note strong {
    font-size: 13px;
}

.hero-note small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.hero__glow {
    position: absolute;
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .14;
}

.hero__glow--one {
    top: 80px;
    right: 18%;
    background: var(--gold);
}

.hero__glow--two {
    bottom: 0;
    right: 2%;
    background: var(--purple);
}

@keyframes record-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Sections */

.section {
    position: relative;
    padding: clamp(78px, 9vw, 128px) 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
    align-items: end;
    gap: 40px;
    margin-bottom: 44px;
}

.section-heading h2,
.promotion-card h2,
.contact-card h2 {
    margin: 17px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.section-heading > p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

/* Artist cards */

.section--artists {
    padding-top: 72px;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.artist-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: 0 20px 70px rgba(0, 0, 0, .18);
    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.artist-card:hover {
    transform: translateY(-7px);
    border-color: rgba(228, 183, 111, .32);
    box-shadow: 0 32px 90px rgba(0, 0, 0, .30);
}

.artist-card__media {
    position: relative;
    min-height: 270px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 22px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 8, 13, .05), rgba(8, 8, 13, .84)),
        var(--artist-cover, radial-gradient(circle at 30% 20%, #2b2430, #101017 70%));
    background-size: cover;
    background-position: center;
}

.artist-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(228, 183, 111, .06), transparent 42%);
}

.artist-card__profile,
.artist-card__fallback {
    position: relative;
    z-index: 2;
    width: 88px;
    height: 88px;
    border: 3px solid rgba(255, 255, 255, .76);
    border-radius: 50%;
    object-fit: cover;
    background: #101017;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .38);
}

.artist-card__fallback {
    display: grid;
    place-items: center;
    color: var(--gold);
    font-family: "Manrope", sans-serif;
    font-weight: 800;
}

.artist-card__logo {
    position: relative;
    z-index: 2;
    width: auto;
    max-width: 190px;
    max-height: 88px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .45));
}

.artist-card__status {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    background: rgba(8, 8, 13, .48);
    backdrop-filter: blur(12px);
}

.artist-card__body {
    padding: 24px;
}

.artist-card h3 {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -.035em;
}

.artist-card p {
    display: -webkit-box;
    min-height: 70px;
    margin: 13px 0 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.artist-platforms {
    min-height: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 18px;
}

.artist-platforms a {
    padding: 6px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: rgba(248, 245, 239, .63);
    font-size: 10px;
    font-weight: 600;
    transition: color .2s ease, border-color .2s ease;
}

.artist-platforms a:hover {
    color: var(--gold);
    border-color: rgba(228, 183, 111, .32);
}

.artist-card__link {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 700;
}

.artist-card__link span {
    color: var(--gold);
    font-size: 18px;
    transition: transform .2s ease;
}

.artist-card:hover .artist-card__link span {
    transform: translate(3px, -3px);
}

/* Promotion */

.section--promotion {
    padding-top: 38px;
}

.promotion-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: clamp(35px, 7vw, 90px);
    padding: clamp(32px, 6vw, 72px);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(147, 103, 255, .11), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, .055), transparent 50%),
        var(--surface);
    box-shadow: var(--shadow);
}

.promotion-card::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    left: -150px;
    bottom: -220px;
    border: 1px solid rgba(228, 183, 111, .18);
    border-radius: 50%;
    box-shadow:
        0 0 0 45px rgba(228, 183, 111, .025),
        0 0 0 90px rgba(228, 183, 111, .015);
}

.promotion-card__heading,
.promotion-card__content {
    position: relative;
    z-index: 1;
}

.promotion-card__heading > p {
    margin: 21px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

/* Rich content */

.rich-content {
    color: var(--muted);
    line-height: 1.75;
}

.rich-content > :first-child {
    margin-top: 0;
}

.rich-content > :last-child {
    margin-bottom: 0;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4 {
    color: var(--text);
    font-family: "Manrope", sans-serif;
    letter-spacing: -.025em;
}

.rich-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.rich-content .btn,
.rich-content button,
.rich-content input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 11px 19px;
    border: 0;
    border-radius: 999px;
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.rich-content input,
.rich-content textarea,
.rich-content select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--text);
    background: rgba(255, 255, 255, .055);
}

.rich-content textarea {
    min-height: 130px;
    resize: vertical;
}

/* Contact */

.section--contact {
    padding-top: 32px;
}

.contact-card {
    position: relative;
    min-height: 360px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
    padding: clamp(34px, 7vw, 76px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, .18), transparent 22%),
        linear-gradient(135deg, #8b6533, #3b2a19 68%, #221910);
    box-shadow: 0 34px 100px rgba(0, 0, 0, .28);
}

.contact-card__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.contact-card h2 {
    max-width: 750px;
}

.contact-card__content > p {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.75;
}

.contact-card__custom {
    margin-top: 26px;
    color: rgba(255, 255, 255, .74);
}

.contact-card__custom a {
    color: #fff;
}

.contact-card__button {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.contact-card__decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.contact-card__decoration span {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 50%;
}

.contact-card__decoration span:nth-child(1) {
    width: 390px;
    height: 390px;
    right: -180px;
    top: -210px;
}

.contact-card__decoration span:nth-child(2) {
    width: 260px;
    height: 260px;
    right: -95px;
    top: -130px;
}

.contact-card__decoration span:nth-child(3) {
    width: 120px;
    height: 120px;
    right: -20px;
    top: -50px;
}

/* Footer */

.site-footer {
    padding: 48px 0 26px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(200px, .7fr) minmax(260px, 1fr) auto;
    align-items: center;
    gap: 40px;
    padding: 38px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.site-footer__brand img {
    width: auto;
    max-width: 190px;
    max-height: 48px;
    object-fit: contain;
}

.site-footer__brand strong {
    font-family: "Manrope", sans-serif;
}

.site-footer__top > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 18px;
}

.site-footer__links a {
    color: rgba(248, 245, 239, .68);
    font-size: 13px;
    font-weight: 600;
}

.site-footer__links a:hover {
    color: var(--gold);
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    color: #706e79;
    font-size: 12px;
}

/* Responsive */

@media (max-width: 1050px) {
    .artist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero__layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
        gap: 40px;
    }

    .hero-note {
        width: 230px;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__links {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 850px) {
    .site-header {
        padding-top: 10px;
    }

    .site-header__inner {
        border-radius: 24px;
    }

    .menu-toggle {
        display: grid;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 5px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 22px;
        visibility: hidden;
        opacity: 0;
        background: rgba(15, 15, 23, .96);
        box-shadow: 0 28px 70px rgba(0, 0, 0, .4);
        transform: translateY(-10px);
        transition:
            opacity .2s ease,
            transform .2s ease,
            visibility .2s ease;
        backdrop-filter: blur(22px);
    }

    .menu-open .site-nav {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav__link,
    .site-nav__login {
        justify-content: flex-start;
        min-height: 48px;
        margin: 0;
        padding-inline: 16px;
    }

    .hero {
        min-height: auto;
        padding-top: 150px;
    }

    .hero__layout {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero__visual {
        min-height: 430px;
    }

    .hero-record {
        width: min(440px, 80vw);
    }

    .hero-note--top {
        right: 3%;
    }

    .hero-note--bottom {
        left: 3%;
    }

    .section-heading,
    .promotion-card {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: start;
    }

    .section-heading > p {
        max-width: 650px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .contact-card__button {
        width: fit-content;
    }
}

@media (max-width: 640px) {
    .shell,
    .site-header__inner {
        width: min(100% - 24px, var(--shell));
    }

    .site-header__inner {
        min-height: 60px;
        padding: 8px 9px 8px 13px;
    }

    .site-brand__image {
        max-width: 150px;
        height: 36px;
    }

    .site-brand__mark {
        width: 38px;
        height: 38px;
    }

    .site-brand__text {
        max-width: 170px;
        font-size: 14px;
    }

    .site-nav {
        left: 12px;
        right: 12px;
    }

    .hero {
        padding: 135px 0 70px;
        background:
            linear-gradient(180deg, rgba(8, 8, 13, .80), rgba(8, 8, 13, .94) 58%, var(--bg)),
            var(--hero-image, none);
        background-size: cover;
        background-position: center;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 68px);
    }

    .hero__lead {
        font-size: 16px;
    }

    .hero__actions {
        display: grid;
    }

    .button {
        width: 100%;
    }

    .hero__features {
        display: grid;
        gap: 10px;
    }

    .hero__visual {
        min-height: 360px;
    }

    .hero-note {
        width: 210px;
    }

    .hero-note--top {
        top: 0;
        right: 0;
    }

    .hero-note--bottom {
        left: 0;
        bottom: 0;
    }

    .section {
        padding-block: 74px;
    }

    .section-heading {
        gap: 22px;
        margin-bottom: 30px;
    }

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

    .artist-card__media {
        min-height: 300px;
    }

    .promotion-card,
    .contact-card {
        padding: 30px 23px;
        border-radius: 28px;
    }

    .contact-card {
        min-height: 0;
    }

    .contact-card__button {
        width: 100%;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .site-footer__links {
        grid-column: auto;
        justify-content: flex-start;
    }

    .site-footer__bottom {
        flex-direction: column;
        gap: 10px;
    }
}

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