/* ==========================================================================
   Шрифты
   ========================================================================== */

@font-face {
    font-family: "A La Russ";
    src: url("/assets/fonts/alaruss.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Lucida Sans Unicode";
    src: local("Lucida Sans Unicode"), local("LucidaSansUnicode"), local("Lucida Sans"), local("Arial"), local("Times New Roman");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "UNCAGE";
    src: url("/assets/fonts/uncage.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   Переменные и сброс
   ========================================================================== */

:root {
    --gold: #E4AD2B;
    --gold-light: #F4C842;
    --anthracite: #1a1a1b;
    --anthracite-light: #252526;
    --text-primary: #eeeeee;
    --text-secondary: #c0c0c0;
    --bg-dark: rgb(41, 40, 41);
    --transition-fast: 0.28s ease;
    --transition-medium: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Фоновая анимация (SVG иконки)
   ========================================================================== */

.background-symbols {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -10;
    user-select: none;
}

.background-symbols__shape {
    position: absolute;
    opacity: 0.4;
    will-change: transform, opacity;
}

.background-symbols__shape svg {
    display: block;
    stroke: #ffffff;
    fill: none;
    stroke-width: 3;
    filter: drop-shadow(0 0 6px rgba(197, 197, 197, 0.5));
}

@keyframes floatUp {
    0% {
        transform: translateY(-15vh) rotate(0deg) scale(var(--scale, 1));
        opacity: 0;
    }
    8% {
        opacity: var(--shape-opacity, 0.07);
    }
    92% {
        opacity: var(--shape-opacity, 0.07);
    }
    100% {
        transform: translateY(110vh) rotate(360deg) scale(var(--scale, 1));
        opacity: 0;
    }
}

@keyframes floatDiagLeft {
    0% {
        transform: translateY(-15vh) translateX(15vw) rotate(0deg) scale(var(--scale, 1));
        opacity: 0;
    }
    8% {
        opacity: var(--shape-opacity, 0.07);
    }
    92% {
        opacity: var(--shape-opacity, 0.07);
    }
    100% {
        transform: translateY(110vh) translateX(-20vw) rotate(-270deg) scale(var(--scale, 1));
        opacity: 0;
    }
}

@keyframes floatDiagRight {
    0% {
        transform: translateY(-15vh) translateX(-15vw) rotate(0deg) scale(var(--scale, 1));
        opacity: 0;
    }
    8% {
        opacity: var(--shape-opacity, 0.07);
    }
    92% {
        opacity: var(--shape-opacity, 0.07);
    }
    100% {
        transform: translateY(110vh) translateX(20vw) rotate(270deg) scale(var(--scale, 1));
        opacity: 0;
    }
}


/* ==========================================================================
   Hero секция
   ========================================================================== */

.hero {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr;
    justify-items: center;
    align-items: center;
    overflow: visible;
}

.hero__bg-image {
    grid-area: 1 / 1;
    position: relative;
    width: 125%;
    height: auto;
    align-self: start;
}

.hero__main-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: none;
}

.hero__blur-overlay,
.hero__gradient,
.hero__content,
.hero__decor-line {
    grid-area: 1 / 1;
    width: 100%;
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin-top: 1%;
}

.hero__decor-line {
    position: relative;
    align-self: end;
    justify-self: center;
    margin-bottom: 4%;
    transform: rotate(-3deg);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
    z-index: 10;
}

.hero__title {
    font-family: "A La Russ", sans-serif;
    font-size: clamp(80px, 18vw, 260px);
    font-weight: 500;
    line-height: 0.9;
    color: white;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.78), 0 4px 10px rgba(0, 0, 0, 0.65), 0 2px 4px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.02em;
    margin-bottom: 50px;
    margin-top: 0px;
    animation: titleReveal 1.2s ease-out;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero__subtitle {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(20px, 4vw, 42px);
    font-weight: 400;
    line-height: 1.3;
    color: white;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.4), 0 8px 24px rgba(0, 0, 0, 0.35);
    margin: 1.5rem 0 0;
    margin-bottom: 13rem;
    animation: subtitleReveal 1.4s ease-out 0.2s both;
}

@keyframes subtitleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 4vh;
    flex-wrap: wrap;
    animation: metaReveal 1.6s ease-out 0.4s both;
}

@keyframes metaReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__date,
.hero__location {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero__meta-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.hero__divider {
    color: var(--gold);
    font-size: clamp(14px, 2.5vw, 18px);
}

.hero__buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    animation: buttonsReveal 1.8s ease-out 0.6s both;
}

@keyframes buttonsReveal {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 1.1rem 2.8rem;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(16px, 2.2vw, 18px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.hero__btn_primary::before {
    inset: 0;
}

.hero__btn_secondary {
    background: transparent;
    border: 2px solid var(--gold);
}

.hero__btn_secondary::before {
    inset: 0;
    background: transparent;
}

.hero__btn .hero__btn-text {
    color: var(--anthracite);
    text-shadow: none;
    transition: transform 0.3s ease;
}

.hero__btn_secondary .hero__btn-text {
    color: var(--gold);
}

.hero__btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(228, 173, 43, 0.25);
}

.hero__btn_primary:hover::before {
    transform: scale(1.05);
}

.hero__btn_secondary:hover {
    border-color: var(--gold-light);
    box-shadow: 0 15px 40px rgba(228, 173, 43, 0.25), inset 0 0 20px rgba(228, 173, 43, 0.05);
}

.hero__btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* ==========================================================================
   Общие стили секций
   ========================================================================== */

section {
    position: relative;
    z-index: 1;
    padding: 6rem 5% 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section__header {
    text-align: center;
    margin-top: 0rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.section__title {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.section__subtitle {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    color: var(--text-secondary);
    margin: 0.8rem 0 0;
    font-weight: 400;
}

.section__decor-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.2rem auto 0;
    transform: rotate(-2deg);
    border-radius: 2px;
}

/* ==========================================================================
   Мультиформатная сетка
   ========================================================================== */

.multiformat {
    padding-top: 4rem;
}

.activities__grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 2rem;
}

.activities__col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
    padding-top: var(--col-offset, 0px);
}

.activities__col_wide {
    flex: 2;
}

.activities__col_offset {
    --col-offset: 60px;
}


.activity-card_music { min-height: 370px; }
.activity-card_fair { min-height: 370px; }

.activity-card_air   { min-height: 250px; }
.activity-card_show  { min-height: 250px; }
.activity-card_sport { min-height: 350px; }

.activity-card_kids  { min-height: 370px; }
.activity-card_recon { min-height: 370px; }

.activity-card {
    position: relative;
    background:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M-2 10L10 -2M0 16L16 0M6 18L18 6' stroke='rgba(255,255,255,0.04)' stroke-width='1.2'/%3E%3C/svg%3E"),
        linear-gradient(180deg, rgba(37, 37, 38, 0.9) 0%, rgba(26, 26, 27, 0.95) 100%);
    border: 1px solid rgba(228, 173, 43, 0.2);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(8px);
}

.activity-card::before,
.scratch-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--scratch-bg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top left;
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
    clip-path: inset(0 round inherit);
}

.scratch-texture-after::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--scratch-bg);
    background-size: auto;
    background-repeat: no-repeat;
    background-position: top left;
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
}

/* ==========================================================================
   Паттерн-текстура
   ========================================================================== */

.about__info::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M-2 10L10 -2M0 16L16 0M6 18L18 6' stroke='rgba(255,255,255,0.07)' stroke-width='1.2'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: repeat;
    pointer-events: none;
    border-radius: inherit;
    z-index: 2;
}

/* ticket-card */
.ticket-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M-2 10L10 -2M0 16L16 0M6 18L18 6' stroke='rgba(255,255,255,0.07)' stroke-width='1.2'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: repeat;
    pointer-events: none;
    border-radius: inherit;
    z-index: 2;
}

/* location-outer-card — паттерн под дочерними блоками */
.map__outer-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M-2 10L10 -2M0 16L16 0M6 18L18 6' stroke='rgba(255,255,255,0.07)' stroke-width='1.2'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: repeat;
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

/* Hover — золотой градиент по краям */
.activity-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(228, 173, 43, 0.3), transparent 50%, rgba(228, 173, 43, 0.15));
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: -1;
}

.activity-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(228, 173, 43, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(228, 173, 43, 0.05);
}

.activity-card:hover::after {
    opacity: 1;
}

.activity-card__image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 16px;
    z-index: 2;
}

.activity-card__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(228, 173, 43, 0.08) 0%, transparent 70%);
    opacity: 0.5;
}

.activity-card__icon {
    display: block;
    width: 100px;
    height: 100px;
    color: var(--gold);
    opacity: 0.8;
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
    position: relative;
}

.activity-card__image-zoom {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(228, 173, 43, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.activity-card:hover .activity-card__icon {
    transform: scale(1.15) rotate(2deg);
    opacity: 1;
    filter: drop-shadow(0 12px 30px rgba(228, 173, 43, 0.5));
}

.activity-card:hover .activity-card__image-zoom {
    opacity: 1;
}

.activity-card__content {
    position: relative;
    z-index: 3;
    text-align: left;
}

.activity-card__title {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(21px, 3.5vw, 27px);
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.activity-card__desc {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(13px, 2vw, 15px);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

.activity-card__glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(228, 173, 43, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}

.activity-card:hover .activity-card__glow {
    opacity: 1;
}

.activity-card_sport .activity-card__icon {
    width: 240px;
    height: 240px;
    margin-bottom: 70px;
}

.activity-card_music .activity-card__icon {
    width: 200px;
    height: 200px;
    margin-bottom: 100px;
}

.activity-card_food .activity-card__icon {
    width: 100px;
    height: 100px;
    margin-bottom: 75px;
}

.activity-card_air .activity-card__icon {
    width: 250px;
    height: 250px;
    margin-bottom: 30px;
}

.activity-card_show .activity-card__icon {
    width: 250px;
    height: 250px;
    margin-bottom: 50px;
}

.activity-card_kids .activity-card__icon {
    width: 160px;
    height: 160px;
    margin-bottom: 60px;
}

.activity-card_sport .activity-card__title {
    font-size: clamp(25px, 5vw, 38px);
}

.activity-card_fair .activity-card__icon {
    width: 180px;
    height: 180px;
    margin-bottom: 70px;
    stroke: var(--gold);
    fill: none;
}

.activity-card_recon .activity-card__icon {
    width: 180px;
    height: 180px;
    margin-bottom: 70px;
    margin-right: 20px;
    stroke: var(--gold);
    fill: none;
}

/* ==========================================================================
   О фестивале
   ========================================================================== */

.about {
    padding-top: 5rem;
}

.about__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.about__info {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(37, 37, 38, 0.6) 0%, rgba(26, 26, 27, 0.8) 100%);
    border: 1px solid rgba(228, 173, 43, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.about__dates-block,
.about__time-block,
.about__location-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about__date-big,
.about__time-big {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.about__date-label {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.about__location-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.about__location-icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.about__location-block span {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(15px, 2.2vw, 17px);
    color: var(--text-primary);
    line-height: 1.5;
}

.about__description {
    padding: 1rem 0;
}

.about__lead {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 2rem;
    line-height: 1.3;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about__features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(15px, 2.2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.5;
}

.about__feature-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ==========================================================================
   Программа
   ========================================================================== */

.program {
    padding-top: 0rem;
    margin-top: 100px;
}

.program__tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.program__tab {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    color: var(--text-secondary);
    padding: 0.9rem 2.2rem;
    border: 2px solid rgba(228, 173, 43, 0.3);
    border-radius: 8px;
    background: transparent;
    transition: all 0.35s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.program__tab:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.program__tab_active {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--anthracite);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(228, 173, 43, 0.3);
}

.program__content {
    position: relative;
    min-height: 400px;
}

.program__day {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program__day_active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.program__item {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(90deg, rgba(37, 37, 38, 0.7) 0%, rgba(26, 26, 27, 0.5) 100%);
    border: 1px solid rgba(228, 173, 43, 0.15);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.program__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath d='M-2 10L10 -2M0 16L16 0M6 18L18 6' stroke='rgba(255,255,255,0.05)' stroke-width='1.2'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
}

.program__item::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(228, 173, 43, 0.05);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: -1;
}

.program__item:hover {
    background: linear-gradient(90deg, rgba(37, 37, 38, 0.9) 0%, rgba(26, 26, 27, 0.7) 100%);
    border-color: rgba(228, 173, 43, 0.4);
    transform: translateX(8px);
}

.program__item:hover::after {
    opacity: 1;
}

.program__time {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(18px, 2.8vw, 22px);
    font-weight: 700;
    color: var(--gold);
    min-width: 90px;
}

.program__event {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(15px, 2.2vw, 17px);
    color: var(--text-primary);
    font-weight: 500;
}

.program__stage {
    font-family: 'UNCAGE', sans-serif;
    font-size: clamp(15px, 3vw, 17px);
    color: var(--gold);
    font-weight: 500;
    display: flex;
    margin-left: auto;
    margin-right: 10px;
}

.program__more {
    text-align: center;
    margin-top: 3rem;
}

.btn-outline {
    display: inline-block;
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(15px, 2.2vw, 17px);
    font-weight: 700;
    color: var(--gold);
    padding: 1rem 2.5rem;
    border: 2px solid rgba(228, 173, 43, 0.4);
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.35s ease;
}

.btn-outline:hover {
    background: rgba(228, 173, 43, 0.1);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(228, 173, 43, 0.2);
}

/* ==========================================================================
   Билеты
   ========================================================================== */

.tickets {
    padding-top: 5rem;
}

.tickets__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 520px));
    gap: 2rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.ticket-card {
    position: relative;
    background: linear-gradient(180deg, rgba(37, 37, 38, 0.95) 0%, rgba(26, 26, 27, 0.98) 100%);
    border: 2px solid rgba(228, 173, 43, 0.25);
    border-radius: 20px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: visible;
}

.ticket-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(228, 173, 43, 0.06);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: -1;
}

.ticket-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(228, 173, 43, 0.6);
}

.ticket-card:hover::after {
    opacity: 1;
}

.ticket-card_popular {
    border-color: rgba(228, 173, 43, 0.7);
}

.ticket-card_popular:hover {
    transform: translateY(-12px) scale(1.03);
}

.ticket-card_popular:hover::after {
    opacity: 1;
}

.ticket-card__popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--anthracite);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-family: "UNCAGE", sans-serif;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(228, 173, 43, 0.4);
}

.ticket-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(228, 173, 43, 0.25);
}

.ticket-card__name {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(22px, 3.5vw, 26px);
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticket-card__price {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(28px, 4.5vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ticket-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ticket-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 2rem;
    flex: 1;
}

.ticket-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(14px, 2vw, 16px);
    color: var(--text-secondary);
    line-height: 1.5;
}

.ticket-card__check-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.ticket-card__btn {
    width: 100%;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    border-radius: 12px;
    color: var(--anthracite);
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(16px, 2.5vw, 18px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 20px rgba(228, 173, 43, 0.3);
    display: block;
    text-align: center;
    text-decoration: none;
}

.ticket-card__btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(228, 173, 43, 0.45);
    filter: brightness(1.08);
}

.ticket-card__btn:active {
    transform: translateY(-2px);
}

/* ==========================================================================
   Карта
   ========================================================================== */

.map {
    padding-top: 5rem;
}

.map__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: start;
}

.map__info {
    display: flex;
    flex-direction: column;
    margin-top: 3.5rem;
    gap: 2rem;
}

.map__info-item {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 37, 38, 0.6) 0%, rgba(26, 26, 27, 0.8) 100%);
    border: 1px solid rgba(228, 173, 43, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

.map__info-item:hover {
    border-color: rgba(228, 173, 43, 0.5);
    transform: translateX(8px);
}

.map__info-item h3 {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: var(--gold);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map__info-item p {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(15px, 2.2vw, 17px);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.map__frame {
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(228, 173, 43, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.map__frame iframe {
    width: 100%;
    height: 450px;
    display: block;
    filter: grayscale(20%) contrast(1.1) brightness(0.9);
    transition: filter 0.4s ease;
}

.map__frame:hover iframe {
    filter: grayscale(0%) contrast(1) brightness(1);
}

.map__outer-card {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(to bottom left, rgba(228, 173, 43, 0.09) 0%, rgba(26, 26, 27, 0.9) 45%, rgba(20, 20, 21, 0.92) 100%);
    border: 1px solid rgba(228, 173, 43, 0.22);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(228, 173, 43, 0.12);
    position: relative;
    overflow: hidden;
}

.transfer {
    position: relative;
    margin-top: 4rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(37, 37, 38, 0.6) 0%, rgba(26, 26, 27, 0.8) 100%);
    border: 1px solid rgba(228, 173, 43, 0.2);
    border-radius: 18px;
    overflow: hidden;
    isolation: isolate;
    z-index: 1;
}

.transfer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.transfer__badge {
    display: inline-block;
    background: var(--gold);
    color: #111;
    font-family: "UNCAGE", sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}

.transfer__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.transfer__bus-icon {
    width: 55px;
    height: 55px;
    color: var(--gold);
    flex-shrink: 0;
    margin-bottom: 15px;
}

.transfer__title {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(18px, 2.5vw, 26px);
    font-weight: 700;
    color: var(--gold);
    margin: 0 0 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.transfer__dates {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    color: rgba(228, 173, 43, 0.75);
    margin: 0;
}

.transfer__desc {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 1.8rem;
    max-width: 700px;
}

.transfer__route {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
    max-width: 480px;
}

.transfer__map-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-top: 0;
}

.transfer__map-svg {
    width: 55px;
    height: auto;
    margin-top: 0;
}

.transfer__points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 1rem;
}

.transfer__point {
    display: flex;
    align-items: flex-start;
}

.transfer__point-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 0.3rem;
}

.transfer__point-label {
    font-family: "UNCAGE", sans-serif;
    font-size: clamp(11px, 1.4vw, 13px);
    color: rgba(228, 173, 43, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.transfer__point-name {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(15px, 2vw, 17px);
    color: #fff;
    font-weight: 600;
}

.transfer__point-name em {
    font-style: normal;
    color: var(--text-secondary);
    font-size: 0.9em;
}

.transfer__point-addr {
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(13px, 1.6vw, 14px);
    color: var(--text-secondary);
}

.transfer__schedule-notice {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.4rem;
    background: rgba(228, 173, 43, 0.12);
    border: 1px dashed rgba(228, 173, 43, 0.3);
    border-radius: 10px;
    font-family: "Lucida Sans Unicode", sans-serif;
    font-size: clamp(13px, 1.6vw, 15px);
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 3;
}

.transfer__clock-icon {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ==========================================================================
   Партнёры
   ========================================================================== */

.partners {
    padding-top: 5rem;
}

.partners__label {
    font-family: "UNCAGE", sans-serif;
    font-size: 1.5vw;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
    margin: 0 0 1.5rem;
    max-width: 1100px;
    margin-left: auto;
    margin-top: 25px;
    margin-right: auto;
    padding: 0;
}

.partners__grid {
    display: grid;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem;
}

.partners__grid_main {
    grid-template-columns: repeat(6, 1fr);
}

.partners__grid_main .partners__logo {
    height: 120px;
    aspect-ratio: unset;
    padding: 16px;
}

.partners__grid_secondary {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}

/* Последние 2 карточки: во 2-й и 4-й колонках */
.partners__grid_secondary .partners__logo_last-odd {
    grid-column: 2;
}

.partners__grid_secondary .partners__logo_last-even {
    grid-column: 4;
}

.partners__grid_secondary .partners__logo {
    height: 70px;
    aspect-ratio: unset;
    border-radius: 8px;
    border-color: rgba(228, 173, 43, 0.15);
    padding: 8px;
}

.partners__logo {
    background: white;
    border: 2px solid rgba(228, 173, 43, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: all 0.35s ease;
    text-decoration: none;
    cursor: pointer;
}

.partners__logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.partners__logo:hover {
    border-color: rgba(228, 173, 43, 0.7);
    background: white;
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 8px 25px rgba(228, 173, 43, 0.2);
}

.partners__logo:hover img {
    transform: scale(1.05);
}
/* ==========================================================================
   Lucida Sans Unicode — жирный по всему сайту
   ========================================================================== */

.hero__mobile-fade {
    display: none;
}

.hero__subtitle br {
    display: none;
}

.hero__subtitle,
.section__subtitle,
.activity-card__desc,
.about__date-label,
.about__location-block span,
.about__features li,
.program__event,
.ticket-card__features li,
.map__info-item p,
.transfer__dates,
.transfer__desc,
.transfer__point-name,
.transfer__point-addr,
.transfer__point-label,
.transfer__schedule-notice span {
    font-weight: 700;
}


