/* ==========================================================================
   Variables start
========================================================================== */

:root {
    --fm-bg: #080609;
    --fm-bg-soft: #120d14;
    --fm-bg-card: rgba(255, 255, 255, 0.07);
    --fm-text: #f4eee6;
    --fm-muted: #b8aaa0;
    --fm-red: #d8231a;
    --fm-red-hover: #f02b21;
    --fm-gold: #e0a83a;
    --fm-purple: #6f3dff;
    --fm-border: rgba(255, 255, 255, 0.14);
    --fm-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

/* ==========================================================================
   Variables end
========================================================================== */


/* ==========================================================================
   Base start
========================================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Exo 2", Arial, sans-serif;
    color: var(--fm-text);
    background: var(--fm-bg);
}

body.is-inner {
    background:
        radial-gradient(circle at top, rgba(216, 35, 26, 0.16), transparent 420px),
        var(--fm-bg);
}

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

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

/* ==========================================================================
   Base end
========================================================================== */


/* ==========================================================================
   Layout start
========================================================================== */

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 110px 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 44px;
}

.section-head--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-kicker {
    margin-bottom: 18px;
    color: var(--fm-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-size: clamp(36px, 5vw, 70px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.section-text {
    margin: 20px 0 0;
    color: var(--fm-muted);
    font-size: 20px;
    line-height: 1.45;
}

/* ==========================================================================
   Layout end
========================================================================== */


/* ==========================================================================
   Header and navigation start
========================================================================== */

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
body.menu-open .site-header {
    background: rgba(8, 6, 9, 0.88);
    border-color: var(--fm-border);
    backdrop-filter: blur(16px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1280px, calc(100% - 32px));
    min-height: 82px;
    margin: 0 auto;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo__image {
    width: 150px;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.45));
}

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

.site-nav .mod-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav .nav-item {
    margin: 0;
    padding: 0;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: rgba(244, 238, 230, 0.82);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: var(--fm-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav .current > a,
.site-nav .active > a {
    color: #ffffff;
}

.site-nav a:hover::after,
.site-nav .current > a::after,
.site-nav .active > a::after {
    transform: scaleX(1);
}

.site-nav .item-103 > a {
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(216, 35, 26, 0.7);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(216, 35, 26, 0.16);
}

.site-nav .item-103 > a::after {
    display: none;
}

.site-nav .item-103 > a:hover,
.site-nav .item-103.active > a,
.site-nav .item-103.current > a {
    background: var(--fm-red);
    border-color: var(--fm-red);
}

.site-burger {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--fm-border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.site-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fm-text);
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 1080px) {
    .site-nav .mod-menu {
        gap: 18px;
    }

    .site-nav a {
        font-size: 13px;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 980px) {
    .site-header__inner {
        min-height: 74px;
    }

    .site-logo__image {
        width: 118px;
        max-height: 44px;
    }

    .site-burger {
        position: relative;
        z-index: 1003;
        display: inline-flex;
    }

    .site-burger.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-burger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .site-burger.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        z-index: 1002;
        top: 74px;
        left: 16px;
        right: 16px;
        display: block;
        width: auto;
        max-height: calc(100svh - 92px);
        padding: 18px;
        border: 1px solid var(--fm-border);
        border-radius: 24px;
        background: rgba(8, 6, 9, 0.96);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(18px);
        opacity: 0;
        visibility: hidden;
        overflow-y: auto;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav .mod-menu {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .site-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .site-nav .nav-item:last-child {
        border-bottom: 0;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 50px;
        padding: 0 10px;
        font-size: 15px;
        letter-spacing: 0.05em;
    }

    .site-nav a::after {
        display: none;
    }

    .site-nav .item-103 {
        padding: 12px 0;
    }

    .site-nav .item-103 > a {
        justify-content: center;
        min-height: 52px;
        margin: 0;
        padding: 0 16px;
        border-radius: 16px;
        background: var(--fm-red);
        border-color: var(--fm-red);
    }

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

/* ==========================================================================
   Header and navigation end
========================================================================== */


/* ==========================================================================
   Hero start
========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg,
.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 45%, rgba(216, 35, 26, 0.28), transparent 32%),
        radial-gradient(circle at 30% 30%, rgba(111, 61, 255, 0.18), transparent 28%);
}

.hero__overlay {
    background:
        linear-gradient(90deg, rgba(8, 6, 9, 0.95), rgba(8, 6, 9, 0.58), rgba(8, 6, 9, 0.84)),
        linear-gradient(0deg, var(--fm-bg), transparent 40%);
}

.hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero__content {
    max-width: 780px;
}

.hero__eyebrow {
    margin-bottom: 18px;
    color: var(--fm-gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero__title {
    margin: 0;
    font-size: clamp(64px, 11vw, 150px);
    line-height: 0.88;
    font-weight: 1000;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

.hero__text {
    max-width: 640px;
    margin: 28px 0 0;
    color: rgba(244, 238, 230, 0.82);
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.25;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero__stats span {
    padding: 10px 13px;
    border: 1px solid var(--fm-border);
    border-radius: 999px;
    color: rgba(244, 238, 230, 0.76);
    font-size: 13px;
    background: rgba(255, 255, 255, 0.05);
}

.hero__logo {
    width: min(520px, 88vw);
    height: auto;
    margin-bottom: 28px;
    filter:
        drop-shadow(0 18px 38px rgba(0, 0, 0, 0.75))
        drop-shadow(0 0 28px rgba(216, 35, 26, 0.32))
        drop-shadow(0 0 48px rgba(224, 168, 58, 0.12));
}

/* ==========================================================================
   Hero end
========================================================================== */


/* ==========================================================================
   Buttons start
========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn--primary {
    background: var(--fm-red);
    color: #ffffff;
    box-shadow: 0 14px 40px rgba(216, 35, 26, 0.34);
}

.btn--ghost {
    border: 1px solid var(--fm-border);
    background: rgba(255, 255, 255, 0.06);
}

/* ==========================================================================
   Buttons end
========================================================================== */


/* ==========================================================================
   Concerts start
========================================================================== */

.concerts {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 20%, rgba(216, 35, 26, 0.22), transparent 360px),
        radial-gradient(circle at 85% 60%, rgba(111, 61, 255, 0.16), transparent 360px),
        linear-gradient(180deg, #080609 0%, #120d14 100%);
}

.concerts::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 20%, #000000 80%, transparent);
}

.concerts .container {
    position: relative;
    z-index: 2;
}

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

.concert-card {
    position: relative;
    display: flex;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    min-height: 0;
    border: 1px solid var(--fm-border);
    border-radius: 30px;
    background: #000000;
    box-shadow: var(--fm-shadow);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.concert-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 168, 58, 0.72);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.concert-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.32) 38%, rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(circle at top right, rgba(216, 35, 26, 0.28), transparent 48%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

.concert-card::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 3;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(224, 168, 58, 0.75), transparent);
    opacity: 0.65;
}

.concert-card--featured {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
    border-color: rgba(224, 168, 58, 0.54);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.64),
        0 0 46px rgba(224, 168, 58, 0.10);
}

.concert-card--featured::before {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.58) 44%, rgba(0, 0, 0, 0.18) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.82) 100%),
        radial-gradient(circle at top right, rgba(216, 35, 26, 0.32), transparent 48%);
}

.concert-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    min-height: 0;
    overflow: hidden;
    background: #000000;
}

.concert-card__image::after {
    content: none;
}

.concert-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        filter 0.35s ease;
}

.concert-card:hover .concert-card__image img {
    transform: scale(1.08);
    opacity: 0.9;
    filter: saturate(1.08) contrast(1.08);
}

.concert-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    padding: 24px;
}

.concert-card--featured .concert-card__body {
    max-width: 58%;
    padding: 34px;
}

.concert-card__date {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 0 11px;
    border: 1px solid rgba(224, 168, 58, 0.42);
    border-radius: 999px;
    color: var(--fm-gold);
    background: rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.concert-card__title {
    margin: 0;
    color: var(--fm-text);
    font-size: 24px;
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
}

.concert-card--featured .concert-card__title {
    font-size: clamp(38px, 4vw, 62px);
}

.concert-card__place {
    margin: 10px 0 0;
    color: rgba(244, 238, 230, 0.86);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
}

.concert-card__text {
    display: -webkit-box;
    margin: 14px 0 0;
    overflow: hidden;
    color: var(--fm-muted);
    font-size: 14px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.concert-card--featured .concert-card__text {
    max-width: 520px;
    font-size: 16px;
    -webkit-line-clamp: 4;
}

.concert-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 40px;
    margin-top: 18px;
    padding: 0 16px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--fm-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 14px 36px rgba(216, 35, 26, 0.32);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.concert-card__button:hover {
    transform: translateY(-2px);
    background: var(--fm-red-hover);
    box-shadow: 0 18px 44px rgba(216, 35, 26, 0.46);
}

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

    .concert-card--featured {
        grid-column: span 2;
    }

    .concert-card--featured .concert-card__body {
        max-width: 64%;
    }
}

@media (max-width: 760px) {
    .concerts__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
    }

    .concert-card,
    .concert-card--featured {
        grid-column: 1 / -1;
        aspect-ratio: auto;
        min-height: 430px;
        border-radius: 24px;
    }

    .concert-card--featured .concert-card__body {
        max-width: none;
        padding: 24px;
    }

    .concert-card::before,
    .concert-card--featured::before {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.34) 35%, rgba(0, 0, 0, 0.92) 100%),
            radial-gradient(circle at top right, rgba(216, 35, 26, 0.28), transparent 48%);
    }

    .concert-card__title,
    .concert-card--featured .concert-card__title {
        font-size: 27px;
        line-height: 1;
    }

    .concert-card__text,
    .concert-card--featured .concert-card__text {
        font-size: 14px;
        line-height: 1.4;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 480px) {
    .concert-card,
    .concert-card--featured {
        min-height: 390px;
    }

    .concert-card__body,
    .concert-card--featured .concert-card__body {
        padding: 20px;
    }

    .concert-card__date {
        min-height: 28px;
        margin-bottom: 12px;
        font-size: 10px;
    }

    .concert-card__title,
    .concert-card--featured .concert-card__title {
        font-size: 23px;
    }

    .concert-card__place {
        font-size: 12px;
    }

    .concert-card__text,
    .concert-card--featured .concert-card__text {
        margin-top: 12px;
        font-size: 13px;
        -webkit-line-clamp: 3;
    }

    .concert-card__button {
        min-height: 38px;
        margin-top: 16px;
        padding: 0 14px;
        font-size: 10px;
    }
}

/* ==========================================================================
   Concerts end
========================================================================== */

/* ==========================================================================
   About band start
========================================================================== */

.about-band {
    position: relative;
    overflow: hidden;
    padding-top: 130px;
    padding-bottom: 140px;
    background:
        radial-gradient(circle at 14% 28%, rgba(216, 35, 26, 0.14), transparent 360px),
        radial-gradient(circle at 86% 68%, rgba(111, 61, 255, 0.18), transparent 420px),
        linear-gradient(180deg, #120d14 0%, #080609 100%);
}

.about-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 18%, #000000 82%, transparent);
}

.about-band__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
    gap: 56px;
    align-items: center;
}

.about-band__content {
    max-width: 560px;
}

.about-band__title {
    max-width: 560px;
    margin-bottom: 0;
}

.about-band__lead {
    margin: 28px 0 0;
    color: var(--fm-text);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.about-band__text {
    margin: 20px 0 0;
    color: var(--fm-muted);
    font-size: 18px;
    line-height: 1.55;
}

.about-band__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.about-band__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid rgba(224, 168, 58, 0.34);
    border-radius: 999px;
    color: var(--fm-gold);
    background: rgba(224, 168, 58, 0.07);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

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

.about-band__visual {
    position: relative;
    min-height: 560px;
}

.about-band__photo {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid var(--fm-border);
    border-radius: 34px;
    background: #000000;
    box-shadow: var(--fm-shadow);
}

.about-band__photo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.about-band__photo::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 168, 58, 0.75), transparent);
    opacity: 0.72;
}

.about-band__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.08) contrast(1.05);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease,
        filter 0.45s ease;
}

.about-band__visual:hover .about-band__photo img {
    transform: scale(1.04);
    opacity: 0.92;
    filter: saturate(1.14) contrast(1.08);
}

.about-band__badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 3;
    width: min(300px, calc(100% - 56px));
    padding: 20px;
    border: 1px solid rgba(224, 168, 58, 0.42);
    border-radius: 24px;
    background: rgba(8, 6, 9, 0.78);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
}

.about-band__badge span {
    display: block;
    margin-bottom: 8px;
    color: var(--fm-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-band__badge strong {
    display: block;
    color: var(--fm-text);
    font-size: 24px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .about-band__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-band__content {
        max-width: 760px;
    }

    .about-band__visual {
        min-height: 560px;
    }
}

@media (max-width: 760px) {
    .about-band {
        padding-top: 90px;
        padding-bottom: 100px;
    }

    .about-band__lead {
        font-size: 21px;
    }

    .about-band__text {
        font-size: 16px;
    }

    .about-band__visual {
        min-height: 460px;
    }

    .about-band__photo {
        border-radius: 26px;
    }

    .about-band__badge {
        right: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
    }
}

@media (max-width: 480px) {
    .about-band__visual {
        min-height: 360px;
    }

    .about-band__lead {
        font-size: 19px;
    }

    .about-band__tags span {
        min-height: 34px;
        font-size: 10px;
    }

    .about-band__badge strong {
        font-size: 21px;
    }
}

/* ==========================================================================
   About band end
========================================================================== */

/* ==========================================================================
   Video start
========================================================================== */

.video-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(216, 35, 26, 0.18), transparent 360px),
        radial-gradient(circle at 88% 76%, rgba(111, 61, 255, 0.16), transparent 420px),
        linear-gradient(180deg, #080609 0%, #120d14 100%);
}

.video-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 18%, #000000 82%, transparent);
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.video-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--fm-border);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)),
        rgba(18, 13, 20, 0.92);
    box-shadow: var(--fm-shadow);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 168, 58, 0.72);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.video-card::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(224, 168, 58, 0.75), transparent);
    opacity: 0.65;
}

.video-card__frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-card__frame iframe {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #000000;
}

.video-card__body {
    padding: 22px 24px 26px;
}

.video-card__body span {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--fm-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.video-card__body h3 {
    margin: 0;
    color: var(--fm-text);
    font-size: 26px;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .video-section__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .video-card {
        border-radius: 24px;
    }

    .video-card__body {
        padding: 20px;
    }

    .video-card__body h3 {
        font-size: 22px;
    }
}

/* ==========================================================================
   Video end
========================================================================== */

/* ==========================================================================
   Music start
========================================================================== */

.music-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 24%, rgba(216, 35, 26, 0.16), transparent 360px),
        radial-gradient(circle at 84% 72%, rgba(224, 168, 58, 0.12), transparent 380px),
        linear-gradient(180deg, #120d14 0%, #080609 100%);
}

.music-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 18%, #000000 82%, transparent);
}

.music-section .container {
    position: relative;
    z-index: 2;
}

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

.album-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 28px;
    background: #000000;
    box-shadow:
        0 18px 44px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.album-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 168, 58, 0.72);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(224, 168, 58, 0.18);
}

.album-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.42) 34%, rgba(0, 0, 0, 0.78) 62%, rgba(0, 0, 0, 0.96) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.12) 0%, transparent 36%, rgba(0, 0, 0, 0.18) 100%),
        radial-gradient(circle at top right, rgba(216, 35, 26, 0.16), transparent 48%);
}

.album-card::after {
    content: "";
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 4;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(224, 168, 58, 0.75), transparent);
    opacity: 0.65;
}

.album-card__cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    padding-bottom: 82px;
    color: var(--fm-text);
}

.album-card__cover img {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        filter 0.35s ease;
}

.album-card:hover .album-card__cover img {
    transform: scale(1.08);
    opacity: 0.88;
    filter: saturate(1.08) contrast(1.08);
}

.album-card__year {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 28px;
    margin-bottom: 12px;
    padding: 0 10px;
    border: 1px solid rgba(224, 168, 58, 0.48);
    border-radius: 999px;
    color: var(--fm-gold);
    background: rgba(22, 18, 24, 0.82);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.album-card strong {
    display: block;
    max-width: 92%;
    color: var(--fm-text);
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-shadow:
        0 3px 10px rgba(0, 0, 0, 0.9),
        0 10px 26px rgba(0, 0, 0, 0.82);
}

.album-card__actions {
    position: absolute;
    right: 20px;
    bottom: 24px;
    left: 20px;
    z-index: 5;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.album-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

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

.album-card__button--primary {
    color: #ffffff;
    background: var(--fm-red);
    box-shadow: 0 12px 30px rgba(216, 35, 26, 0.32);
}

.album-card__button--primary:hover {
    background: var(--fm-red-hover);
    box-shadow: 0 16px 38px rgba(216, 35, 26, 0.46);
}

.album-card__button--ghost {
    border: 1px solid rgba(224, 168, 58, 0.5);
    color: var(--fm-gold);
    background: rgba(16, 12, 18, 0.86);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.album-card__button--ghost:hover {
    border-color: rgba(224, 168, 58, 0.82);
    color: #ffffff;
    background: rgba(224, 168, 58, 0.18);
}

.album-card--featured {
    grid-column: span 2;
    grid-row: span 2;
    border-color: rgba(224, 168, 58, 0.55);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.64),
        0 0 46px rgba(224, 168, 58, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.04);
}

.album-card--featured .album-card__cover {
    padding: 30px;
    padding-bottom: 98px;
}

.album-card--featured .album-card__year {
    min-height: 32px;
    margin-bottom: 16px;
    padding: 0 12px;
    font-size: 12px;
}

.album-card--featured strong {
    max-width: 520px;
    font-size: clamp(36px, 4vw, 64px);
}

.album-card--featured .album-card__actions {
    right: 30px;
    bottom: 34px;
    left: 30px;
    grid-template-columns: auto auto;
    justify-content: flex-start;
    gap: 10px;
}

.album-card--featured .album-card__button {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
}

@media (max-width: 1080px) {
    .albums-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .album-card--featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}

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

    .album-card--featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 760px) {
    .albums-grid {
        gap: 18px;
    }

    .album-card,
    .album-card--featured {
        border-radius: 24px;
    }

    .album-card__cover,
    .album-card--featured .album-card__cover {
        padding: 18px;
        padding-bottom: 80px;
    }

    .album-card__actions,
    .album-card--featured .album-card__actions {
        right: 18px;
        bottom: 22px;
        left: 18px;
        grid-template-columns: 1fr auto;
        justify-content: stretch;
        gap: 8px;
    }

    .album-card strong,
    .album-card--featured strong {
        font-size: 20px;
    }

    .album-card--featured .album-card__button {
        min-height: 38px;
        padding: 0 12px;
        font-size: 10px;
    }
}

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

    .album-card,
    .album-card--featured {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 1 / 1;
    }

    .album-card strong,
    .album-card--featured strong {
        font-size: 24px;
    }

    .album-card--featured .album-card__year {
        min-height: 28px;
        margin-bottom: 12px;
        padding: 0 10px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {
    .album-card__actions,
    .album-card--featured .album-card__actions {
        grid-template-columns: 1fr;
    }

    .album-card__cover,
    .album-card--featured .album-card__cover {
        padding-bottom: 124px;
    }
}

/* ==========================================================================
   Music end
========================================================================== */

/* ==========================================================================
   Floating music start
========================================================================== */

.floating-music {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
}

.floating-music__toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    min-height: 138px;
    padding: 12px 0;
    border: 1px solid rgba(224, 168, 58, 0.48);
    border-right: 0;
    border-radius: 18px 0 0 18px;
    color: #ffffff;
    background: linear-gradient(145deg, rgba(216, 35, 26, 0.96), rgba(130, 12, 10, 0.96));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.48), 0 0 32px rgba(216, 35, 26, 0.24);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.floating-music__toggle:hover {
    background: linear-gradient(145deg, rgba(240, 43, 33, 0.98), rgba(150, 16, 12, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.58), 0 0 42px rgba(216, 35, 26, 0.36);
}

.floating-music__toggle span {
    display: block;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.floating-music__panel {
    position: absolute;
    top: 50%;
    right: 54px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(8, 6, 9, 0.86);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.54);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(16px, -50%);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.floating-music.is-open .floating-music__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -50%);
}

.floating-music__panel a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)), rgba(18, 13, 20, 0.92);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.floating-music__panel a:hover {
    transform: translateX(-4px);
    border-color: rgba(224, 168, 58, 0.72);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)), rgba(18, 13, 20, 0.98);
}

.floating-music__panel img {
    display: block;
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
}

@media (max-width: 760px) {
    .floating-music {
        top: auto;
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        transform: none;
        z-index: 995;
    }

    body.menu-open .floating-music {
        opacity: 0;
        pointer-events: none;
    }

    .floating-music__toggle {
        width: auto;
        min-height: 48px;
        padding: 0 18px;
        border-right: 1px solid rgba(224, 168, 58, 0.48);
        border-radius: 999px;
    }

    .floating-music__toggle span {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .floating-music__panel {
        top: auto;
        right: 0;
        bottom: 62px;
        max-width: calc(100vw - 32px);
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-end;
        transform: translateY(12px);
    }

    .floating-music.is-open .floating-music__panel {
        transform: translateY(0);
    }

    .floating-music__panel a:hover {
        transform: translateY(-3px);
    }
}

/* ==========================================================================
   Floating music end
========================================================================== */

/* ==========================================================================
   Platform links start
========================================================================== */

.platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.platforms a,
.social-links a,
.booking__card a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    padding: 0 18px;
    border: 1px solid var(--fm-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-weight: 900;
}

/* ==========================================================================
   Platform links end
========================================================================== */

/* ==========================================================================
   Booking start
========================================================================== */

.booking-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 24%, rgba(216, 35, 26, 0.22), transparent 380px),
        radial-gradient(circle at 86% 74%, rgba(224, 168, 58, 0.13), transparent 420px),
        linear-gradient(180deg, #080609 0%, #120d14 100%);
}

.booking-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 18%, #000000 82%, transparent);
}

.booking-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 56px;
    align-items: center;
}

.booking-section__content {
    max-width: 720px;
}

.booking-section__title {
    max-width: 760px;
}

.booking-section__text {
    margin: 28px 0 0;
    color: var(--fm-muted);
    font-size: 21px;
    line-height: 1.55;
}

.booking-section__formats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
}

.booking-section__formats span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(224, 168, 58, 0.34);
    border-radius: 999px;
    color: var(--fm-gold);
    background: rgba(224, 168, 58, 0.07);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-section__card {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid rgba(224, 168, 58, 0.38);
    border-radius: 34px;
    background:
        radial-gradient(circle at 80% 10%, rgba(216, 35, 26, 0.22), transparent 260px),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(18, 13, 20, 0.94);
    box-shadow: var(--fm-shadow);
}

.booking-section__card::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224, 168, 58, 0.75), transparent);
    opacity: 0.68;
}

.booking-section__card-head span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--fm-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-section__card-head strong {
    display: block;
    color: var(--fm-text);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.booking-section__contacts {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.booking-contact {
    position: relative;
    display: flex;
    min-height: 82px;
    flex-direction: column;
    justify-content: center;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    color: var(--fm-text);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
        rgba(8, 6, 9, 0.48);
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease,
        box-shadow 0.24s ease;
}

.booking-contact::after {
    content: "↗";
    position: absolute;
    right: 20px;
    top: 50%;
    color: rgba(224, 168, 58, 0.72);
    font-size: 24px;
    transform: translateY(-50%);
    transition:
        transform 0.24s ease,
        color 0.24s ease;
}

.booking-contact:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 168, 58, 0.68);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
        rgba(8, 6, 9, 0.68);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
}

.booking-contact:hover::after {
    color: var(--fm-gold);
    transform: translate(4px, -58%);
}

.booking-contact span {
    color: var(--fm-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.booking-contact strong {
    margin-top: 6px;
    color: var(--fm-text);
    font-size: 22px;
    line-height: 1.1;
}

@media (max-width: 1080px) {
    .booking-section__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .booking-section__content {
        max-width: 780px;
    }
}

@media (max-width: 640px) {
    .booking-section__text {
        font-size: 17px;
    }

    .booking-section__card {
        padding: 24px;
        border-radius: 28px;
    }

    .booking-section__card-head strong {
        font-size: 34px;
    }

    .booking-contact {
        min-height: 76px;
        padding: 16px 18px;
    }

    .booking-contact strong {
        font-size: 19px;
    }
}

@media (max-width: 420px) {
    .booking-section__formats span {
        min-height: 34px;
        font-size: 10px;
    }

    .booking-section__card {
        padding: 20px;
    }

    .booking-contact::after {
        display: none;
    }
}

/* ==========================================================================
   Booking end
========================================================================== */

/* ==========================================================================
   Social start
========================================================================== */

.social-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 26%, rgba(111, 61, 255, 0.18), transparent 380px),
        radial-gradient(circle at 84% 70%, rgba(216, 35, 26, 0.18), transparent 420px),
        linear-gradient(180deg, #120d14 0%, #080609 100%);
}

.social-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 18%, #000000 82%, transparent);
}

.social-section__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 56px;
    align-items: center;
}

.social-section__content {
    max-width: 640px;
}

.social-section__title {
    max-width: 680px;
}

.social-section__text {
    margin: 28px 0 0;
    color: var(--fm-muted);
    font-size: 21px;
    line-height: 1.55;
}

.social-section__links {
    display: grid;
    gap: 18px;
}

.social-card {
    position: relative;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    min-height: 132px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    color: var(--fm-text);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
        rgba(18, 13, 20, 0.94);
    box-shadow: var(--fm-shadow);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.social-card::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    opacity: 0.42;
    filter: blur(4px);
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.social-card--vk::before {
    background: rgba(0, 119, 255, 0.35);
}

.social-card--youtube::before {
    background: rgba(216, 35, 26, 0.38);
}

.social-card::after {
    content: "↗";
    position: absolute;
    right: 24px;
    top: 24px;
    color: rgba(224, 168, 58, 0.72);
    font-size: 28px;
    line-height: 1;
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 168, 58, 0.72);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05)),
        rgba(18, 13, 20, 0.98);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(224, 168, 58, 0.14);
}

.social-card:hover::before {
    transform: scale(1.18);
    opacity: 0.62;
}

.social-card:hover::after {
    color: var(--fm-gold);
    transform: translate(4px, -4px);
}

.social-card__icon {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(8, 6, 9, 0.62);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
    overflow: hidden;
}

.social-card__icon img {
    display: block;
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.social-card__content {
    position: relative;
    z-index: 2;
    display: block;
    padding-right: 44px;
}

.social-card__content span {
    display: block;
    margin-bottom: 8px;
    color: var(--fm-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.social-card__content strong {
    display: block;
    color: var(--fm-text);
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

@media (max-width: 1080px) {
    .social-section__inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .social-section__content {
        max-width: 780px;
    }
}

@media (max-width: 640px) {
    .social-section__text {
        font-size: 17px;
    }

    .social-card {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 16px;
        min-height: 112px;
        padding: 20px;
        border-radius: 26px;
    }

    .social-card__icon {
        width: 64px;
        height: 64px;
        border-radius: 20px;
        overflow: hidden;
    }

    .social-card__icon img {
        width: 62px;
        height: 62px;
    }

    .social-card__content strong {
        font-size: 26px;
    }
}

@media (max-width: 420px) {
    .social-card {
        grid-template-columns: 1fr;
    }

    .social-card__content {
        padding-right: 36px;
    }

    .social-card__content strong {
        font-size: 24px;
    }
}

/* ==========================================================================
   Social end
========================================================================== */

/* ==========================================================================
   Inner page start
========================================================================== */

.inner-page {
    min-height: 70vh;
    padding: 140px 0 90px;
}

.inner-page h1 {
    font-size: clamp(36px, 5vw, 70px);
    line-height: 0.95;
    text-transform: uppercase;
}

.inner-page p {
    color: var(--fm-muted);
    font-size: 18px;
    line-height: 1.6;
}

/* ==========================================================================
   Inner page end
========================================================================== */

/* ==========================================================================
   Footer start
========================================================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 34px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background:
        radial-gradient(circle at 12% 20%, rgba(216, 35, 26, 0.16), transparent 340px),
        radial-gradient(circle at 86% 76%, rgba(224, 168, 58, 0.10), transparent 360px),
        linear-gradient(180deg, #080609 0%, #050405 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 18%, #000000 82%, transparent);
}

.site-footer__inner {
    position: relative;
    z-index: 2;
    display: block;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(220px, 0.9fr);
    gap: 42px;
    align-items: start;
}

.footer-content__brand {
    max-width: 430px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    display: block;
    width: 190px;
    height: auto;
    filter:
        drop-shadow(0 14px 30px rgba(0, 0, 0, 0.62))
        drop-shadow(0 0 26px rgba(216, 35, 26, 0.22));
}

.footer-content__text {
    margin: 24px 0 0;
    color: var(--fm-muted);
    font-size: 16px;
    line-height: 1.6;
}

.footer-title {
    margin: 0 0 18px;
    color: var(--fm-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-nav,
.footer-social,
.footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-nav a,
.footer-social a,
.footer-contacts a {
    position: relative;
    display: inline-flex;
    margin-top: 10px;
    color: rgba(244, 238, 230, 0.78);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    transition:
        color 0.22s ease,
        transform 0.22s ease;
}

.footer-nav a:first-of-type,
.footer-social a:first-of-type,
.footer-contacts a:first-of-type {
    margin-top: 0;
}

.footer-nav a:hover,
.footer-social a:hover,
.footer-contacts a:hover {
    color: var(--fm-gold);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 54px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom p {
    margin: 0;
    color: rgba(244, 238, 230, 0.56);
    font-size: 14px;
    line-height: 1.4;
}

.footer-top-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(224, 168, 58, 0.36);
    border-radius: 999px;
    color: var(--fm-gold);
    background: rgba(224, 168, 58, 0.07);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        color 0.22s ease;
}

.footer-top-link:hover {
    transform: translateY(-3px);
    border-color: rgba(224, 168, 58, 0.78);
    color: #ffffff;
    background: rgba(224, 168, 58, 0.15);
}

@media (max-width: 1080px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px;
    }

    .footer-content__brand {
        max-width: 520px;
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 58px 0 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-logo img {
        width: 160px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 40px;
    }
}

/* ==========================================================================
   Footer end
========================================================================== */

/* ==========================================================================
   About page start
========================================================================== */

.about-page {
    position: relative;
    overflow: hidden;
    background: var(--fm-bg);
}

.about-page p {
    color: var(--fm-muted);
    font-size: 18px;
    line-height: 1.6;
}

body:has(.about-page) .com-content-article > .page-header {
    display: none;
}

/* About hero */

.about-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    background:
        radial-gradient(circle at 16% 24%, rgba(216, 35, 26, 0.24), transparent 380px),
        radial-gradient(circle at 82% 60%, rgba(111, 61, 255, 0.18), transparent 460px),
        linear-gradient(180deg, #080609 0%, #120d14 100%);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 18%, #000000 82%, transparent);
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 56px;
    align-items: center;
}

.about-hero__content {
    max-width: 680px;
}

.about-hero__title {
    margin: 0;
    color: var(--fm-text);
    font-size: clamp(46px, 6vw, 88px);
    font-weight: 1000;
    line-height: 0.92;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.about-hero__lead {
    margin: 28px 0 0;
    color: rgba(244, 238, 230, 0.82);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.about-hero__visual {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    border: 1px solid var(--fm-border);
    border-radius: 34px;
    background: #000000;
    box-shadow: var(--fm-shadow);
}

.about-hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.28) 48%, rgba(0, 0, 0, 0.82) 100%),
        radial-gradient(circle at top right, rgba(216, 35, 26, 0.26), transparent 48%);
}

.about-hero__visual::after {
    content: "Fun Mode";
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 12px 16px;
    border: 1px solid rgba(224, 168, 58, 0.42);
    border-radius: 999px;
    color: var(--fm-gold);
    background: rgba(8, 6, 9, 0.72);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.08) contrast(1.06);
}

/* About story */

.about-story {
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 24%, rgba(224, 168, 58, 0.10), transparent 360px),
        radial-gradient(circle at 86% 70%, rgba(216, 35, 26, 0.16), transparent 420px),
        linear-gradient(180deg, #120d14 0%, #080609 100%);
}

.about-story__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 56px;
    align-items: center;
}

.about-story__content {
    max-width: 760px;
}

.about-story__content .section-title {
    max-width: 760px;
}

.about-story__content p {
    margin: 24px 0 0;
    color: var(--fm-muted);
    font-size: 19px;
    line-height: 1.65;
}

.about-story__facts {
    display: grid;
    gap: 18px;
}

.about-fact {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)),
        rgba(18, 13, 20, 0.92);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.about-fact::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(216, 35, 26, 0.22);
    filter: blur(4px);
}

.about-fact strong {
    position: relative;
    z-index: 2;
    display: block;
    color: var(--fm-text);
    font-size: 34px;
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.about-fact span {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 10px;
    color: var(--fm-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Members */

.about-members {
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 22%, rgba(216, 35, 26, 0.18), transparent 380px),
        radial-gradient(circle at 86% 74%, rgba(111, 61, 255, 0.16), transparent 420px),
        linear-gradient(180deg, #080609 0%, #120d14 100%);
}

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

.member-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1.18fr);
    min-height: 360px;
    border: 1px solid var(--fm-border);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)),
        rgba(18, 13, 20, 0.92);
    box-shadow: var(--fm-shadow);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 168, 58, 0.72);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.member-card__photo {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 360px;
    background: #000000;
}

.member-card__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 0%, rgba(18, 13, 20, 0.28) 100%),
        radial-gradient(circle at top right, rgba(216, 35, 26, 0.20), transparent 48%);
}

.member-card__photo img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.06) contrast(1.04);
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        filter 0.35s ease;
}

.member-card:hover .member-card__photo img {
    transform: scale(1.06);
    opacity: 0.92;
    filter: saturate(1.12) contrast(1.08);
}

.member-card__body {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
}

.member-card__body::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(224, 168, 58, 0.68), transparent);
    opacity: 0.65;
}

.member-card__body span {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 14px;
    color: var(--fm-gold);
    font-size: 11px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.member-card__body h3 {
    margin: 0;
    color: var(--fm-text);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.member-card__body p {
    margin: 18px 0 0;
    color: var(--fm-muted);
    font-size: 16px;
    line-height: 1.55;
}

/* CTA */

.about-cta {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(216, 35, 26, 0.24), transparent 380px),
        radial-gradient(circle at 82% 70%, rgba(224, 168, 58, 0.12), transparent 420px),
        linear-gradient(180deg, #120d14 0%, #050405 100%);
}

.about-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    padding: 38px;
    border: 1px solid rgba(224, 168, 58, 0.36);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
        rgba(18, 13, 20, 0.92);
    box-shadow: var(--fm-shadow);
}

.about-cta__content {
    max-width: 760px;
}

.about-cta h2 {
    margin: 0;
    color: var(--fm-text);
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.about-cta p:not(.section-kicker) {
    margin: 20px 0 0;
    color: var(--fm-muted);
    font-size: 19px;
    line-height: 1.55;
}

.about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

/* Adaptive */

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

    .member-card {
        grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    }
}

@media (max-width: 980px) {
    .about-hero {
        min-height: auto;
        padding: 122px 0 76px;
    }

    .about-hero__inner,
    .about-story__inner,
    .about-cta__inner {
        grid-template-columns: 1fr;
    }

    .about-hero__visual {
        min-height: 460px;
    }

    .about-hero__visual img {
        min-height: 460px;
    }

    .about-story__facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .about-fact {
        padding: 22px;
    }

    .about-fact strong {
        font-size: 26px;
    }

    .about-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .about-page p {
        font-size: 16px;
    }

    .about-hero__title {
        font-size: 42px;
        line-height: 0.96;
    }

    .about-hero__lead {
        font-size: 20px;
    }

    .about-hero__visual {
        min-height: 380px;
        border-radius: 26px;
    }

    .about-hero__visual img {
        min-height: 380px;
    }

    .about-story__facts {
        grid-template-columns: 1fr;
    }

    .about-story__content p {
        font-size: 17px;
    }

    .member-card {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 26px;
    }

    .member-card__photo {
        min-height: 380px;
        aspect-ratio: 4 / 3;
    }

    .member-card__photo::after {
        background:
            linear-gradient(180deg, transparent 0%, rgba(18, 13, 20, 0.42) 100%),
            radial-gradient(circle at top right, rgba(216, 35, 26, 0.20), transparent 48%);
    }

    .member-card__photo img {
        min-height: 380px;
    }

    .member-card__body {
        padding: 24px;
    }

    .member-card__body h3 {
        font-size: 30px;
    }

    .about-cta {
        padding: 76px 0;
    }

    .about-cta__inner {
        padding: 28px;
        border-radius: 28px;
    }

    .about-cta h2 {
        font-size: 40px;
    }

    .about-cta p:not(.section-kicker) {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 112px 0 66px;
    }

    .about-hero__title {
        font-size: 34px;
    }

    .about-hero__lead {
        font-size: 18px;
    }

    .about-hero__actions,
    .about-cta__actions {
        flex-direction: column;
    }

    .about-hero__actions .btn,
    .about-cta__actions .btn {
        width: 100%;
    }

    .about-hero__visual {
        min-height: 310px;
    }

    .about-hero__visual img {
        min-height: 310px;
    }

    .member-card__photo {
        min-height: 320px;
    }

    .member-card__photo img {
        min-height: 320px;
    }

    .member-card__body {
        padding: 22px;
    }

    .member-card__body h3 {
        font-size: 26px;
    }

    .member-card__body p {
        font-size: 15px;
    }

    .about-fact strong {
        font-size: 24px;
    }

    .about-cta__inner {
        padding: 24px;
    }

    .about-cta h2 {
        font-size: 34px;
    }
}

/* ==========================================================================
   About page end
========================================================================== */

/* ==========================================================================
   Simple lightbox start
========================================================================== */

.fm-lightbox {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
}

.fm-lightbox.is-open {
    display: flex;
}

.fm-lightbox__image {
    display: block;
    max-width: min(1100px, 96vw);
    max-height: 86vh;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    object-fit: contain;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.72);
}

.fm-lightbox__close {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 5001;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(8, 6, 9, 0.84);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.fm-lightbox__close:hover {
    background: var(--fm-red);
    border-color: var(--fm-red);
}

body.lightbox-open {
    overflow: hidden;
}

@media (max-width: 640px) {
    .fm-lightbox {
        padding: 14px;
    }

    .fm-lightbox__image {
        max-width: 96vw;
        max-height: 82vh;
        border-radius: 18px;
    }

    .fm-lightbox__close {
        top: 14px;
        right: 14px;
    }
}

/* ==========================================================================
   Simple lightbox end
========================================================================== */

/* ==========================================================================
   Tour page start
========================================================================== */

.tour-page {
    position: relative;
    overflow: hidden;
    background: var(--fm-bg);
}

.tour-page p {
    color: var(--fm-muted);
    font-size: 18px;
    line-height: 1.6;
}

body:has(.tour-page) .com-content-article > .page-header {
    display: none;
}

/* Tour hero */

.tour-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    background:
        radial-gradient(circle at 16% 24%, rgba(216, 35, 26, 0.28), transparent 400px),
        radial-gradient(circle at 82% 64%, rgba(111, 61, 255, 0.18), transparent 480px),
        linear-gradient(180deg, #080609 0%, #120d14 100%);
}

.tour-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 18%, #000000 82%, transparent);
}

.tour-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: 56px;
    align-items: center;
}

.tour-hero__content {
    max-width: 720px;
}

.tour-hero__title {
    margin: 0;
    color: var(--fm-text);
    font-size: clamp(46px, 6vw, 92px);
    font-weight: 1000;
    line-height: 0.92;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.tour-hero__lead {
    margin: 28px 0 0;
    color: rgba(244, 238, 230, 0.84);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.tour-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.tour-hero__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(224, 168, 58, 0.38);
    border-radius: 999px;
    color: var(--fm-gold);
    background: rgba(224, 168, 58, 0.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.tour-hero__poster {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border: 1px solid rgba(224, 168, 58, 0.38);
    border-radius: 34px;
    background: #000000;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.64),
        0 0 46px rgba(224, 168, 58, 0.10);
}

.tour-hero__poster::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.72) 100%),
        radial-gradient(circle at top right, rgba(216, 35, 26, 0.24), transparent 48%);
}

.tour-hero__poster::after {
    content: "Осень 2026";
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 12px 16px;
    border: 1px solid rgba(224, 168, 58, 0.42);
    border-radius: 999px;
    color: var(--fm-gold);
    background: rgba(8, 6, 9, 0.72);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.tour-hero__poster img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center center;
    filter: saturate(1.08) contrast(1.06);
}

/* Tour intro */

.tour-intro {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 24%, rgba(224, 168, 58, 0.10), transparent 360px),
        radial-gradient(circle at 86% 70%, rgba(216, 35, 26, 0.16), transparent 420px),
        linear-gradient(180deg, #120d14 0%, #080609 100%);
}

.tour-intro__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 56px;
    align-items: center;
}

.tour-intro__content {
    max-width: 760px;
}

.tour-intro__content p {
    margin: 26px 0 0;
    color: var(--fm-muted);
    font-size: 19px;
    line-height: 1.65;
}

.tour-intro__note {
    position: relative;
    overflow: hidden;
    padding: 32px;
    border: 1px solid rgba(224, 168, 58, 0.34);
    border-radius: 32px;
    background:
        radial-gradient(circle at 88% 12%, rgba(216, 35, 26, 0.20), transparent 260px),
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
        rgba(18, 13, 20, 0.94);
    box-shadow: var(--fm-shadow);
}

.tour-intro__note strong {
    display: block;
    color: var(--fm-text);
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.tour-intro__note ul {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.tour-intro__note li {
    position: relative;
    padding-left: 24px;
    color: var(--fm-muted);
    font-size: 17px;
    line-height: 1.5;
}

.tour-intro__note li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fm-red);
    box-shadow: 0 0 18px rgba(216, 35, 26, 0.55);
}

/* Tour cities */

.tour-cities {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 22%, rgba(216, 35, 26, 0.20), transparent 380px),
        radial-gradient(circle at 86% 76%, rgba(111, 61, 255, 0.16), transparent 420px),
        linear-gradient(180deg, #080609 0%, #120d14 100%);
}

.tour-cities::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 18%, #000000 82%, transparent);
}

.tour-cities .container {
    position: relative;
    z-index: 2;
}

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

.tour-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--fm-border);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)),
        rgba(18, 13, 20, 0.92);
    box-shadow:
        0 20px 58px rgba(0, 0, 0, 0.44),
        0 0 0 1px rgba(255, 255, 255, 0.03);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    border-color: rgba(224, 168, 58, 0.72);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.70),
        0 0 0 1px rgba(224, 168, 58, 0.14);
}

.tour-card__link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: var(--fm-text);
}

.tour-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #000000;
}

.tour-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.62) 100%),
        radial-gradient(circle at top right, rgba(216, 35, 26, 0.22), transparent 48%);
}

.tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        filter 0.35s ease;
}

.tour-card:hover .tour-card__image img {
    transform: scale(1.08);
    opacity: 0.9;
    filter: saturate(1.08) contrast(1.08);
}

.tour-card__body {
    position: relative;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.tour-card__body::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(224, 168, 58, 0.65), transparent);
    opacity: 0.58;
}

.tour-card__date {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 30px;
    margin-bottom: 14px;
    padding: 0 11px;
    border: 1px solid rgba(224, 168, 58, 0.42);
    border-radius: 999px;
    color: var(--fm-gold);
    background: rgba(0, 0, 0, 0.26);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-card__city {
    display: block;
    color: var(--fm-text);
    font-size: 30px;
    font-weight: 1000;
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.tour-card__place {
    display: block;
    min-height: 38px;
    margin-top: 10px;
    color: rgba(244, 238, 230, 0.82);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

.tour-card__price {
    display: block;
    margin-top: 14px;
    color: var(--fm-gold);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 40px;
    margin-top: 18px;
    padding: 0 16px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--fm-red);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 14px 36px rgba(216, 35, 26, 0.32);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.tour-card:hover .tour-card__button {
    transform: translateY(-2px);
    background: var(--fm-red-hover);
    box-shadow: 0 18px 44px rgba(216, 35, 26, 0.46);
}

/* Tour CTA */

.tour-cta {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(216, 35, 26, 0.24), transparent 380px),
        radial-gradient(circle at 82% 70%, rgba(224, 168, 58, 0.12), transparent 420px),
        linear-gradient(180deg, #120d14 0%, #050405 100%);
}

.tour-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    padding: 38px;
    border: 1px solid rgba(224, 168, 58, 0.36);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
        rgba(18, 13, 20, 0.92);
    box-shadow: var(--fm-shadow);
}

.tour-cta__content {
    max-width: 760px;
}

.tour-cta h2 {
    margin: 0;
    color: var(--fm-text);
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.tour-cta p:not(.section-kicker) {
    margin: 20px 0 0;
    color: var(--fm-muted);
    font-size: 19px;
    line-height: 1.55;
}

.tour-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

/* Adaptive */

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

@media (max-width: 980px) {
    .tour-hero {
        min-height: auto;
        padding: 122px 0 76px;
    }

    .tour-hero__inner,
    .tour-intro__inner,
    .tour-cta__inner {
        grid-template-columns: 1fr;
    }

    .tour-hero__poster {
        min-height: 500px;
    }

    .tour-hero__poster img {
        min-height: 500px;
    }

    .tour-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .tour-page p {
        font-size: 16px;
    }

    .tour-hero__title {
        font-size: 42px;
        line-height: 0.96;
    }

    .tour-hero__lead {
        font-size: 20px;
    }

    .tour-hero__poster {
        min-height: 420px;
        border-radius: 26px;
    }

    .tour-hero__poster img {
        min-height: 420px;
    }

    .tour-intro__content p {
        font-size: 17px;
    }

    .tour-intro__note {
        padding: 26px;
        border-radius: 28px;
    }

    .tour-intro__note strong {
        font-size: 28px;
    }

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

    .tour-card {
        border-radius: 26px;
    }

    .tour-card__image {
        aspect-ratio: 16 / 9;
    }

    .tour-card__body {
        padding: 22px;
    }

    .tour-card__city {
        font-size: 30px;
    }

    .tour-card__place {
        min-height: 0;
    }

    .tour-cta {
        padding: 76px 0;
    }

    .tour-cta__inner {
        padding: 28px;
        border-radius: 28px;
    }

    .tour-cta h2 {
        font-size: 40px;
    }

    .tour-cta p:not(.section-kicker) {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .tour-hero {
        padding: 112px 0 66px;
    }

    .tour-hero__title {
        font-size: 34px;
    }

    .tour-hero__lead {
        font-size: 18px;
    }

    .tour-hero__meta span {
        min-height: 34px;
        font-size: 10px;
    }

    .tour-hero__actions,
    .tour-cta__actions {
        flex-direction: column;
    }

    .tour-hero__actions .btn,
    .tour-cta__actions .btn {
        width: 100%;
    }

    .tour-hero__poster {
        min-height: 330px;
    }

    .tour-hero__poster img {
        min-height: 330px;
    }

    .tour-intro__note {
        padding: 22px;
    }

    .tour-intro__note strong {
        font-size: 24px;
    }

    .tour-intro__note li {
        font-size: 15px;
    }

    .tour-card__body {
        padding: 20px;
    }

    .tour-card__date {
        min-height: 28px;
        margin-bottom: 12px;
        font-size: 10px;
    }

    .tour-card__city {
        font-size: 26px;
    }

    .tour-card__place {
        font-size: 12px;
    }

    .tour-card__price {
        font-size: 13px;
    }

    .tour-card__button {
        min-height: 38px;
        margin-top: 16px;
        padding: 0 14px;
        font-size: 10px;
    }

    .tour-cta__inner {
        padding: 24px;
    }

    .tour-cta h2 {
        font-size: 34px;
    }
}

/* ==========================================================================
   Tour page end
========================================================================== */

/* ==========================================================================
   Album page start
========================================================================== */

.album-page {
    position: relative;
    overflow: hidden;
    background: var(--fm-bg);
}

.album-page p {
    color: var(--fm-muted);
    font-size: 18px;
    line-height: 1.6;
}

body:has(.album-page) .com-content-article > .page-header {
    display: none;
}

/* Album hero */

.album-hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    background:
        radial-gradient(circle at 16% 24%, rgba(216, 35, 26, 0.24), transparent 400px),
        radial-gradient(circle at 82% 64%, rgba(111, 61, 255, 0.18), transparent 480px),
        linear-gradient(180deg, #080609 0%, #120d14 100%);
}

.album-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, transparent, #000000 18%, #000000 82%, transparent);
}

.album-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: 56px;
    align-items: center;
}

.album-hero__cover {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(224, 168, 58, 0.38);
    border-radius: 34px;
    background: #000000;
    box-shadow:
        0 30px 90px rgba(0, 0, 0, 0.64),
        0 0 46px rgba(224, 168, 58, 0.10);
}

.album-hero__cover::after {
    content: "";
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    height: 1px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(224, 168, 58, 0.75), transparent);
    opacity: 0.72;
}

.album-hero__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.06) contrast(1.04);
}

.album-hero__content {
    max-width: 760px;
}

.album-hero__title {
    margin: 0;
    color: var(--fm-text);
    font-size: clamp(46px, 6vw, 92px);
    font-weight: 1000;
    line-height: 0.92;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.album-hero__lead {
    margin: 28px 0 0;
    color: rgba(244, 238, 230, 0.84);
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.album-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.album-hero__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid rgba(224, 168, 58, 0.38);
    border-radius: 999px;
    color: var(--fm-gold);
    background: rgba(224, 168, 58, 0.08);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Album platforms */

.album-platforms {
    margin-top: 34px;
}

.album-platforms__title {
    margin: 0 0 14px;
    color: var(--fm-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.album-platforms__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.album-platforms__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03)),
        rgba(18, 13, 20, 0.92);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease;
    overflow: hidden;
}

.album-platforms__links a:hover {
    transform: translateY(-4px);
    border-color: rgba(224, 168, 58, 0.72);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
        rgba(18, 13, 20, 0.98);
}

.album-platforms__links img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

/* Album player */

.album-player-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 22%, rgba(216, 35, 26, 0.18), transparent 380px),
        radial-gradient(circle at 86% 76%, rgba(224, 168, 58, 0.12), transparent 420px),
        linear-gradient(180deg, #120d14 0%, #080609 100%);
}

.album-player {
    overflow: hidden;
    border: 1px solid rgba(224, 168, 58, 0.34);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
        rgba(18, 13, 20, 0.94);
    box-shadow: var(--fm-shadow);
}

.album-player iframe {
    display: block;
    width: 100%;
    height: 900px;
    border: 0;
    background: #000000;
}

/* Album CTA */

.album-cta {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(216, 35, 26, 0.24), transparent 380px),
        radial-gradient(circle at 82% 70%, rgba(224, 168, 58, 0.12), transparent 420px),
        linear-gradient(180deg, #080609 0%, #050405 100%);
}

.album-cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    padding: 38px;
    border: 1px solid rgba(224, 168, 58, 0.36);
    border-radius: 34px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
        rgba(18, 13, 20, 0.92);
    box-shadow: var(--fm-shadow);
}

.album-cta__content {
    max-width: 760px;
}

.album-cta h2 {
    margin: 0;
    color: var(--fm-text);
    font-size: clamp(38px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.album-cta p:not(.section-kicker) {
    margin: 20px 0 0;
    color: var(--fm-muted);
    font-size: 19px;
    line-height: 1.55;
}

.album-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

/* Adaptive */

@media (max-width: 980px) {
    .album-hero {
        min-height: auto;
        padding: 122px 0 76px;
    }

    .album-hero__inner,
    .album-cta__inner {
        grid-template-columns: 1fr;
    }

    .album-hero__cover {
        max-width: 520px;
    }

    .album-cta__actions {
        justify-content: flex-start;
    }

    .album-player iframe {
        height: 760px;
    }
}

@media (max-width: 760px) {
    .album-page p {
        font-size: 16px;
    }

    .album-hero__title {
        font-size: 42px;
        line-height: 0.96;
    }

    .album-hero__lead {
        font-size: 20px;
    }

    .album-player {
        border-radius: 26px;
    }

    .album-player iframe {
        height: 700px;
    }

    .album-cta {
        padding: 76px 0;
    }

    .album-cta__inner {
        padding: 28px;
        border-radius: 28px;
    }

    .album-cta h2 {
        font-size: 40px;
    }

    .album-cta p:not(.section-kicker) {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .album-hero {
        padding: 112px 0 66px;
    }

    .album-hero__title {
        font-size: 34px;
    }

    .album-hero__lead {
        font-size: 18px;
    }

    .album-hero__meta span {
        min-height: 34px;
        font-size: 10px;
    }

    .album-platforms__links {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .album-platforms__links a {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .album-platforms__links img {
        width: 48px;
        height: 48px;
    }

    .album-player iframe {
        height: 640px;
    }

    .album-cta__actions {
        flex-direction: column;
    }

    .album-cta__actions .btn {
        width: 100%;
    }

    .album-cta__inner {
        padding: 24px;
    }

    .album-cta h2 {
        font-size: 34px;
    }
}

/* ==========================================================================
   Album page end
========================================================================== */

/* ==========================================================================
   Global responsive start
========================================================================== */

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

    .concert-card--featured {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 760px;
    }

    .hero__inner {
        padding-top: 120px;
    }

    .hero__logo {
        width: min(340px, 88vw);
        margin-bottom: 22px;
    }

    .section {
        padding: 76px 0;
    }

    .section-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero__text {
        font-size: 20px;
    }
}

/* ==========================================================================
   Global responsive end
========================================================================== */

/* ==========================================================================
   Breadcrumbs start
========================================================================== */

.breadcrumbs-wrap {
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumbs-wrap a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs-wrap a:hover {
    color: #ffffff;
}

.breadcrumbs-wrap .mod-breadcrumbs,
.breadcrumbs-wrap .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs-wrap .mod-breadcrumbs__item,
.breadcrumbs-wrap .breadcrumb-item {
    display: flex;
    align-items: center;
    min-width: 0;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs-wrap .mod-breadcrumbs__item + .mod-breadcrumbs__item::before,
.breadcrumbs-wrap .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    display: inline-block;
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.35);
}

.breadcrumbs-wrap .mod-breadcrumbs__item.active,
.breadcrumbs-wrap .breadcrumb-item.active,
.breadcrumbs-wrap .mod-breadcrumbs__item span,
.breadcrumbs-wrap .breadcrumb-item span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs-wrap .divider {
    display: none;
}

@media (max-width: 768px) {
    .breadcrumbs-wrap {
        margin: 0 0 20px;
        font-size: 13px;
    }

    .breadcrumbs-wrap .mod-breadcrumbs__item + .mod-breadcrumbs__item::before,
    .breadcrumbs-wrap .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 8px;
    }
}

@media (max-width: 480px) {
    .breadcrumbs-wrap {
        margin: 0 0 18px;
        font-size: 12px;
        line-height: 1.5;
    }

    .breadcrumbs-wrap .mod-breadcrumbs,
    .breadcrumbs-wrap .breadcrumb {
        display: block;
    }

    .breadcrumbs-wrap .mod-breadcrumbs__item,
    .breadcrumbs-wrap .breadcrumb-item {
        display: inline;
    }

    .breadcrumbs-wrap .mod-breadcrumbs__item + .mod-breadcrumbs__item::before,
    .breadcrumbs-wrap .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 7px;
    }
}

/* ==========================================================================
   Breadcrumbs end
========================================================================== */