:root {
    --ink: #08070d;
    --ink-2: #0b0912;
    --panel: #131120;
    --panel-2: #191627;
    --panel-3: #211d31;
    --line: rgba(255, 255, 255, .08);
    --line-strong: rgba(255, 255, 255, .16);
    --text: #f7f5fc;
    --muted: #918ca6;
    --muted-2: #6d6883;
    --magenta: #ff2e6d;
    --pink: #ff4f97;
    --orange: #ff8a1f;
    --amber: #ffb52e;
    --cyan: #2fd6c8;
    --violet: #8b5cf6;
    --purple: #a855f7;
    --blue: #2f7dff;
    --lime: #d9ff3d;
    --grad-warm: linear-gradient(96deg, #ff2e6d 0%, #ff5a3c 48%, #ff9a1f 100%);
    --grad-warm-soft: linear-gradient(96deg, rgba(255, 46, 109, .16), rgba(255, 154, 31, .16));
    --grad-cool: linear-gradient(120deg, #8b5cf6, #2fd6c8);
    --rail: 186px;
    --rail-gap: 160px;
    --gutter: 30px;
    --shell: 1440px;
    --radius-s: 8px;
    --radius: 16px;
    --radius-l: 26px;
    --pill: 999px;
    --font-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
    --font-logo: "Anton", "Montserrat", Impact, sans-serif;
    --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

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

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

body {
    margin: 0;
    background: var(--ink);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

p {
    margin: 0;
}

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

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    padding: 12px 20px;
    background: var(--orange);
    color: #14100a;
    font-weight: 700;
}

.skip-link:focus {
    left: 12px;
    top: 12px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.wrap {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.text-grad {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-cyan {
    color: var(--cyan);
}

.text-orange {
    color: #ff7a2f;
}

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

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--grad-warm);
    box-shadow: 0 0 14px rgba(255, 90, 60, .8);
}

.eyebrow--plain::before {
    display: none;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: var(--pill);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}

.btn svg {
    flex: none;
    width: 14px;
    height: 14px;
}

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

.btn--outline {
    border: 1px solid rgba(255, 255, 255, .28);
    color: var(--text);
    background: rgba(10, 8, 16, .35);
    backdrop-filter: blur(6px);
}

.btn--outline:hover {
    border-color: rgba(255, 255, 255, .6);
    background: rgba(255, 255, 255, .07);
}

.btn--gradient {
    position: relative;
    color: var(--text);
    background: rgba(11, 9, 18, .78);
    border: 1px solid transparent;
    background-image: linear-gradient(rgba(11, 9, 18, .92), rgba(11, 9, 18, .92)), var(--grad-warm);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 15px 26px;
}

.btn--gradient:hover {
    background-image: linear-gradient(rgba(24, 12, 18, .86), rgba(24, 12, 18, .86)), var(--grad-warm);
}

.btn--solid {
    background: var(--grad-warm);
    color: #17100c;
    font-weight: 800;
}

.btn--light {
    background: var(--text);
    color: #14111c;
    font-weight: 800;
}

.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .24);
    color: var(--text);
    background: rgba(11, 9, 18, .4);
    transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}

.icon-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .08);
}

.icon-btn svg {
    width: 16px;
    height: 16px;
}

.icon-btn--grad {
    border-color: transparent;
    background: linear-gradient(rgba(11, 9, 18, 1), rgba(11, 9, 18, 1)) padding-box, var(--grad-warm) border-box;
    border: 1px solid transparent;
}

.icon-btn--lg {
    width: 62px;
    height: 62px;
}

.icon-btn--lg svg {
    width: 20px;
    height: 20px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .3s var(--ease), gap .3s var(--ease);
}

.text-link svg {
    width: 13px;
    height: 13px;
}

.text-link:hover {
    color: var(--text);
    gap: 18px;
}

/* ---------- Hero shell + rail ---------- */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 0;
    background: radial-gradient(120% 90% at 82% 4%, rgba(140, 40, 200, .22), transparent 58%), var(--ink);
}

.hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: var(--rail) minmax(0, 1fr);
    column-gap: var(--rail-gap);
    align-items: start;
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 26px var(--gutter) 0;
    min-height: 566px;
}

.brand {
    display: inline-block;
    line-height: 1;
}

.brand__mark {
    display: block;
    font-family: var(--font-logo);
    font-size: 50px;
    font-weight: 400;
    line-height: .9;
    letter-spacing: -.012em;
    color: var(--text);
}

.brand__word {
    display: block;
    margin-top: 7px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--muted);
}

.brand__image {
    width: auto;
    max-height: 62px;
}

.rail {
    position: relative;
    z-index: 6;
}

.rail-nav {
    margin-top: 84px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.rail-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(247, 245, 252, .74);
    transition: color .3s var(--ease), transform .3s var(--ease);
}

.rail-nav__link::after {
    content: "";
    width: 0;
    height: 7px;
    background: linear-gradient(90deg, #ff5a3c, #ff9a1f);
    clip-path: polygon(0 43%, 68% 43%, 68% 0, 100% 50%, 68% 100%, 68% 57%, 0 57%);
    transition: width .3s var(--ease);
}

.rail-nav__link:hover {
    color: var(--text);
    transform: translateX(2px);
}

.rail-nav__link:hover::after {
    width: 15px;
}

.rail-nav__link.is-active {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rail-nav__link.is-active::after {
    width: 17px;
}

.rail-sub {
    margin: 10px 0 0 2px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rail-sub a {
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.rail-sub a:hover {
    color: var(--text);
}

.rail-divider {
    height: 1px;
    margin: 42px 0 30px;
    background: linear-gradient(90deg, var(--line-strong), transparent);
}

.rail-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rail-cta__label {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.rail-cta .icon-btn {
    width: 34px;
    height: 34px;
}

.rail-cta .icon-btn svg {
    width: 12px;
    height: 12px;
}

.rail-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.rail-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted-2);
    transition: color .3s var(--ease);
}

.rail-social svg {
    width: 12px;
    height: 12px;
    flex: none;
    opacity: .75;
}

.rail-social a:hover {
    color: var(--text);
}

.rail-social a:hover svg {
    opacity: 1;
}

/* ---------- Topbar ---------- */
.topbar {
    position: absolute;
    z-index: 8;
    top: 26px;
    right: 0;
    width: 100%;
    max-width: var(--shell);
    left: 50%;
    transform: translateX(-50%);
    padding: 0 var(--gutter);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}

.topbar > * {
    pointer-events: auto;
}

.topbar__brand {
    margin-right: auto;
}

.topbar__brand--compact {
    display: none;
}

.brand--topbar .brand__mark {
    font-size: 34px;
}

.brand--topbar .brand__word {
    margin-top: 2px;
    font-size: 8px;
    letter-spacing: .38em;
}

.brand--topbar .brand__image {
    max-height: 48px;
}

.dots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dots span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
}

/* ---------- Hero content ---------- */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(72% 52% at 26% 60%, rgba(8, 7, 13, .95) 0%, rgba(8, 7, 13, .62) 55%, rgba(8, 7, 13, 0) 78%),
        linear-gradient(99deg, var(--ink) 0%, rgba(8, 7, 13, .98) 33%, rgba(8, 7, 13, .84) 50%, rgba(8, 7, 13, .42) 66%, rgba(8, 7, 13, 0) 80%),
        linear-gradient(0deg, var(--ink) 0%, rgba(8, 7, 13, .72) 16%, rgba(8, 7, 13, 0) 44%);
}

.hero__main {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.hero__content {
    position: relative;
    z-index: 4;
    padding-top: 146px;
    max-width: 830px;
}

.hero__title {
    margin: 18px 0 0;
    font-size: clamp(30px, 5.83vw, 84px);
    line-height: 1.08;
    letter-spacing: -.028em;
}

.hero__title > span {
    display: block;
    white-space: nowrap;
}

.hero__text {
    margin-top: 20px;
    max-width: 560px;
    font-size: 13.5px;
    line-height: 1.62;
    color: var(--muted);
}

.hero__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

/* ---------- Hero visual ---------- */
.hero__visual {
    position: absolute;
    z-index: 1;
    top: -46px;
    right: -6vw;
    width: min(76vw, 1130px);
    aspect-ratio: 1130 / 740;
    pointer-events: none;
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: 6% 8% 10% 6%;
    background: radial-gradient(60% 60% at 40% 30%, rgba(255, 46, 109, .55), transparent 70%),
        radial-gradient(55% 55% at 75% 55%, rgba(47, 125, 255, .45), transparent 72%),
        radial-gradient(50% 50% at 30% 80%, rgba(139, 92, 246, .5), transparent 70%);
    filter: blur(64px);
    opacity: .95;
}

.hero__frame {
    position: absolute;
    inset: 0;
    transform: rotate(-6.5deg);
    clip-path: polygon(23% 11%, 100% -4%, 100% 84%, 7% 100%);
    overflow: hidden;
}

.hero__frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: rotate(7deg) scale(1.3);
    filter: saturate(1.38) contrast(1.08) hue-rotate(-28deg);
}

.hero__frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(103deg, rgba(8, 7, 13, .99) 6%, rgba(8, 7, 13, .9) 26%, rgba(8, 7, 13, .52) 46%, rgba(8, 7, 13, 0) 66%),
        linear-gradient(0deg, rgba(8, 7, 13, .9), transparent 46%);
}

.hero__badge {
    position: absolute;
    z-index: 6;
    right: 110px;
    bottom: 118px;
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(8, 7, 13, .45);
    backdrop-filter: blur(4px);
}

.hero__badge svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin 22s linear infinite;
}

.hero__badge span {
    position: relative;
    font-family: var(--font-logo);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -.02em;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

@media (prefers-reduced-motion: reduce) {
    .hero__badge svg {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ---------- Stats ---------- */
.stats {
    position: relative;
    z-index: 4;
    width: 100%;
    max-width: var(--shell);
    margin: 46px auto 0;
    padding: 0 var(--gutter);
}

.hero .stats {
    width: auto;
    margin: 46px 0 0 -84px;
    padding: 0;
    max-width: none;
}

.stats__bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 24px 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    background: linear-gradient(180deg, rgba(28, 24, 42, .92), rgba(15, 13, 24, .92));
    box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .9);
}

.stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 2px 20px;
    border-left: 1px solid var(--line);
}

.stat:first-child {
    border-left: 0;
    padding-left: 4px;
}

.stat__icon {
    flex: none;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
}

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

.stat__value {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
}

.stat__label {
    display: block;
    margin-top: 5px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- Section frame ---------- */
.section {
    padding: 48px 0 44px;
}

.section--tight {
    padding: 26px 0 18px;
}

.section--flush {
    padding: 0;
}

.section__head {
    display: flex;
    align-items: flex-end;
    gap: 28px;
    margin-bottom: 34px;
}

.section__title {
    font-size: clamp(24px, 3.34vw, 48px);
    line-height: 1.12;
    letter-spacing: -.03em;
}

.section__title small {
    display: block;
    font-family: var(--font-display);
    font-size: inherit;
    font-weight: 900;
    color: var(--muted-2);
}

.section__arrow {
    flex: 1;
    height: 12px;
    min-width: 60px;
    margin-bottom: 8px;
}

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

.section__head .text-link {
    margin-bottom: 8px;
    flex: none;
}

/* ---------- Artist cards ---------- */
.artist-rail {
    position: relative;
}

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

.artist-card {
    position: relative;
    display: block;
}

.artist-card__media {
    position: relative;
    aspect-ratio: 213 / 268;
    overflow: hidden;
    transform: skewX(-4.2deg);
    background: var(--card-grad, linear-gradient(160deg, #6d28d9, #a855f7));
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.artist-card:hover .artist-card__media {
    transform: skewX(-4.2deg) translateY(-8px);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .9);
}

.artist-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(6, 5, 10, .58));
    opacity: 0;
    transition: opacity .45s var(--ease);
}

.artist-card:hover .artist-card__media::after {
    opacity: 1;
}

.artist-card__media img {
    position: absolute;
    inset: 0;
    width: 112%;
    height: 100%;
    margin-left: -6%;
    object-fit: cover;
    object-position: top center;
    transform: skewX(4.2deg) scale(1.04);
    mix-blend-mode: luminosity;
    filter: contrast(1.06);
}

.artist-card__media img.is-plain {
    mix-blend-mode: normal;
    filter: none;
}

.artist-card__initials {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    transform: skewX(4.2deg);
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    color: rgba(255, 255, 255, .82);
}

.artist-card__body {
    margin-top: 15px;
}

.artist-card__name {
    font-size: clamp(13px, 1.52vw, 22px);
    line-height: 1.14;
    letter-spacing: -.025em;
}

.artist-card__genre {
    margin-top: 5px;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .1em;
    color: var(--muted-2);
    text-transform: capitalize;
}

.artist-rail__next {
    position: absolute;
    right: -14px;
    top: 40%;
    z-index: 5;
    background: var(--panel-2);
    border-color: var(--line-strong);
}

.accent-magenta {
    --card-grad: linear-gradient(155deg, #ff2e6d 0%, #c81d63 62%, #7a0f45 100%);
}

.accent-orange {
    --card-grad: linear-gradient(155deg, #ffa53d 0%, #ff7a1f 55%, #c04a00 100%);
}

.accent-violet {
    --card-grad: linear-gradient(155deg, #a855f7 0%, #7c3aed 58%, #4c1d95 100%);
}

.accent-purple {
    --card-grad: linear-gradient(155deg, #8b5cf6 0%, #6d28d9 58%, #3b0f77 100%);
}

.accent-blue {
    --card-grad: linear-gradient(155deg, #4e9bff 0%, #1d4ed8 58%, #0b2a6b 100%);
}

.accent-cyan {
    --card-grad: linear-gradient(155deg, #2fd6c8 0%, #0f9c93 58%, #05464f 100%);
}

.accent-lime {
    --card-grad: linear-gradient(155deg, #d9ff3d 0%, #8fbf00 58%, #3f5600 100%);
}

/* ---------- About split ---------- */
.about {
    display: grid;
    grid-template-columns: 39.5% minmax(0, 1fr);
    align-items: stretch;
    background: var(--ink-2);
}

.about__media {
    position: relative;
    min-height: 268px;
    overflow: hidden;
}

.about__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 82%;
    filter: grayscale(1) contrast(1.42) brightness(1.55);
}

.about__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 7, 13, .35), transparent 40%, rgba(11, 9, 18, .9));
}

.about__body {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 14px clamp(28px, 6vw, 120px) 14px clamp(28px, 4.6vw, 76px);
}

.about__ghost {
    position: absolute;
    left: 4.2%;
    top: 58%;
    transform: translateY(-48%);
    font-family: var(--font-logo);
    font-size: clamp(130px, 15vw, 216px);
    font-weight: 400;
    letter-spacing: -.03em;
    line-height: .78;
    color: rgba(255, 255, 255, .05);
    pointer-events: none;
    user-select: none;
}

.about__title {
    position: relative;
    max-width: 600px;
    font-size: clamp(21px, 2.18vw, 31px);
    line-height: 1.14;
}

.about__title strong {
    font-weight: 900;
    font-size: 1.42em;
    letter-spacing: -.035em;
}

.about__title span {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about__text {
    position: relative;
    margin-top: 22px;
    max-width: 400px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--muted);
}

.about__sign {
    position: relative;
    margin-top: 30px;
    width: 132px;
    height: 54px;
    color: var(--lime);
}

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

.about__link {
    position: relative;
    margin-top: 26px;
}

/* ---------- Services ---------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-card__media {
    position: relative;
    aspect-ratio: 16 / 15;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .5s var(--ease);
}

.service-card:hover .service-card__media img {
    transform: translateY(-6px) scale(1.04);
}

.service-card__title {
    font-size: 14px;
    letter-spacing: -.01em;
    line-height: 1.2;
}

.service-card__text {
    font-size: 11px;
    line-height: 1.66;
    color: var(--muted-2);
}

/* ---------- Partners ---------- */
.partners__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.partners__title {
    font-size: clamp(17px, 1.5vw, 22px);
    letter-spacing: .01em;
}

.partners__dots {
    display: flex;
    gap: 7px;
}

.partners__dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--muted-2);
    opacity: .55;
}

.partners__dots span:nth-child(1) {
    background: var(--magenta);
    opacity: 1;
}

.partners__dots span:nth-child(2) {
    background: var(--orange);
    opacity: 1;
}

.partners__dots span:nth-child(3) {
    background: var(--amber);
    opacity: 1;
}

.partners__dots span:nth-child(4) {
    background: var(--cyan);
    opacity: 1;
}

.partners__strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: center;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(24, 21, 36, .5), rgba(12, 10, 20, .5));
}

.partner {
    display: grid;
    place-items: center;
    height: 90px;
    padding: 10px 18px;
    overflow: hidden;
    border-left: 1px solid var(--line);
}

.partner:first-child {
    border-left: 0;
}

.partner img {
    width: 100%;
    height: 86px;
    object-fit: contain;
    transform: scale(1.38);
    filter: invert(1) grayscale(1) brightness(1.85) contrast(1.28);
    mix-blend-mode: screen;
    opacity: .82;
    transition: opacity .35s var(--ease), transform .35s var(--ease);
}

.partner:hover img {
    opacity: 1;
    transform: scale(1.46);
}

.partner__text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .04em;
    color: rgba(247, 245, 252, .58);
    text-align: center;
    transition: color .35s var(--ease);
}

.partner:hover .partner__text {
    color: var(--text);
}

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    display: grid;
    grid-template-columns: 56% minmax(0, 1fr);
    overflow: hidden;
}

.cta-band__panel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 28px clamp(24px, 4vw, 60px) 28px max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter)));
    background: var(--grad-warm);
    color: #180d08;
}

.cta-band__panel::after {
    content: "";
    position: absolute;
    top: 0;
    right: -60px;
    width: 120px;
    height: 100%;
    background: var(--grad-warm);
    transform: skewX(-9deg);
}

.cta-band__title {
    position: relative;
    z-index: 2;
    max-width: 400px;
    font-size: clamp(20px, 1.97vw, 29px);
    line-height: 1.14;
    color: #190d07;
}

.cta-band__panel .icon-btn {
    position: relative;
    z-index: 2;
    flex: none;
    border-color: rgba(24, 13, 8, .32);
    background: rgba(255, 255, 255, .9);
    color: #190d07;
}

.cta-band__panel .icon-btn:hover {
    background: #fff;
}

.cta-band__aside {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px max(var(--gutter), calc((100vw - var(--shell)) / 2 + var(--gutter))) 26px 60px;
    background: var(--ink-2);
    overflow: hidden;
}

.cta-band__aside img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .34;
}

.cta-band__aside::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11, 9, 18, .95), rgba(11, 9, 18, .5) 55%, rgba(11, 9, 18, .8));
}

.cta-band__phones {
    position: relative;
    z-index: 2;
}

.cta-band__phones a {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(15px, 1.5vw, 20px);
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--text);
    transition: color .3s var(--ease);
}

.cta-band__phones a + a {
    margin-top: 6px;
    color: var(--muted);
}

.cta-band__phones a:hover {
    color: var(--orange);
}

/* ---------- Footer ---------- */
.site-footer {
    padding: 22px 0 18px;
    background: var(--ink);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.footer-brand .brand__mark {
    font-size: 50px;
}

.footer-brand__copy {
    margin-top: 12px;
    max-width: 210px;
    font-size: 10.5px;
    line-height: 1.7;
    color: var(--muted-2);
}

.footer-col__title {
    margin-bottom: 13px;
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-col a,
.footer-col span {
    font-size: 11px;
    color: rgba(247, 245, 252, .68);
    transition: color .3s var(--ease);
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 8px;
}

.footer-credit {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted-2);
    opacity: .55;
    transition: opacity .3s var(--ease);
}

.footer-credit:hover {
    opacity: 1;
}

.footer-credit a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-credit span {
    font-weight: 700;
    color: rgba(247, 245, 252, .82);
}

.footer-credit a:hover span {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-bottom__note {
    font-size: 10.5px;
    color: var(--muted-2);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    border: 1px solid var(--line);
    color: var(--muted);
    transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.footer-social svg {
    width: 14px;
    height: 14px;
}

.footer-social a:hover {
    color: var(--text);
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, .06);
}

/* ---------- Overlay nav ---------- */
.overlay-nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    grid-template-rows: auto 1fr;
    background: rgba(6, 5, 11, .97);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s var(--ease), visibility .35s var(--ease);
}

.overlay-nav.is-open {
    opacity: 1;
    visibility: visible;
}

.overlay-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 26px var(--gutter);
}

.overlay-nav__body {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 10px var(--gutter) 50px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-content: start;
}

.overlay-nav__list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.overlay-nav__list > li > a {
    display: block;
    padding: 10px 0;
    font-family: var(--font-display);
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 900;
    letter-spacing: -.02em;
    text-transform: uppercase;
    color: rgba(247, 245, 252, .82);
    transition: color .3s var(--ease), transform .3s var(--ease);
}

.overlay-nav__list > li > a:hover,
.overlay-nav__list > li > a.is-active {
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: translateX(8px);
}

.overlay-nav__sub {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    padding: 2px 0 12px;
}

.overlay-nav__sub a {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.overlay-nav__sub a:hover {
    color: var(--text);
}

.overlay-nav__meta {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding-top: 16px;
}

.overlay-nav__meta h3 {
    font-size: 10px;
    font-family: var(--font-body);
    letter-spacing: .24em;
    color: var(--muted-2);
    margin-bottom: 10px;
}

.overlay-nav__meta a {
    display: block;
    font-size: 14px;
    color: rgba(247, 245, 252, .8);
}

.overlay-nav__meta a:hover {
    color: var(--orange);
}

/* ---------- Inner page header ---------- */
.page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 116px 0 58px;
    background: radial-gradient(90% 120% at 88% -10%, rgba(255, 46, 109, .2), transparent 60%),
        radial-gradient(70% 100% at 8% 0%, rgba(139, 92, 246, .18), transparent 62%), var(--ink);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .2;
}

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

.page-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 7, 13, .7), var(--ink));
}

.page-hero__title {
    margin-top: 16px;
    font-size: clamp(28px, 3.76vw, 53px);
    line-height: 1.12;
    max-width: 900px;
}

.page-hero__text {
    margin-top: 20px;
    max-width: 560px;
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--muted);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.breadcrumb a:hover {
    color: var(--text);
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 8px;
    color: rgba(255, 255, 255, .2);
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

/* ---------- Filters / chips ---------- */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 17px;
    border: 1px solid var(--line);
    border-radius: var(--pill);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(255, 255, 255, .02);
    transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.chip small {
    font-size: 9px;
    opacity: .65;
}

.chip:hover {
    color: var(--text);
    border-color: var(--line-strong);
}

.chip.is-active {
    color: #1a0f0a;
    border-color: transparent;
    background: var(--grad-warm);
}

.search-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 30px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field > label,
.form-label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
}

.input,
.textarea,
.select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 13.5px;
    transition: border-color .3s var(--ease), background .3s var(--ease);
}

.textarea {
    min-height: 132px;
    resize: vertical;
}

.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23918ca6' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 40px;
}

.input:focus,
.textarea:focus,
.select:focus {
    outline: none;
    border-color: rgba(255, 138, 31, .7);
    background: rgba(255, 255, 255, .05);
}

.input::placeholder,
.textarea::placeholder {
    color: var(--muted-2);
}

.field-error {
    font-size: 11px;
    color: #ff7a8f;
}

/* ---------- Grid of artists on listing ---------- */
.artist-grid--list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px 18px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 52px;
}

.pagination a,
.pagination span {
    display: grid;
    place-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.pagination a:hover {
    color: var(--text);
    border-color: var(--line-strong);
}

.pagination .is-current {
    color: #1a0f0a;
    border-color: transparent;
    background: var(--grad-warm);
}

/* ---------- Detail layouts ---------- */
.detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 388px;
    gap: 56px;
    align-items: start;
}

.detail__figure {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--panel);
}

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

.prose {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(247, 245, 252, .8);
}

.prose > * + * {
    margin-top: 18px;
}

.prose h2,
.prose h3,
.prose h4 {
    margin-top: 34px;
    font-size: 19px;
    letter-spacing: -.01em;
    color: var(--text);
}

.prose a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose ul,
.prose ol {
    padding-left: 20px;
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li + li {
    margin-top: 8px;
}

.prose img {
    border-radius: var(--radius);
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.prose th,
.prose td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.panel {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    background: linear-gradient(180deg, rgba(28, 24, 42, .8), rgba(14, 12, 22, .8));
}

.panel__title {
    font-size: 17px;
    margin-bottom: 8px;
}

.panel__text {
    font-size: 12px;
    line-height: 1.7;
    color: var(--muted);
}

.meta-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 22px;
}

.meta-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-top: 1px solid var(--line);
    font-size: 12px;
}

.meta-list dt,
.meta-list .meta-key {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.meta-list .meta-val {
    font-weight: 600;
    color: var(--text);
    text-align: right;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.form-grid .field--full {
    grid-column: 1 / -1;
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 12.5px;
    line-height: 1.6;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.alert--ok {
    border-color: rgba(47, 214, 200, .35);
    background: rgba(47, 214, 200, .1);
    color: #a7f3ea;
}

.alert--err {
    border-color: rgba(255, 46, 109, .35);
    background: rgba(255, 46, 109, .1);
    color: #ffb3c6;
}

/* ---------- Gallery ---------- */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.gallery figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--panel);
    aspect-ratio: 1 / 1;
}

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

.gallery figure:hover img {
    transform: scale(1.06);
}

/* ---------- Price table ---------- */
.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.price-table th {
    padding: 0 20px 12px;
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted-2);
    text-align: left;
}

.price-table td {
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(26, 23, 39, .8), rgba(15, 13, 24, .8));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    vertical-align: middle;
}

.price-table tbody tr td:first-child {
    border-left: 1px solid var(--line);
    border-radius: 14px 0 0 14px;
}

.price-table tbody tr td:last-child {
    border-right: 1px solid var(--line);
    border-radius: 0 14px 14px 0;
    text-align: right;
}

.price-table__name {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.price-table__thumb {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--panel-2);
}

.price-table__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-cards {
    display: none;
}

/* ---------- Reference / concert cards ---------- */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
}

.ref-card {
    display: grid;
    place-items: center;
    gap: 14px;
    padding: 30px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(25, 22, 39, .7), rgba(13, 11, 20, .7));
    transition: border-color .35s var(--ease), transform .35s var(--ease);
}

.ref-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
}

.ref-card img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
    filter: invert(1) grayscale(1) brightness(1.3) contrast(1.18);
    mix-blend-mode: screen;
    opacity: .74;
    transition: filter .35s var(--ease), opacity .35s var(--ease);
}

.ref-card:hover img {
    filter: invert(1) grayscale(1) brightness(1.72) contrast(1.24);
    opacity: 1;
}

.ref-card__name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    text-align: center;
}

.concert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.concert-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4 / 5;
    background: var(--panel);
}

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

.concert-card:hover img {
    transform: scale(1.06);
}

.concert-card__body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px 20px;
    background: linear-gradient(180deg, transparent, rgba(6, 5, 11, .92));
}

.concert-card__title {
    font-size: 14px;
}

.concert-card__meta {
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ---------- Service list page ---------- */
.service-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.service-tile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    background: linear-gradient(180deg, rgba(25, 22, 39, .72), rgba(13, 11, 20, .72));
    transition: border-color .35s var(--ease), transform .35s var(--ease);
}

.service-tile:hover {
    border-color: var(--line-strong);
    transform: translateY(-5px);
}

.service-tile__media {
    position: relative;
    display: block;
    flex: none;
    height: 176px;
    margin-bottom: 2px;
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 18px;
    overflow: hidden;
    background: radial-gradient(120% 115% at 50% 16%, rgba(255, 255, 255, .06), rgba(255, 255, 255, 0) 74%);
}

.service-tile__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 18px;
    object-fit: contain;
    transition: transform .5s var(--ease);
}

.service-tile:hover .service-tile__media img {
    transform: translateY(-5px) scale(1.03);
}

.service-tile__media--wide {
    height: 230px;
}

.service-tile__title {
    font-size: 17px;
}

.service-tile__text {
    font-size: 12.5px;
    line-height: 1.7;
    color: var(--muted);
}

.service-tile .text-link {
    margin-top: auto;
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .02);
}

.contact-card + .contact-card {
    margin-top: 12px;
}

.contact-card__label {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted-2);
}

.contact-card__value {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.contact-card__value:hover {
    color: var(--orange);
}

.map-frame {
    margin-top: 40px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-l);
    aspect-ratio: 16 / 7;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(.92) contrast(.86);
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .02);
    overflow: hidden;
}

.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    font-size: 18px;
    color: var(--orange);
}

.faq details[open] summary::after {
    content: "–";
}

.faq p {
    padding: 0 22px 20px;
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}

/* ---------- Error page ---------- */
.error-hero {
    padding: 130px 0 70px;
    text-align: center;
}

.error-hero__code {
    font-family: var(--font-logo);
    font-size: clamp(90px, 16vw, 210px);
    font-weight: 400;
    line-height: .82;
    letter-spacing: -.05em;
    background: var(--grad-warm);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.error-hero__title {
    margin-top: 10px;
    font-size: clamp(23px, 3.2vw, 41px);
    line-height: 1.12;
}

.error-hero__text {
    margin: 20px auto 0;
    max-width: 520px;
    font-size: 13.5px;
    color: var(--muted);
}

.error-hero__actions {
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 1320px) {
    :root {
        --rail: 168px;
        --rail-gap: 76px;
    }

    .stats__bar {
        margin-left: 0;
    }

    .stats__bar {
        padding: 24px 28px;
    }

    .artist-grid,
    .artist-grid--list,
    .service-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .partners__strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .partner:nth-child(4) {
        border-left: 0;
    }
}

@media (max-width: 1100px) {
    .detail {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-band {
        grid-template-columns: minmax(0, 1fr);
    }

    .cta-band__panel {
        padding: 38px var(--gutter);
    }

    .cta-band__panel::after {
        display: none;
    }

    .cta-band__aside {
        padding: 30px var(--gutter);
    }

    .overlay-nav__body {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }
}

@media (max-width: 960px) {
    .hero {
        padding-bottom: 34px;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
        padding-top: 20px;
    }

    .rail {
        display: none;
    }

    .topbar {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        justify-content: space-between;
        padding-top: 18px;
        padding-bottom: 6px;
    }

    .topbar__brand--compact {
        display: block;
    }

    .hero {
        padding-bottom: 34px;
    }

    .hero::before {
        background: linear-gradient(180deg, rgba(8, 7, 13, .35) 0%, rgba(8, 7, 13, .55) 55%, rgba(8, 7, 13, .9) 100%);
    }

    .hero__main {
        min-height: 0;
        position: relative;
    }

    .hero__content {
        padding-top: 96px;
        max-width: none;
    }

    .hero .stats {
        margin: 30px 0 0;
    }

    .hero__visual {
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
        width: auto;
        height: auto;
        margin: 0;
        aspect-ratio: auto;
    }

    .hero__visual::before {
        inset: 0;
        filter: blur(78px);
        opacity: .6;
    }

    .hero__frame {
        transform: none;
        clip-path: none;
    }

    .hero__frame img {
        transform: none;
        filter: saturate(1.32) contrast(1.05) hue-rotate(-24deg);
    }

    .hero__frame::after {
        background: linear-gradient(180deg, rgba(8, 7, 13, .62) 0%, rgba(8, 7, 13, .78) 42%, rgba(8, 7, 13, .95) 78%, var(--ink) 100%);
    }

    .hero__badge {
        position: absolute;
        z-index: 6;
        top: 0;
        right: 0;
        bottom: auto;
        left: auto;
        width: 84px;
        height: 84px;
        background: none;
        backdrop-filter: none;
    }

    .hero__badge span {
        font-size: 20px;
    }

    .stats {
        margin-top: 26px;
    }

    .stats__bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4px 0;
        padding: 20px;
    }

    .stat {
        padding: 14px 12px;
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .stat:first-child,
    .stat:nth-child(2) {
        border-top: 0;
    }

    .stat:nth-child(even) {
        border-left: 1px solid var(--line);
    }

    .about {
        grid-template-columns: minmax(0, 1fr);
    }

    .about__media {
        min-height: 260px;
    }

    .about__body {
        padding: 44px var(--gutter);
    }

    .section {
        padding: 58px 0;
    }

    .section__head {
        flex-wrap: wrap;
        gap: 14px;
    }

    .section__arrow {
        display: none;
    }

    .section__head .text-link {
        margin-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .page-hero {
        padding: 34px 0 44px;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 14.5px;
    }

    .artist-grid,
    .artist-grid--list,
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 14px;
    }

    .artist-rail__next {
        display: none;
    }

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

    .partner {
        height: 84px;
        border-top: 1px solid var(--line);
    }

    .partner:nth-child(odd) {
        border-left: 0;
    }

    .partner:nth-child(1),
    .partner:nth-child(2) {
        border-top: 0;
    }

    .service-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .price-table {
        display: none;
    }

    .price-cards {
        display: grid;
        gap: 12px;
    }

    .price-card {
        display: grid;
        gap: 10px;
        padding: 18px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: linear-gradient(180deg, rgba(26, 23, 39, .8), rgba(15, 13, 24, .8));
    }

    .price-card__top {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .price-card__meta {
        display: flex;
        flex-wrap: wrap;
        gap: 6px 16px;
        font-size: 11px;
        color: var(--muted);
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    :root {
        --gutter: 20px;
    }

    .brand__mark {
        font-size: 42px;
    }

    .hero__title {
        font-size: clamp(30px, 9.4vw, 40px);
    }

    .hero__badge {
        display: none;
    }

    .hero__content {
        padding-top: 74px;
    }

    .stats__bar {
        grid-template-columns: minmax(0, 1fr);
    }

    .stat:nth-child(2) {
        border-top: 1px solid var(--line);
    }

    .stat:nth-child(even) {
        border-left: 0;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* ---------- WhatsApp yüzen buton ---------- */
.wa-float {
    position: fixed;
    z-index: 90;
    right: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    max-width: 56px;
    height: 56px;
    padding: 0;
    border-radius: var(--pill);
    background: linear-gradient(135deg, #29c76f, #128c4a);
    color: #04220f;
    box-shadow: 0 16px 34px -14px rgba(18, 140, 74, .85), 0 0 0 1px rgba(255, 255, 255, .12) inset;
    overflow: hidden;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .55s var(--ease), opacity .45s var(--ease), max-width .45s var(--ease), box-shadow .35s var(--ease);
}

.wa-float.is-ready {
    transform: translateY(0);
    opacity: 1;
}

.wa-float__icon {
    flex: none;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    color: #fff;
}

.wa-float__icon svg {
    width: 28px;
    height: 28px;
}

.wa-float__text {
    padding-right: 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    white-space: nowrap;
    color: #04220f;
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.wa-float:hover,
.wa-float:focus-visible {
    max-width: 320px;
    box-shadow: 0 20px 40px -14px rgba(18, 140, 74, .95), 0 0 0 1px rgba(255, 255, 255, .2) inset;
}

.wa-float:hover .wa-float__text,
.wa-float:focus-visible .wa-float__text {
    opacity: 1;
}

.wa-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(41, 199, 111, .55);
    animation: wa-pulse 2.8s var(--ease) infinite;
    pointer-events: none;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(41, 199, 111, .5);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(41, 199, 111, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(41, 199, 111, 0);
    }
}

@media (max-width: 720px) {
    .wa-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        max-width: 52px;
        height: 52px;
    }

    .wa-float__icon {
        width: 52px;
        height: 52px;
    }

    .wa-float__text {
        display: none;
    }

    .wa-float:hover,
    .wa-float:focus-visible {
        max-width: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-float {
        transition: none;
        transform: translateY(0);
        opacity: 1;
    }

    .wa-float::after {
        animation: none;
    }
}
