*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    overflow-x: clip;
}

:root {
    --nav-height-expanded: 116px;
    --nav-height-collapsed: 92px;
    --nav-logo-height-expanded: 82px;
    --nav-logo-height-collapsed: 64px;
}

body {
    margin: 0;
    font-family: "Alan Sans", sans-serif;
    padding-top: var(--nav-height-expanded);
    overflow-x: hidden;
    transition: padding-top 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

body.nav-scrolled {
    padding-top: var(--nav-height-collapsed);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    height: var(--nav-height-expanded);
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    box-sizing: border-box;
    overflow: hidden;
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1), background 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-bottom-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-logo {
    position: relative;
    margin-right: -10px;
}

.nav-links {
    flex: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links li {
    padding: 0 12px;
    display: flex;
    justify-content: center;
}


.nav-logo img {
    display: block;
    height: var(--nav-logo-height-expanded);
    width: auto;
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-white {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

nav.scrolled .logo-blue {
    opacity: 0;
}

nav.scrolled .logo-white {
    opacity: 1;
}

nav a {
    color: #0E4391;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.5em;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: color 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a {
    position: relative;
    display: inline-block;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease-out;
}

.nav-links li a:hover,
.nav-links li a:focus-visible,
.nav-links li a.is-active {
    color: #c8a96a;
}

.nav-links li a:hover::after,
.nav-links li a:focus-visible::after,
.nav-links li a.is-active::after {
    transform: scaleX(1);
}

.nav-ticket {
    flex: 0 0 auto;
    width: 140px;
    height: 140px;
    margin-left: auto;
    margin-right: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 18px 28px;
    box-sizing: border-box;
    background: #0E4391;
    color: #ffffff;
    transform: translate(26px, -38px);
    box-shadow: 0 18px 32px rgba(14, 67, 145, 0.18);
    transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.nav-ticket:hover,
.nav-ticket:focus-visible {
    transform: translate(26px, -34px);
    box-shadow: 0 22px 36px rgba(14, 67, 145, 0.24);
}

nav.scrolled {
    height: var(--nav-height-collapsed);
    background: linear-gradient(90deg, #082a5b 0%, #0E4391 70%);
    border-bottom-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 28px rgba(8, 42, 91, 0.18);
}

nav.scrolled .nav-logo img {
    height: var(--nav-logo-height-collapsed);
}

nav.scrolled a {
    color: #ffffff;
}

nav.scrolled .nav-ticket {
    background: #ffffff;
    color: #0E4391;
    box-shadow: 0 14px 26px rgba(7, 27, 57, 0.2);
}

.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
    bottom: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 18px 28px calc(18px + env(safe-area-inset-bottom));
    background: linear-gradient(90deg, #082a5b 0%, #0E4391 70%);
    color: #ffffff;
    box-shadow: 0 -16px 32px rgba(8, 42, 91, 0.3);
    transform: translateY(105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sticky-cta__info {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
}

.sticky-cta__title,
.sticky-cta__meta {
    font-size: clamp(18px, 1.9vw, 24px);
    font-weight: 600;
    line-height: 1.1;
}

.sticky-cta__meta {
    font-size: clamp(14px, 1.25vw, 18px);
    font-weight: 500;
    opacity: 0.92;
}

@media (min-width: 921px) {
    .sticky-cta__info {
        flex-direction: row;
        align-items: baseline;
        gap: 18px;
    }

    .sticky-cta__title,
    .sticky-cta__meta {
        white-space: nowrap;
    }

    .sticky-cta__title {
        font-size: clamp(28px, 2.1vw, 34px);
    }

    .sticky-cta__meta {
        font-size: clamp(21px, 1.5vw, 26px);
    }
}

.sticky-cta__btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 68px;
    padding: 16px 30px;
    border-radius: 999px;
    background: #ffffff;
    color: #0E4391;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.sticky-cta.is-visible .sticky-cta__btn {
    animation: ticket-shake 6s ease-in-out infinite;
    transform-origin: center;
}

.sticky-cta__btn svg {
    width: 20px;
    height: 20px;
}

.sticky-cta__btn:hover,
.sticky-cta__btn:focus-visible {
    background: #f0f5ff;
    animation-play-state: paused;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(8, 42, 91, 0.26);
}

@keyframes ticket-shake {
    0%, 82%, 100% {
        transform: translateX(0);
    }

    84% {
        transform: translateX(-3px) rotate(-1deg);
    }

    86% {
        transform: translateX(4px) rotate(1deg);
    }

    88% {
        transform: translateX(-3px) rotate(-1deg);
    }

    90% {
        transform: translateX(2px) rotate(0.5deg);
    }

    92% {
        transform: translateX(0);
    }
}

/* ── hamburger button (hidden on desktop) ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0E4391;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

nav.scrolled .nav-hamburger span {
    background: #ffffff;
}

nav.mobile-open .nav-hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

nav.mobile-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

nav.mobile-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* tickets link inside mobile dropdown — hidden on desktop */
.nav-ticket-link {
    display: none;
}

@media (max-width: 920px) {
    :root {
        --nav-height-expanded: 100px;
        --nav-height-collapsed: 80px;
        --nav-logo-height-expanded: 70px;
        --nav-logo-height-collapsed: 56px;
    }

    nav {
        height: var(--nav-height-expanded);
    }

    .nav-inner {
        gap: 16px;
        padding: 0 16px;
    }

    .nav-links {
        gap: 10px;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
        display: none;
    }

    .nav-links li {
        padding: 0;
    }

    .nav-links a {
        font-size: 1.2em;
        white-space: nowrap;
    }

    .nav-ticket {
        width: 108px;
        height: 108px;
        margin-right: 0;
        padding: 0 14px 18px;
        font-size: 1.15em;
        transform: translate(18px, -24px);
    }

    .nav-ticket:hover,
    .nav-ticket:focus-visible {
        transform: translate(18px, -20px);
    }

    body {
        padding-top: var(--nav-height-expanded);
    }

    .big-photo {
        min-height: calc(100vh - var(--nav-height-expanded));
        min-height: calc(100svh - var(--nav-height-expanded));
        min-height: calc(100dvh - var(--nav-height-expanded));
    }
}

@media (max-width: 920px) and (min-width: 641px) {
    .nav-ticket {
        width: 96px;
        height: 96px;
        padding: 0 12px 16px;
        font-size: 1.1em;
        transform: translate(16px, -20px);
    }

    .nav-ticket:hover,
    .nav-ticket:focus-visible {
        transform: translate(16px, -16px);
    }
}

@media (max-width: 640px) {
    :root {
        --nav-height-expanded: 80px;
        --nav-height-collapsed: 80px;
        --nav-logo-height-expanded: 56px;
        --nav-logo-height-collapsed: 56px;
    }

    body {
        transition: none;
    }

    nav {
        transition: background 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-bottom-color 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-hamburger {
        display: flex;
        flex-shrink: 0;
        width: 24px;
        margin-left: 0;
    }

    .nav-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
        padding: 0 16px;
    }

    .nav-logo img {
        height: auto;
        max-height: var(--nav-logo-height-expanded);
        max-width: 100%;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height-collapsed);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        pointer-events: none;
        z-index: 999;
        background: #ffffff;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
    }

    nav.mobile-open .nav-links {
        max-height: 560px;
        opacity: 1;
        pointer-events: auto;
    }

    nav.scrolled .nav-links {
        background: linear-gradient(90deg, #082a5b 0%, #0E4391 70%);
    }

    nav.scrolled .nav-links li {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .nav-links li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(14, 67, 145, 0.08);
    }

    .nav-links li:last-child {
        border-bottom: 0;
    }

    .nav-links a {
        display: block;
        padding: 16px 24px;
        font-size: 1.5em;
        white-space: normal;
    }

    .nav-ticket-link {
        display: block;
    }

    .nav-ticket-link a {
        display: block;
        margin: 10px 16px 16px;
        padding: 14px 24px !important;
        background: #0E4391;
        color: #ffffff !important;
        border-radius: 12px;
        text-align: center;
        font-size: 1.4em;
    }

    nav.scrolled .nav-ticket-link a {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff !important;
    }

    .nav-ticket {
        width: 90px;
        height: 90px;
        padding: 0 12px 16px;
        font-size: 1em;
        transform: translate(12px, -18px);
        position: relative;
        z-index: 1001;
    }
    
    .nav-ticket:hover,
    .nav-ticket:focus-visible {
        transform: translate(12px, -14px);
    }

    .big-photo {
        min-height: calc(100vh - var(--nav-height-expanded));
        min-height: calc(100svh - var(--nav-height-expanded));
        min-height: calc(100dvh - var(--nav-height-expanded));
        padding: 20px 16px 32px;
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.35)
        ),
        url("images/background-mobile.png");
        background-position: center center;
    }

    /* Адаптация высоты hero-блока при сворачивании навигации на мобильных */
    body.nav-scrolled .big-photo {
        min-height: calc(100vh - var(--nav-height-collapsed));
        min-height: calc(100svh - var(--nav-height-collapsed)); 
        min-height: calc(100dvh - var(--nav-height-collapsed));
    }

    .big-photo-content {
        gap: 14px;
    }

    .big-photo-header {
        gap: 16px;
    }

    .big-photo-ticket {
        min-height: 56px;
        padding: 14px 24px;
        font-size: 17px;
        margin-left: 8px;
        gap: 8px;
    }
    
    .big-photo-ticket svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .sticky-cta {
        gap: 10px;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    }

    .sticky-cta__info {
        flex: 1;
        min-width: 0;
        overflow: visible;
        gap: 2px;
    }

    .sticky-cta__title {
        font-size: 13px;
        line-height: 1.2;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sticky-cta__meta {
        display: block;
        font-size: 11px;
        line-height: 1.25;
        white-space: normal;
    }

    .sticky-cta__btn {
        min-height: 56px;
        padding: 14px 20px;
        font-size: 16px;
        gap: 8px;
    }

    .sticky-cta__btn svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
}

/* make slider arrows always visible on touch screens */
@media (hover: none) {
    .location-slider-arrow {
        opacity: 1;
        pointer-events: auto;
    }
}

main {
    max-width: 100vw;
    margin: 0 auto;
    padding: 24px;
    text-align: center;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section[id] {
    scroll-margin-top: 120px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .sticky-cta.is-visible .sticky-cta__btn {
        animation: none;
    }
}

main {
width: 100%;
margin: 0;
padding: 0;
}

.big-photo {
min-height: calc(100vh - var(--nav-height-expanded));
min-height: calc(100svh - var(--nav-height-expanded));
min-height: calc(100dvh - var(--nav-height-expanded));
width: 100%;
margin-left: 0;
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: flex-start;
text-align: left;
padding: 32px 24px 48px;
box-sizing: border-box;
color: #ffffff;
background-image: linear-gradient(
rgba(0, 0, 0, 0.35),
rgba(0, 0, 0, 0.35)
),
url("images/background.jpg");
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
transition: min-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Адаптация высоты hero-блока при сворачивании навигации */
body.nav-scrolled .big-photo {
min-height: calc(100vh - var(--nav-height-collapsed));
min-height: calc(100svh - var(--nav-height-collapsed));
min-height: calc(100dvh - var(--nav-height-collapsed));
}

.big-photo-content {
width: 100%;
display: flex;
flex-direction: column;
gap: 12px;
}

.big-photo-header {
width: 100%;
display: flex;
align-items: flex-end;
gap: 24px;
}

.big-photo-meta {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
}

.big-photo h1 {
margin: 0 0 12px;
font-size: clamp(22px, 4.2vw, 56px);
max-width: none;
white-space: normal;
}

.big-photo p {
margin: 0;
font-size: clamp(16px, 2vw, 24px);
max-width: 800px;
}

.big-photo-ticket {
flex: 0 0 auto;
min-height: 68px;
padding: 16px 30px;
margin-left: auto;
font-size: 20px;
font-weight: 700;
letter-spacing: 0.02em;
box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.big-photo-ticket:hover,
.big-photo-ticket:focus-visible {
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.big-photo h1,
.big-photo p {
margin-left: 8px;
}

.big-photo-ticket {
margin-right: 8px;
}

.big-photo-ticket svg {
width: 20px;
height: 20px;
}

@media (max-width: 920px) {
    .big-photo {
        background-position: center top;
        background-size: cover;
    }

    .big-photo h1 {
        font-size: clamp(20px, 4vw, 48px);
    }

    .big-photo-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .big-photo-ticket {
        min-height: 58px;
        padding: 14px 24px;
        font-size: 17px;
        margin-right: 0;
        margin-left: 8px;
    }
}

@media (max-width: 768px) {
    .big-photo {
        background-image: linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.45)
        ),
        url("images/background-mobile.jpg"), url("images/background.jpg");
        background-position: center center;
    }

    .big-photo h1 {
        font-size: clamp(22px, 4vw, 44px);
    }
}

@media (max-width: 480px) {
    .big-photo {
        padding: 24px 16px 40px;
        background-position: 65% center;
    }

    .big-photo h1 {
        font-size: clamp(20px, 4vw, 36px);
    }
}


.site-footer {
    background: #2b2b2b;
    color: #f2f2f2;
    padding: 40px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.footer-brand h2 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.1;
    color: #ffffff;
}

.footer-brand p {
    margin: 0;
    color: #cfcfcf;
    font-size: 16px;
}

.footer-contacts,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer a {
    color: #f2f2f2;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #c8a96a;
    text-decoration: underline;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.footer-social a:hover {
    text-decoration: none;
}

.footer-social-label {
    text-decoration: none;
}

.footer-social a:hover .footer-social-label,
.footer-social a:focus-visible .footer-social-label {
    text-decoration: underline;
}

@media (max-width: 820px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .site-footer {
        padding: 32px 20px;
    }
}

.festival-description {
    width: 100%;
    margin-left: 0;
    padding: 72px 24px;
    background: linear-gradient(135deg, #0e4391 0%, #0a2e63 55%, #071b39 100%);
    color: #ffffff;
}

.festival-description-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.festival-description-text {
    text-align: left;
}

.section-label-white {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #d6e6ff;
    margin-bottom: 16px;
}

.section-label-blue {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0a419a;
    margin-bottom: 16px;
}

.festival-description-text h2 {
    position: relative;
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    color: #ffffff;
}

.festival-description-text h2::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: -300px;
    top: 160%;

    transform: translateY(-50%);
    background-image: url("images/UNFILTERED_ptichka__WHITE.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    pointer-events: none;
}

.festival-description-text p {
    margin: 0 0 16px;
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.5;
    color: #e7efff;
    max-width: 760px;
}

.festival-description-btn {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    border: 2px solid #c8a96a;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.festival-description-btn:hover,
.festival-description-btn:focus-visible {
    background: #c8a96a;
    color: #0a2e63;
    transform: translateY(-2px);
}

.festival-description-highlight {
    display: grid;
    gap: 14px;
}

.highlight-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    padding: 18px 18px;
    backdrop-filter: blur(6px);
}

.highlight-card h3 {
    margin: 0 0 8px;
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.1;
    color: #ffffff;
}

.highlight-card p {
    margin: 0;
    font-size: 18px;
    color: #d6e6ff;
}

@media (max-width: 920px) {
    .festival-description {
        padding: 56px 20px;
    }

    .festival-description-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .festival-description-text {
        text-align: center;
    }

    .festival-description-text h2 {
        display: inline-block;
    }

    .festival-description-text h2::before {
        width: 180px;
        height: 180px;
        left: -198px;
    }

    .festival-description-text p {
        max-width: 100%;
    }

    .festival-description-highlight {
        width: min(640px, 100%);
        margin: 0 auto;
    }

    .highlight-card {
        text-align: center;
    }
}

.festival-experience {
    width: 100%;
    padding: 84px 24px;
    background:
        linear-gradient(rgba(252, 250, 245, 0.7), rgba(243, 239, 231, 0.7)),
        url("images/wallpaper.jpg"),
        radial-gradient(circle at top left, rgba(200, 169, 106, 0.22), transparent 28%),
        linear-gradient(180deg, #fcfaf5 0%, #f3efe7 100%);
    background-position: center, center, top left, center;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, auto, auto;
    color: #1f1f1f;
}

.festival-experience-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.festival-experience-header {
    width: min(780px, 100%);
    margin: 0 auto 48px;
    text-align: center;
}

.festival-experience-header .section-label {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0E4391;
}

.festival-experience-header h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1;
    color: #0E4391;
}

.festival-experience-header p {
    margin: 0 auto;
    max-width: 720px;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.55;
    color: #505050;
}

.festival-experience-body {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.festival-col-label {
    display: inline-block;
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0E4391;
}

.festival-schedule {
    padding-bottom: calc(var(--festival-photo-height, 300px) + 20px);
    background-image: url("images/UNFILTERED_ptichka__BLUE.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
}

.festival-schedule::after {
    content: none;
}

.festival-highlights {
    position: sticky;
    top: 116px;
    padding: 36px;
    border: 1px solid rgba(14, 67, 145, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 24px 60px rgba(14, 67, 145, 0.08);
    backdrop-filter: blur(8px);
}

.experience-highlight-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.experience-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(14, 67, 145, 0.1);
    font-size: clamp(17px, 1.45vw, 20px);
    line-height: 1.4;
    color: #333;
    text-align: left;
}

.experience-highlight-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.experience-highlight-list li::before {
    content: '';
    flex: 0 0 auto;
    margin-top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #0E4391;
}

.day-flow-list {
    border-top: 1px solid rgba(14, 67, 145, 0.28);
}

.day-flow-row {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(14, 67, 145, 0.28);
}

.day-flow-time,
.day-flow-event {
    margin: 0;
}

.day-flow-time {
    font-size: clamp(22px, 2.1vw, 30px);
    line-height: 1.15;
    color: #0E4391;
    font-weight: 600;
    align-self: center;
}

.day-flow-event {
    font-size: clamp(18px, 1.5vw, 21px);
    line-height: 1.5;
    color: #444;
    text-align: left;
    justify-self: start;
}

.program-footer {
    margin-top: 28px;
}

.program-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: #0E4391;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 16px 28px rgba(14, 67, 145, 0.16);
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.program-btn:hover,
.program-btn:focus-visible {
    background: #082a5b;
    transform: translateY(-2px);
    box-shadow: 0 20px 32px rgba(14, 67, 145, 0.2);
}

@media (max-width: 920px) {
    .festival-experience {
        padding: 64px 20px;
    }

    .festival-experience-header {
        margin-bottom: 32px;
    }

    .festival-experience-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .festival-highlights {
        position: static;
        padding: 22px 18px;
    }

    .day-flow-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px 0;
        text-align: center;
    }

    .day-flow-time {
        font-size: clamp(20px, 5.5vw, 24px);
    }

    .day-flow-event {
        text-align: center;
        justify-self: center;
    }

    .festival-schedule {
        padding-bottom: 0;
        background-image: none;
    }

    .festival-schedule::after {
        content: none;
    }
}

.location-description {
    width: 100%;
    margin-left: 0;
    padding: 72px 24px;
    background: #f8f8f8;
    color: #333333;
}

.location-description-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: stretch;
}

.location-description-media {
    display: flex;
    flex-direction: column;
}

.location-description-images {
    position: relative;
    min-height: 540px;
    border-radius: 12px;
    overflow: hidden;
    background: #e5e5e5;
}

.location-description-images img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.location-description-images img.is-active {
    opacity: 1;
}

.location-slider-arrow {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: #0E4391;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.location-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
}

.location-slider-arrow:hover,
.location-slider-arrow:focus-visible {
    background: #082a5b;
    transform: translateY(-1px);
}

.location-slider-arrow:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
}

.location-slider-arrow:focus-visible {
    outline: 2px solid #0E4391;
    outline-offset: 2px;
}

.location-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.location-slider-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(14, 67, 145, 0.28);
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.location-slider-dot.is-active {
    background: #0E4391;
    transform: scale(1.15);
}

.location-slider-dot:focus-visible {
    outline: 2px solid #0E4391;
    outline-offset: 2px;
}

.location-description-text {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-description-text h2 {
    position: relative;
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    color: #0E4391;
}

.location-description-text p {
    margin: 0 0 16px;
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.6;
    color: #555555;
    max-width: 760px;
}

.location-description-text p:last-of-type {
    margin-bottom: 0;
}

/* ── Organizers ── */
.organizers-section {
    width: 100%;
    padding: 72px 24px;
    background: #ffffff;
    color: #333333;
}

.organizers-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.6fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.organizers-photo {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.organizers-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.organizers-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.organizers-content h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    color: #0E4391;
    text-transform: uppercase;
}

.organizers-content h3 {
    margin: 0 0 4px;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1.2;
    color: #111111;
}

.organizer-role {
    margin: 0 0 20px;
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #c8a96a;
}

.organizers-content p {
    margin: 0 0 16px;
    font-size: clamp(17px, 1.7vw, 22px);
    line-height: 1.6;
    color: #555555;
}

.organizers-content p:last-of-type {
    margin-bottom: 24px;
}

.organizer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.organizer-links a {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(14, 67, 145, 0.3);
    background: transparent;
    color: #0E4391;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-decoration: none;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.organizer-links a:hover,
.organizer-links a:focus-visible {
    background: #0E4391;
    border-color: #0E4391;
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .organizers-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .organizers-photo {
        aspect-ratio: 4 / 3;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .organizers-section {
        padding: 56px 20px;
    }
}

.faq-section {
    width: 100%;
    padding: 76px 24px;
    background:
linear-gradient(rgba(252, 250, 245, 0.7), rgba(243, 239, 231, 0.7)),
        url("images/wallpaper.jpg"),
        radial-gradient(circle at top left, rgba(14, 67, 145, 0.14), transparent 30%),
        linear-gradient(180deg, #f7f9fd 0%, #edf2fb 100%);
    background-position: center, center, top left, center;
    background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
    background-size: cover, cover, auto, auto;
    color: #111111;
}

.faq-inner {
    width: min(980px, 100%);
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 28px;
}

.faq-header h2 {
    position: relative;
    margin: 0 0 12px;
    font-size: clamp(34px, 4.3vw, 56px);
    line-height: 1.05;
    color: #0E4391;
    text-transform: uppercase;
}


.faq-header p {
    margin: 0 auto;
    max-width: 700px;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.55;
    color: #505050;
}

.faq-list {
    display: grid;
    gap: 0;
    border-top: 1px solid rgba(14, 67, 145, 0.22);
}

.faq-item {
    border: 0;
    border-bottom: 1px solid rgba(14, 67, 145, 0.22);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.faq-item summary {
    list-style: none;
    position: relative;
    cursor: pointer;
    padding: 22px 60px 22px 22px;
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.25;
    font-weight: bold;
    color: #0E4391;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '';
    position: absolute;
    right: 22px;
    top: 50%;
    width: 11px;
    height: 11px;
    border-right: 2px solid #0E4391;
    border-bottom: 2px solid #0E4391;
    transform: translateY(-60%) rotate(45deg);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-35%) rotate(-135deg);
}

.faq-item summary:hover::after,
.faq-item summary:focus-visible::after {
    transform: translateY(-60%) rotate(45deg) scale(1.05);
}

.faq-item[open] summary:hover::after,
.faq-item[open] summary:focus-visible::after {
    transform: translateY(-35%) rotate(-135deg) scale(1.05);
}

.faq-answer {
    padding: 0 22px 20px;
}

.faq-answer p {
    margin: 0;
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.65;
    color: #474747;
}

.faq-cta {
    margin-top: 28px;
    text-align: center;
}

.contact-form-section {
    width: 100%;
    margin-left: 0;
    padding: 76px 24px;
    margin-bottom: 50px;
    background-image: url("images/UNFILTERED_logo__BLUE_cropped.svg");
    background-position: center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.contact-form-inner {
    width: min(760px, 100%);
    margin: 0 auto;
    padding: 38px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(14, 67, 145, 0.12);
    box-shadow: 0 22px 42px rgba(14, 67, 145, 0.1);
    backdrop-filter: blur(3px);
    text-align: left;
}

.contact-form-inner h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.2vw, 52px);
    line-height: 1;
    color: #0E4391;
}

.contact-form-intro {
    margin: 0 0 24px;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.55;
    color: #4f4f4f;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form label {
    font-size: 16px;
    font-weight: 600;
    color: #0E4391;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #c9d3e7;
    border-radius: 12px;
    font-size: 17px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1f1f1f;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0E4391;
    box-shadow: 0 0 0 3px rgba(14, 67, 145, 0.16);
}

.contact-form button {
    margin-top: 8px;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 0;
    border-radius: 999px;
    background: #0E4391;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
    background: #082a5b;
    transform: translateY(-2px);
}

@media (max-width: 920px) {
    .location-description {
        padding: 56px 20px;
    }

    .location-description-inner {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .location-description-images {
        min-height: 300px;
    }

    .location-slider-controls {
        gap: 12px;
    }

    .location-slider-arrow {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .location-description-text {
        text-align: center;
    }

    .location-description-text h2 {
        display: inline-block;
    }

    .location-description-text p {
        max-width: 100%;
    }

    .contact-form-section {
        padding: 56px 20px;
    }

    .contact-form-inner {
        padding: 24px 18px;
    }

    .contact-form button {
        width: 100%;
    }

    .faq-section {
        padding: 56px 20px;
    }

    .faq-header {
        margin-bottom: 20px;
    }

    .faq-header h2::before {
        width: 120px;
        height: 120px;
        left: -128px;
    }

    .faq-item summary {
        padding: 18px 52px 18px 16px;
        font-size: clamp(19px, 5vw, 24px);
    }

    .faq-item summary::after {
        right: 16px;
        width: 9px;
        height: 9px;
    }

    .faq-answer {
        padding: 0 16px 16px;
    }

    .faq-cta .program-btn {
        width: 100%;
    }
}

.winemakers-preview {
    width: 100%;
    padding: 84px 24px;
    background:
        linear-gradient(rgba(252, 250, 245, 0.7), rgba(243, 239, 231, 0.7)),
        url("images/wallpaper.jpg");
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    color: #111;
}

.winemakers-preview-header {
    width: min(820px, 100%);
    margin: 0 auto 42px;
    text-align: center;
}

.winemakers-preview-header h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4.8vw, 58px);
    line-height: 1;
    text-transform: uppercase;
    color: #0E4391;
}

.winemakers-preview-header p {
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
    color: #505050;
}

.winemakers-slider {
    --winemakers-gap: 24px;
    --winemakers-cards-per-page: 5;
    --winemaker-hover-lift: 8px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--winemaker-hover-lift) 12px 0;
    margin-top: calc(var(--winemaker-hover-lift) * -1);
    box-sizing: border-box;
}

.winemakers-list {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--winemakers-gap) * (var(--winemakers-cards-per-page) - 1))) / var(--winemakers-cards-per-page));
    gap: var(--winemakers-gap);
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.45s ease;
    will-change: transform;
}

.winemaker-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(14, 67, 145, 0.14);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    text-align: left;
    box-sizing: border-box;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.winemaker-item.has-link {
    cursor: pointer;
}

.winemaker-item.has-link:focus-visible {
    outline: 3px solid rgba(14, 67, 145, 0.45);
    outline-offset: 3px;
}

.winemaker-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.14);
    border-color: rgba(14, 67, 145, 0.28);
}

.winemaker-logo {
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-bottom: 18px;
    border-radius: 16px;
    overflow: hidden;
    background: transparent;
}

.winemaker-logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.winemaker-text {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.winemaker-text h3 {
    margin: 0 0 12px;
    font-size: clamp(20px, 1.7vw, 28px);
    text-transform: uppercase;
    line-height: 1.1;
    color: #0E4391;
}

.winemaker-text p {
    margin: 0;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.6;
    color: #4d4d4d;
    display: -webkit-box;
    line-clamp: 8;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 8;
    overflow: hidden;
}

.winemakers-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: min(100%, 520px);
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
}

.winemakers-slider-progress {
    flex: 1 1 220px;
    min-width: 0;
    max-width: 320px;
    height: 6px;
    border-radius: 999px;
    background: rgba(14, 67, 145, 0.16);
    overflow: hidden;
}

.winemakers-slider-progress-fill {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0E4391 0%, #3f79d4 100%);
    transform: scaleX(1);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.winemakers-slider-arrow {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: #0E4391;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.winemakers-slider-arrow:hover,
.winemakers-slider-arrow:focus-visible {
    background: #082a5b;
    transform: translateY(-1px);
}

.winemakers-slider-arrow:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
}

.winemakers-slider-arrow:focus-visible {
    outline: 2px solid #0E4391;
    outline-offset: 2px;
}

@media (max-width: 1200px) {
    .winemakers-slider {
        --winemakers-cards-per-page: 3;
    }
}

@media (max-width: 920px) {
    .nav-logo {
        margin-right: 0;
        min-width: 0;
    }

    .winemakers-preview {
        padding: 64px 20px;
    }

    .winemakers-slider {
        --winemakers-gap: 18px;
        --winemakers-cards-per-page: 2;
        padding: var(--winemaker-hover-lift) 0 0;
    }

    .winemaker-item {
        padding: 16px;
        border-radius: 18px;
    }

    .winemaker-text p {
        line-clamp: 7;
        -webkit-line-clamp: 7;
    }
}

@media (max-width: 640px) {
    .winemakers-slider {
        --winemakers-cards-per-page: 1;
        padding: var(--winemaker-hover-lift) 0 0;
    }

    .winemakers-preview-header h2 {
        font-size: 2.2rem;
    }

    .winemakers-slider-controls {
        gap: 12px;
    }

    .winemakers-slider-progress {
        flex-basis: 100%;
        max-width: none;
    }

    .winemakers-slider-arrow {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

    .winemaker-logo {
        aspect-ratio: 1 / 1;
    }

    .winemaker-text h3 {
        font-size: 1.35rem;
    }

    .winemaker-text p {
        line-clamp: 9;
        -webkit-line-clamp: 9;
    }
}

.partners-marquee {
    width: 100%;
    padding: 72px 0;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.partners-marquee-header {
    text-align: center;
    margin-bottom: 28px;
    padding: 0 24px;
}

.partners-marquee-header h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    color: #0E4391;
    text-transform: uppercase;
}

.partners-marquee-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.partners-marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    will-change: transform;
    animation: partners-scroll 24s linear infinite;
}

.partner-logo-horizontal {
    flex: 0 0 auto;
    width: 220px;
    height: auto;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 24px;
    color: #0E4391;
    text-transform: uppercase;
}

.partner-logo-horizontal img {
    display: block;
    width: 180px;
    height: auto;
    object-fit: contain;
}

.partner-logo-vertical {
    flex: 0 0 auto;
    width: auto;
    height: 160px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-size: 24px;
    color: #0E4391;
    text-transform: uppercase;
}

.partner-logo-vertical img {
    display: block;
    width: auto;
    height: 124px;
    object-fit: contain;
}

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--partners-shift, 50%)));
    }
}



@media (max-width: 768px) {
    .partners-marquee {
        padding: 56px 0;
    }

    .partner-logo-horizontal {
        width: 160px;
        height: auto;
        padding: 12px;
        font-size: 18px;
    }

    .partner-logo-horizontal img {
        width: 130px;
        height: auto;
    }

    .partner-logo-vertical {
        width: auto;
        height: 120px;
        padding: 12px;
        font-size: 18px;
    }

    .partner-logo-vertical img {
        width: auto;
        height: 96px;
    }

    .partners-marquee-track {
        gap: 16px;
    }
}

.todo {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.36s ease, transform 0.36s ease;
    transition-delay: calc(var(--stagger-index, 0) * 0.08s);
}

.todo.show {
    opacity: 1;
    transform: translateY(0);
}

.festival-description-highlight .todo:nth-child(2) {
    transition-delay: calc(var(--stagger-index, 0) * 0.1s);
}

.festival-description-highlight .todo:nth-child(3) {
    transition-delay: calc(var(--stagger-index, 0) * 0.1s);
}
