:root {
    --ev-color-bg: #050505;
    --ev-color-surface: #101010;
    --ev-color-surface-alt: #171717;
    --ev-color-primary: #e10613;
    --ev-color-secondary: #ff2b2b;
    --ev-color-text: #f5f7fb;
    --ev-color-muted: #97a0b1;
    --ev-content-width: 1440px;
    --ev-radius-xl: 38px;
    --ev-radius-lg: 28px;
    --ev-radius-md: 18px;
    --ev-radius-sm: 12px;
    --ev-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
    --ev-border: rgba(255, 255, 255, 0.08);
    --ev-line: rgba(255, 255, 255, 0.06);
    --ev-hero-image: none;
    --ev-hero-overlay-opacity: 0.62;
    --ev-header-offset: 90px;
    --ev-script-font: "Brush Script MT", "Segoe Script", cursive;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top center, rgba(225, 6, 19, 0.18), transparent 28%),
        linear-gradient(180deg, #020202 0%, #050505 42%, #020202 100%);
    color: var(--ev-color-text);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 160px, 160px 100%;
    mix-blend-mode: screen;
}

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

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

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

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

.ev-container {
    width: min(calc(100% - 48px), var(--ev-content-width));
    margin: 0 auto;
}

.ev-site-shell {
    position: relative;
    isolation: isolate;
}

.ev-site-topbar {
    position: relative;
    z-index: 55;
    border-bottom: 1px solid var(--ev-line);
    background: rgba(0, 0, 0, 0.86);
}

.ev-site-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 34px;
}

.ev-site-topbar__label,
.ev-site-topbar__meta,
.ev-site-topbar__meta a {
    color: var(--ev-color-muted);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ev-site-topbar__meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ev-site-topbar .ev-social-links {
    gap: 8px;
}

.ev-site-topbar .ev-social-link {
    min-height: 24px;
    padding: 0 8px;
    border: 0;
    background: transparent;
}

.ev-site-topbar .ev-social-link__mark {
    width: 18px;
    height: 18px;
    font-size: 9px;
}

.ev-site-topbar .ev-social-link__label {
    display: none;
}

.ev-site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--ev-line);
    transition: background 0.25s ease, backdrop-filter 0.25s ease;
}

.ev-site-header.is-fixed {
    position: fixed;
    left: 0;
    right: 0;
}

.ev-site-header.is-transparent {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.42));
}

.ev-site-header.is-glass {
    backdrop-filter: blur(18px);
}

.ev-header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    min-height: var(--ev-header-offset);
}

.ev-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.ev-brand-logo-wrap,
.ev-brand-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(225, 6, 19, 0.22), rgba(255, 255, 255, 0.04)),
        rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.05);
}

.ev-brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ev-brand-monogram {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.ev-brand-copy {
    display: grid;
    gap: 3px;
}

.ev-brand-kicker,
.ev-section-label,
.ev-eyebrow,
.ev-footer-label {
    color: var(--ev-color-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ev-brand strong {
    font-size: 18px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.ev-nav-toggle {
    display: none;
    grid-column: 2;
    justify-self: end;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--ev-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--ev-color-text);
}

.ev-nav-toggle span:not(.screen-reader-text) {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
}

.ev-header-panel {
    display: flex;
    grid-column: 2;
    justify-self: end;
    justify-content: flex-end;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-width: 0;
}

.ev-header-panel.is-align-center .ev-main-nav {
    justify-content: center;
}

.ev-header-panel.is-align-left .ev-main-nav {
    justify-content: flex-start;
}

.ev-header-panel.is-align-right .ev-main-nav {
    justify-content: flex-end;
}

.ev-main-nav {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.ev-main-nav .menu,
.ev-site-footer .menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ev-main-nav .menu-item {
    position: relative;
}

.ev-main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ev-main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--ev-color-primary), var(--ev-color-secondary));
    transition: transform 0.2s ease;
}

.ev-main-nav a:hover::after,
.current-menu-item > a::after,
.current_page_item > a::after {
    transform: scaleX(1);
}

.ev-main-nav .sub-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 20;
    display: none;
    min-width: 220px;
    padding: 14px;
    border: 1px solid var(--ev-border);
    border-radius: 16px;
    background: rgba(5, 5, 5, 0.94);
    list-style: none;
    box-shadow: var(--ev-shadow);
}

.ev-main-nav .menu-item:hover > .sub-menu,
.ev-main-nav .menu-item:focus-within > .sub-menu {
    display: grid;
    gap: 10px;
}

.ev-header-actions,
.ev-social-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ev-social-link,
.ev-header-tool {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--ev-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--ev-color-text);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ev-social-link:hover,
.ev-header-tool:hover {
    transform: translateY(-2px);
    border-color: rgba(225, 6, 19, 0.45);
    background: rgba(225, 6, 19, 0.12);
}

.ev-social-link__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ev-color-primary), var(--ev-color-secondary));
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.ev-social-link__label {
    font-size: 12px;
    white-space: nowrap;
}

.ev-header-search {
    padding: 0 0 18px;
}

.ev-search-form {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--ev-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
}

.ev-search-form input,
.ev-newsletter-form input,
.ev-footer-newsletter input {
    flex: 1 1 auto;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--ev-color-text);
}

.ev-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 0;
    background: linear-gradient(135deg, var(--ev-color-primary), #b4030f);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 16px 32px rgba(225, 6, 19, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.ev-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(225, 6, 19, 0.25);
}

.ev-button-outline {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
}

.ev-main-content {
    position: relative;
    overflow: clip;
}

body.ev-theme-has-music-releases .ev-main-content {
    isolation: isolate;
}

body.ev-theme-has-music-releases .ev-main-content::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: #050505;
}

body.ev-theme-has-music-releases .ev-main-content,
body.ev-theme-has-music-releases .ev-page-shell--full,
body.ev-theme-has-music-releases .ev-page-shell__article--full,
body.ev-theme-has-music-releases .ev-page-shell__content--full {
    background: transparent;
}

body.ev-theme-has-music-releases .ev-main-content > * {
    position: relative;
    z-index: 1;
}

body.ev-theme-has-music-releases .ev-section::before,
body.ev-theme-has-music-releases .ev-page-shell::before {
    display: none;
}

.ev-site-header.is-fixed + .ev-main-content {
    padding-top: var(--ev-header-offset);
}

.ev-hero {
    position: relative;
    min-height: calc(100vh - var(--ev-header-offset));
    padding: 0;
    overflow: hidden;
}

.ev-hero.is-height-tall {
    min-height: 82vh;
}

.ev-hero.is-height-medium {
    min-height: 72vh;
}

.ev-hero-video,
.ev-hero-overlay,
.ev-hero-noise {
    position: absolute;
    inset: 0;
}

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

.ev-hero-overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, calc(var(--ev-hero-overlay-opacity) + 0.3)), rgba(0, 0, 0, calc(var(--ev-hero-overlay-opacity) - 0.02))),
        radial-gradient(circle at 70% 48%, rgba(225, 6, 19, 0.28), transparent 30%);
}

.ev-hero-noise {
    opacity: 0.5;
    background:
        radial-gradient(circle at 16% 20%, rgba(225, 6, 19, 0.45), transparent 10%),
        radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.12), transparent 8%),
        radial-gradient(circle at 74% 18%, rgba(225, 6, 19, 0.3), transparent 10%),
        radial-gradient(circle at 82% 62%, rgba(255, 255, 255, 0.06), transparent 10%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 60%);
    mix-blend-mode: screen;
}

.ev-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.96fr);
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - var(--ev-header-offset) - 96px);
}

.ev-hero-copy {
    display: grid;
    gap: 14px;
    align-content: center;
    max-width: 640px;
}

.ev-hero-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    align-items: center;
    gap: 42px;
    min-height: calc(100vh - var(--ev-header-offset) - 96px);
    padding: calc(var(--ev-hero-padding-top, 42px) + 34px) 0 var(--ev-hero-padding-bottom, 54px);
}

.ev-hero-stage::before {
    display: none;
}

.ev-hero-stage .ev-hero-copy {
    position: relative;
    z-index: 3;
    width: min(100%, var(--ev-hero-content-max-width, 620px));
}

.ev-hero-release-showcase {
    position: relative;
    z-index: 3;
    min-height: 440px;
}

.ev-hero-release-card {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: center;
    gap: 18px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.ev-hero-release-card.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.ev-hero-release-card__visual {
    position: relative;
    min-height: 330px;
}

.ev-hero-release-card__disc {
    position: absolute;
    right: 12px;
    top: 50%;
    z-index: 1;
    width: 270px;
    height: 270px;
    border-radius: 999px;
    transform: translateY(-50%);
    background:
        conic-gradient(
            from 12deg,
            rgba(255, 255, 255, 0.02) 0deg,
            rgba(225, 6, 19, 0.28) 34deg,
            rgba(255, 255, 255, 0.04) 52deg,
            rgba(5, 5, 5, 0.96) 86deg,
            rgba(255, 255, 255, 0.03) 160deg,
            rgba(225, 6, 19, 0.22) 214deg,
            rgba(5, 5, 5, 0.96) 290deg,
            rgba(255, 255, 255, 0.02) 360deg
        ),
        radial-gradient(circle at center, #111 0 20px, #050505 21px 33px, transparent 34px),
        radial-gradient(circle at center, rgba(225, 6, 19, 0.25), rgba(5, 5, 5, 0.96) 62%);
    border: 2px solid rgba(225, 6, 19, 0.55);
    box-shadow: none;
    animation: evSpinDisc 10s linear infinite;
    will-change: transform;
}

.ev-hero-release-card__disc::before,
.ev-hero-release-card__disc::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ev-hero-release-card__disc::before {
    background:
        conic-gradient(
            from 0deg,
            transparent 0deg 110deg,
            rgba(255, 255, 255, 0.14) 110deg 122deg,
            transparent 122deg 360deg
        );
}

.ev-hero-release-card__disc::after {
    inset: 54px;
    border-color: rgba(225, 6, 19, 0.24);
}

.ev-hero-release-card__disc span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 66px;
    height: 66px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 6px, rgba(5, 5, 5, 0.95) 7px 100%);
}

.ev-hero-release-card__cover {
    position: absolute;
    left: 0;
    top: 14px;
    z-index: 2;
    width: min(100%, 295px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.ev-hero-release-card__cover img,
.ev-hero-release-card__fallback {
    display: block;
    width: 100%;
    height: 100%;
}

.ev-hero-release-card__cover img {
    object-fit: cover;
}

.ev-hero-release-card__fallback {
    display: grid;
    place-items: center;
    padding: 24px;
    color: var(--ev-color-text);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
}

.ev-hero-release-card__meta {
    display: grid;
    gap: 10px;
    padding-top: 6px;
}

.ev-hero-release-card__meta h3 {
    margin: 0;
    font-size: clamp(24px, 3vw, 40px);
    line-height: 0.96;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.ev-hero-release-card__meta p {
    margin: 0;
    color: var(--ev-color-muted);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ev-hero-slider {
    position: relative;
}

.ev-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    background-position: center center;
    background-size: cover;
}

.ev-hero-slide.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
}

.ev-hero-slider__arrow {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.42);
    color: var(--ev-color-text);
}

.ev-hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 7;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 999px;
    transform: translateY(-50%);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.ev-hero-slider__arrow--prev {
    left: 22px;
}

.ev-hero-slider__arrow--next {
    right: 22px;
}

.ev-hero-wordmark {
    display: grid;
    gap: 4px;
}

.ev-hero-wordmark__prefix {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--ev-color-primary);
    font-size: clamp(22px, 3vw, 42px);
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ev-hero-wordmark__prefix::before,
.ev-hero-wordmark__prefix::after {
    content: "";
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ev-color-primary), transparent);
}

.ev-hero-copy h1 {
    margin: 0;
    line-height: 0.88;
}

.ev-hero-wordmark__main {
    display: block;
    font-size: clamp(64px, 9vw, 138px);
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-shadow: 0 0 34px rgba(255, 255, 255, 0.14);
}

.ev-hero-wordmark__signature {
    display: block;
    margin-top: -22px;
    color: var(--ev-color-primary);
    font-family: var(--ev-script-font);
    font-size: clamp(48px, 6vw, 94px);
    font-weight: 700;
    line-height: 0.9;
}

.ev-hero-subtitle {
    margin: 0;
    font-size: clamp(18px, 1.8vw, 24px);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ev-hero-text,
.ev-featured-copy p,
.ev-newsletter-box p,
.ev-about-copy p,
.ev-highlight-banner p,
.ev-richtext,
.ev-event-row__content p,
.ev-footer-cta p,
.ev-footer-brand p,
.ev-footer-newsletter-copy {
    color: var(--ev-color-muted);
    font-size: 15px;
    line-height: 1.8;
}

.ev-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ev-hero-footerline {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ev-hero-footerline span + span::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 14px;
    border-radius: 999px;
    background: var(--ev-color-primary);
    vertical-align: middle;
}

.ev-hero-beam {
    position: absolute;
    right: 6%;
    bottom: 8%;
    z-index: 1;
    width: 46%;
    height: 34%;
    background:
        radial-gradient(circle at center, rgba(225, 6, 19, 0.58), transparent 42%),
        linear-gradient(180deg, rgba(255, 43, 43, 0.16), transparent);
    filter: blur(34px);
}

@keyframes evSpinDisc {
    from {
        transform: translateY(-50%) rotate(0deg);
    }

    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

.ev-stage-emblem,
.ev-stage-card,
.ev-about-art,
.ev-about-copy,
.ev-featured-release,
.ev-card,
.ev-content-card,
.ev-about-grid,
.ev-highlight-banner,
.ev-newsletter-box,
.ev-footer-cta,
.ev-events-board,
.ev-event-row,
.ev-social-strip {
    border: 1px solid var(--ev-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        rgba(6, 6, 6, 0.92);
    box-shadow: var(--ev-shadow);
}

.ev-stage-emblem {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 400px;
    overflow: hidden;
    border-radius: var(--ev-radius-xl);
}

.ev-stage-emblem::before {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(225, 6, 19, 0.32), transparent 55%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 70%);
    filter: blur(10px);
}

.ev-stage-emblem img {
    position: absolute;
    inset: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    object-fit: cover;
    mix-blend-mode: screen;
    opacity: 0.35;
}

.ev-stage-emblem__letters,
.ev-about-art__mark {
    position: relative;
    z-index: 1;
    color: #f4f7ff;
    font-size: clamp(80px, 12vw, 180px);
    font-weight: 900;
    letter-spacing: -0.08em;
    text-shadow: 0 0 48px rgba(255, 255, 255, 0.16), 0 0 90px rgba(225, 6, 19, 0.16);
}

.ev-stage-card {
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 0 0 22px 22px;
}

.ev-stage-card h2,
.ev-featured-copy h3,
.ev-newsletter-box h2,
.ev-about-copy h2,
.ev-highlight-banner h2,
.ev-footer-cta h2,
.ev-card h1,
.ev-section-heading h1,
.ev-section-heading h2 {
    margin: 0;
    font-size: clamp(32px, 5vw, 62px);
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.ev-stage-card h2,
.ev-featured-copy h3 {
    font-size: clamp(24px, 3.5vw, 42px);
}

.ev-scroll-cue {
    position: absolute;
    right: 32px;
    bottom: 28px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--ev-color-text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ev-scroll-cue::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--ev-color-secondary);
    box-shadow: 0 0 18px rgba(255, 43, 43, 0.72);
}

.ev-section {
    position: relative;
    padding: 56px 0;
}

.ev-page-shell {
    position: relative;
    padding: 56px 0;
}

.ev-page-shell__inner {
    width: min(calc(100% - 48px), var(--ev-content-width));
    margin: 0 auto;
}

.ev-page-shell__article {
    width: 100%;
}

.ev-page-shell__content {
    width: 100%;
}

.ev-page-shell--full {
    padding: 0;
}

.ev-page-shell__article--full,
.ev-page-shell__content--full {
    width: 100%;
    max-width: none;
}

.ev-page-shell__content--full > *:first-child {
    margin-top: 0;
}

.ev-section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: var(--ev-line);
}

.ev-section--tight {
    padding-top: 44px;
    padding-bottom: 44px;
}

.ev-hero + .ev-section,
.ev-hero + .ev-section.ev-section--tight {
    padding-top: 0;
}

.ev-hero + .ev-section::before,
.ev-hero + .ev-section.ev-section--tight::before {
    display: none;
}

.ev-front-anchor {
    display: block;
    position: relative;
    top: calc(var(--ev-header-offset) * -1);
    visibility: hidden;
}

.ev-section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.ev-section-heading--split {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
}

.ev-section-heading--split .ev-button {
    align-self: center;
}

.ev-about-split {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: stretch;
}

.ev-about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: 32px;
}

.ev-about-art,
.ev-about-copy {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.ev-about-art {
    display: grid;
    place-items: center;
}

.ev-about-art__ring {
    position: absolute;
    inset: 14%;
    border: 1px solid rgba(225, 6, 19, 0.35);
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(225, 6, 19, 0.25), transparent 55%),
        conic-gradient(from 0deg, rgba(225, 6, 19, 0.35), transparent, rgba(255, 255, 255, 0.14), transparent, rgba(225, 6, 19, 0.35));
    filter: blur(0.4px);
}

.ev-about-copy {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 36px;
}

.ev-about-copy h2 span {
    color: var(--ev-color-primary);
}

.ev-featured-release {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
    padding: 22px;
}

.ev-card,
.ev-content-card {
    padding: 32px;
}

.ev-featured-release img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.ev-featured-copy {
    display: grid;
    align-content: center;
    gap: 16px;
}

.ev-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--ev-color-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ev-pill,
.ev-streaming-link,
.ev-release-card__artist {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--ev-color-text);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ev-streaming-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ev-streaming-link:hover {
    border-color: rgba(225, 6, 19, 0.42);
    background: rgba(225, 6, 19, 0.12);
}

.ev-highlight-banner,
.ev-newsletter-box,
.ev-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px;
}

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

.ev-release-grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ev-release-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    border: 1px solid var(--ev-line);
    background: rgba(10, 10, 10, 0.95);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.ev-release-card:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 6, 19, 0.5);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.ev-release-card a {
    display: block;
    height: 100%;
}

.ev-release-card img,
.ev-release-card__overlay,
.ev-release-card__body {
    position: absolute;
    inset: 0;
}

.ev-release-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ev-release-card__overlay {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.84)),
        radial-gradient(circle at 50% 24%, rgba(225, 6, 19, 0.22), transparent 40%);
}

.ev-release-card__body {
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px;
}

.ev-release-card__artist {
    background: transparent;
    border: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.74);
}

.ev-release-card__body h2,
.ev-release-card__body h3,
.ev-event-row__content h3 {
    margin: 0;
    font-size: clamp(18px, 2vw, 30px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.ev-release-card__body h3 {
    display: grid;
    gap: 2px;
}

.ev-release-card__title-main {
    display: block;
}

.ev-release-card__title-accent {
    display: block;
    color: var(--ev-color-primary);
    font-family: var(--ev-script-font);
    font-size: 1.25em;
    font-weight: 700;
    line-height: 0.86;
    text-transform: none;
}

.ev-release-card__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ev-discography-hero {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--ev-line);
    border-bottom: 1px solid var(--ev-line);
    background:
        radial-gradient(circle at 70% 42%, rgba(225, 6, 19, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.68)),
        #060606;
    background-position: center;
    background-size: cover;
}

.ev-discography-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.62) 42%, rgba(0, 0, 0, 0.34) 100%),
        radial-gradient(circle at center, rgba(225, 6, 19, 0.16), transparent 44%);
}

.ev-discography-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 520px);
    gap: 36px;
    align-items: end;
    min-height: 520px;
    padding-top: 70px;
    padding-bottom: 34px;
}

.ev-discography-hero__copy {
    display: grid;
    gap: 18px;
    max-width: 520px;
}

.ev-discography-hero__copy p {
    margin: 0;
    color: var(--ev-color-muted);
    max-width: 420px;
}

.ev-discography-hero__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.ev-discography-chip {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, 0.76);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ev-discography-chip.is-active,
.ev-discography-chip:hover {
    color: var(--ev-color-text);
    border-color: rgba(225, 6, 19, 0.42);
}

.ev-discography-hero__visual {
    position: relative;
    min-height: 370px;
}

.ev-discography-hero__disc {
    position: absolute;
    right: 0;
    top: 48%;
    width: 290px;
    height: 290px;
    border-radius: 999px;
    transform: translateY(-50%);
    background:
        conic-gradient(
            from 18deg,
            rgba(225, 6, 19, 0.3) 0deg,
            rgba(255, 255, 255, 0.05) 40deg,
            rgba(7, 7, 7, 0.96) 95deg,
            rgba(225, 6, 19, 0.18) 220deg,
            rgba(7, 7, 7, 0.96) 360deg
        ),
        radial-gradient(circle at center, rgba(16, 16, 16, 0.98) 0 28px, transparent 29px),
        radial-gradient(circle at center, rgba(225, 6, 19, 0.24), rgba(5, 5, 5, 0.98) 64%);
    border: 2px solid rgba(225, 6, 19, 0.5);
    box-shadow: 0 0 38px rgba(225, 6, 19, 0.26);
    animation: evSpinDisc 12s linear infinite;
}

.ev-discography-hero__disc span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.96) 0 6px, rgba(4, 4, 4, 0.94) 7px 100%);
}

.ev-discography-hero__cover {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: min(100%, 350px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.ev-discography-hero__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ev-discography-feature,
.ev-discography-newsletter {
    border: 1px solid var(--ev-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
        rgba(6, 6, 6, 0.95);
    box-shadow: var(--ev-shadow);
}

.ev-discography-feature {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    margin-bottom: 28px;
    padding: 16px;
}

.ev-discography-feature__cover img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.ev-discography-feature__content {
    display: grid;
    align-content: center;
    gap: 14px;
}

.ev-discography-feature__content h2,
.ev-discography-newsletter__intro h3 {
    margin: 0;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.ev-discography-feature__content p,
.ev-discography-newsletter__intro p {
    margin: 0;
    color: var(--ev-color-muted);
}

.ev-discography-feature__meta,
.ev-discography-feature__actions,
.ev-release-card__platforms,
.ev-discography-toolbar,
.ev-discography-sort {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ev-discography-toolbar {
    justify-content: space-between;
    margin-bottom: 20px;
}

.ev-discography-sort label {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ev-discography-sort select {
    min-height: 42px;
    min-width: 210px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 8, 8, 0.95);
    color: var(--ev-color-text);
}

.ev-release-grid--catalog {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 28px;
}

.ev-release-card--catalog {
    min-height: 0;
    padding-bottom: 14px;
}

.ev-release-card--catalog a {
    position: relative;
    min-height: 390px;
}

.ev-release-card__platforms {
    padding: 0 14px;
}

.ev-release-platform {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    color: var(--ev-color-text);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ev-release-platform:hover {
    border-color: rgba(225, 6, 19, 0.54);
    box-shadow: 0 0 20px rgba(225, 6, 19, 0.22);
}

.ev-discography-newsletter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
}

.ev-discography-newsletter__intro {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ev-discography-newsletter__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(225, 6, 19, 0.42);
    color: var(--ev-color-primary);
    font-size: 22px;
}

.ev-events-board {
    display: grid;
    gap: 0;
}

.ev-events-board__empty {
    padding: 28px;
    color: var(--ev-color-muted);
}

.ev-event-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 20px 22px;
    border-top: 1px solid var(--ev-line);
    box-shadow: none;
}

.ev-event-row:first-child {
    border-top: 0;
}

.ev-event-row__date {
    display: grid;
    gap: 4px;
    justify-items: center;
    padding-right: 14px;
    border-right: 1px solid rgba(225, 6, 19, 0.32);
}

.ev-event-row__date strong {
    color: #fff;
    font-size: 34px;
    line-height: 0.95;
}

.ev-event-row__date span {
    color: var(--ev-color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.ev-event-row__content {
    display: grid;
    gap: 6px;
}

.ev-event-row__content p {
    margin: 0;
}

.ev-social-strip {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    padding: 22px;
}

.ev-social-strip__item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--ev-line);
    background: rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.14em;
}

.ev-social-strip__item:hover {
    border-color: rgba(225, 6, 19, 0.38);
}

.ev-release-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.ev-release-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.ev-release-dots .is-active {
    background: var(--ev-color-primary);
    box-shadow: 0 0 16px rgba(225, 6, 19, 0.5);
}

.ev-newsletter-form,
.ev-footer-newsletter {
    display: flex;
    gap: 10px;
    width: min(100%, 460px);
}

.ev-site-footer {
    padding: 58px 0 24px;
    border-top: 1px solid var(--ev-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 25%),
        rgba(0, 0, 0, 0.7);
}

.ev-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.8fr 0.9fr 1fr;
    gap: 26px;
}

.ev-footer-brand__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.ev-site-footer h2,
.ev-site-footer h3 {
    margin: 0 0 14px;
}

.ev-site-footer h2 {
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ev-site-footer h3 {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.ev-site-footer .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.ev-site-footer .menu a,
.ev-footer-meta,
.ev-footer-meta a {
    color: var(--ev-color-muted);
    font-size: 12px;
}

.ev-footer-newsletter {
    flex-direction: column;
    width: 100%;
}

.ev-footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid var(--ev-line);
}

.ev-footer-meta__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ev-richtext > *:first-child {
    margin-top: 0;
}

.ev-richtext > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 1320px) {
    .ev-header-panel {
        gap: 14px;
    }

    .ev-main-nav .menu {
        gap: 18px;
    }

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

    .ev-hero-stage {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
        gap: 28px;
    }

    .ev-hero-release-card__visual {
        min-height: 290px;
    }

    .ev-hero-release-card__disc {
        width: 220px;
        height: 220px;
    }

    .ev-hero-release-card__cover {
        width: min(100%, 240px);
    }

    .ev-discography-hero__cover {
        width: min(100%, 300px);
    }

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

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

@media (max-width: 1080px) {
    .ev-header-inner {
        grid-template-columns: auto auto;
    }

    .ev-nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .ev-header-panel {
        display: none;
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        padding: 8px 0 20px;
    }

    .ev-header-panel.is-open {
        display: grid;
    }

    .ev-main-nav,
    .ev-main-nav .menu,
    .ev-header-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .ev-main-nav .sub-menu {
        position: static;
        display: grid;
        margin-top: 12px;
    }

    .ev-hero-grid,
    .ev-hero-stage,
    .ev-discography-hero__inner,
    .ev-discography-feature,
    .ev-about-split,
    .ev-about-grid,
    .ev-featured-release,
    .ev-highlight-banner,
    .ev-newsletter-box,
    .ev-footer-cta {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .ev-hero-release-showcase {
        width: 100%;
        min-height: 340px;
    }

    .ev-discography-hero__visual {
        min-height: 320px;
        width: 100%;
    }

    .ev-discography-newsletter {
        flex-direction: column;
        align-items: stretch;
    }

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

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

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

@media (max-width: 782px) {
    .ev-container {
        width: min(calc(100% - 32px), var(--ev-content-width));
    }

    .ev-page-shell__inner {
        width: min(calc(100% - 32px), var(--ev-content-width));
    }

    .ev-site-topbar__inner,
    .ev-site-topbar__meta,
    .ev-search-form,
    .ev-newsletter-form,
    .ev-footer-newsletter,
    .ev-hero-actions,
    .ev-footer-meta,
    .ev-footer-meta__links {
        flex-direction: column;
        align-items: flex-start;
    }

    .ev-hero {
        padding-top: 56px;
    }

    .ev-hero-wordmark__main {
        font-size: clamp(42px, 15vw, 78px);
    }

    .ev-hero-wordmark__signature {
        font-size: clamp(34px, 12vw, 60px);
    }

    .ev-release-grid--five,
    .ev-release-grid--catalog,
    .ev-footer-grid {
        grid-template-columns: 1fr;
    }

    .ev-hero-stage {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 36px 0 12px;
    }

    .ev-hero-release-showcase {
        min-height: 320px;
    }

    .ev-discography-hero__disc {
        width: 200px;
        height: 200px;
    }

    .ev-discography-hero__cover {
        position: relative;
        width: min(100%, 260px);
    }

    .ev-discography-feature {
        padding: 14px;
    }

    .ev-discography-sort {
        width: 100%;
        align-items: flex-start;
    }

    .ev-discography-sort select {
        width: 100%;
    }

    .ev-discography-newsletter__intro {
        align-items: flex-start;
    }

    .ev-discography-newsletter__icon {
        width: 46px;
        height: 46px;
    }

    .ev-hero-release-card__disc {
        width: 180px;
        height: 180px;
        right: 0;
    }

    .ev-hero-release-card__cover {
        position: relative;
        top: 0;
        width: min(100%, 220px);
    }

    .ev-hero-release-card__visual {
        min-height: 220px;
    }

    .ev-hero-slider__arrow {
        width: 38px;
        height: 38px;
    }

    .ev-hero-slider__arrow--prev {
        left: 12px;
    }

    .ev-hero-slider__arrow--next {
        right: 12px;
    }

    .ev-hero-beam {
        right: 0;
        bottom: 4%;
        width: 62%;
    }

    .ev-event-row {
        grid-template-columns: 1fr;
    }

    .ev-event-row__date {
        justify-items: start;
        padding-right: 0;
        padding-bottom: 12px;
        border-right: 0;
        border-bottom: 1px solid rgba(225, 6, 19, 0.28);
    }

    .ev-scroll-cue {
        right: 16px;
        bottom: 16px;
    }
}
