:root {
    --festival-navy: #101d2d;
    --festival-navy-light: #26364a;
    --festival-gold: #d5b568;
    --festival-gold-light: #f1dfaa;
    --festival-cream: #fbf8f0;
    --festival-text: #172538;
}

.festival-home {
    padding: 28px 0 8px;
    background: #fff;
}

.festival-home__link {
    position: relative;
    display: block !important;
    overflow: hidden;
    border-radius: 24px;
    background: var(--festival-navy);
    box-shadow: 0 20px 55px rgba(16, 29, 45, .18);
    color: #fff;
    isolation: isolate;
}

.festival-home__link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 25%, rgba(16, 29, 45, .08) 60%, rgba(16, 29, 45, .72) 100%);
    transition: background .3s ease;
}

.festival-home__link:hover::after {
    background: linear-gradient(90deg, transparent 18%, rgba(16, 29, 45, .06) 58%, rgba(16, 29, 45, .68) 100%);
}

.festival-home__link img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .45s ease;
}

.festival-home__link:hover img {
    transform: none;
}

.festival-home__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 46%;
    padding: 34px 42px;
}

.festival-home__eyebrow,
.festival-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 14px;
    border: 1px solid rgba(213, 181, 104, .45);
    border-radius: 100px;
    background: rgba(213, 181, 104, .12);
    color: var(--festival-gold-light);
    font-size: .86rem;
    font-weight: 700;
}

.festival-home__content strong {
    margin-top: 14px;
    color: #fff;
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1.55;
}

.festival-home__cta {
    margin-top: 14px;
    color: var(--festival-gold-light);
    font-weight: 700;
}

.festival-home__cta i {
    margin-right: 6px;
}

.festival-page {
    overflow: hidden;
    background: var(--festival-cream);
    color: var(--festival-text);
}

.festival-page h1,
.festival-page h2,
.festival-page h3,
.festival-page p {
    margin-top: 0;
}

.festival-hero {
    position: relative;
    padding: 126px 0 74px;
    background: radial-gradient(circle at 13% 18%, rgba(213, 181, 104, .18), transparent 28%), var(--festival-navy);
}

.festival-hero::after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(213, 181, 104, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(213, 181, 104, .035), 0 0 0 110px rgba(213, 181, 104, .025);
}

.festival-hero .container {
    position: relative;
    z-index: 1;
}

.festival-hero__image {
    overflow: hidden;
    border: 1px solid rgba(213, 181, 104, .25);
    border-radius: 26px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .28);
}

.festival-hero__image img {
    display: block;
    width: 100%;
    height: auto;
}

.festival-hero__content {
    max-width: 880px;
    margin: 42px auto 0;
    text-align: center;
}

.festival-hero__content .festival-kicker,
.festival-final .festival-kicker {
    margin-inline: auto;
}

.festival-hero h1 {
    margin: 18px 0 12px;
    color: #fff;
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: 1.35;
}

.festival-hero p {
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 2;
}

.festival-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.festival-btn {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.festival-btn--gold {
    background: linear-gradient(135deg, var(--festival-gold-light), var(--festival-gold));
    box-shadow: 0 12px 30px rgba(213, 181, 104, .22);
    color: var(--festival-navy) !important;
}

.festival-btn--outline {
    border-color: rgba(255, 255, 255, .34);
    background: rgba(255, 255, 255, .04);
    color: #fff !important;
}

.festival-intro {
    padding: 70px 0 30px;
}

.festival-narrow {
    max-width: 960px;
}

.festival-intro p {
    margin-bottom: 0;
    color: #38465a;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    line-height: 2.2;
    text-align: center;
}

.festival-heading {
    margin-bottom: 34px;
    text-align: center;
}

.festival-heading > span {
    color: #98772e;
    font-size: .9rem;
    font-weight: 800;
}

.festival-heading h2 {
    margin: 8px 0 0;
    color: var(--festival-navy);
    font-size: clamp(1.65rem, 3.4vw, 2.7rem);
    line-height: 1.5;
}

.festival-benefits {
    padding: 60px 0 84px;
}

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

.festival-benefit {
    padding: 32px 24px;
    border: 1px solid rgba(16, 29, 45, .08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(16, 29, 45, .055);
}

.festival-benefit__number,
.festival-benefit__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--festival-navy-light), var(--festival-navy));
    color: var(--festival-gold-light);
    font-size: 1.42rem;
    font-weight: 900;
}

.festival-benefit h3 {
    margin: 22px 0 10px;
    color: var(--festival-navy);
    font-size: 1.15rem;
}

.festival-benefit p {
    margin-bottom: 0;
    color: #667085;
    font-size: .92rem;
    line-height: 1.95;
}

.festival-prize {
    padding: 22px 0 84px;
}

.festival-prize__card {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
    align-items: center;
    gap: 40px;
    overflow: hidden;
    padding: 56px 64px;
    border: 1px solid rgba(213, 181, 104, .25);
    border-radius: 28px;
    background: radial-gradient(circle at 12% 100%, rgba(213, 181, 104, .2), transparent 35%), var(--festival-navy);
    box-shadow: 0 28px 70px rgba(16, 29, 45, .17);
}

.festival-prize__copy h2 {
    margin: 16px 0 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.festival-prize__copy p {
    max-width: 750px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.02rem;
    line-height: 2.15;
}

.festival-prize__copy > strong {
    color: var(--festival-gold-light);
    font-size: 1.08rem;
}

.festival-prize__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
    border: 1px solid rgba(213, 181, 104, .42);
    border-radius: 50%;
    background: rgba(213, 181, 104, .08);
    box-shadow: inset 0 0 0 18px rgba(213, 181, 104, .035);
}

.festival-prize__visual::before,
.festival-prize__visual::after {
    content: "";
    position: absolute;
    background: var(--festival-gold);
}

.festival-prize__visual::before {
    top: -10%;
    width: 22px;
    height: 120%;
    opacity: .2;
}

.festival-prize__visual::after {
    right: -10%;
    width: 120%;
    height: 22px;
    opacity: .2;
}

.festival-prize__visual span,
.festival-prize__visual small {
    position: relative;
    z-index: 1;
}

.festival-prize__visual span {
    color: var(--festival-gold-light);
    font-size: clamp(3.7rem, 7vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
}

.festival-prize__visual small {
    margin-top: 10px;
    color: #fff;
    font-weight: 700;
}

.festival-why {
    padding: 30px 0 92px;
}

.festival-checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.festival-checklist li {
    position: relative;
    padding: 18px 56px 18px 20px;
    border: 1px solid rgba(16, 29, 45, .08);
    border-radius: 14px;
    background: #fff;
    color: #344054;
    font-weight: 700;
}

.festival-checklist li::before {
    content: "✓";
    position: absolute;
    top: 50%;
    right: 18px;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(213, 181, 104, .2);
    color: #87681f;
    transform: translateY(-50%);
}

.festival-final {
    padding: 88px 0;
    background: var(--festival-navy);
    text-align: center;
}

.festival-final h2 {
    margin: 20px 0 14px;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    line-height: 1.5;
}

.festival-final p {
    color: rgba(255, 255, 255, .72);
    line-height: 2;
}

.festival-contact {
    padding: 78px 0;
    background: #fff;
    text-align: center;
}

.festival-contact__label {
    color: #98772e;
    font-size: .9rem;
    font-weight: 800;
}

.festival-contact h2 {
    margin: 10px 0 24px;
    color: var(--festival-navy);
    font-size: clamp(1.55rem, 3vw, 2.5rem);
    line-height: 1.6;
}

.festival-contact__phone {
    direction: ltr;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 88px;
    padding: 14px 38px;
    border: 1px solid rgba(213, 181, 104, .5);
    border-radius: 22px;
    background: linear-gradient(135deg, var(--festival-navy-light), var(--festival-navy));
    box-shadow: 0 20px 45px rgba(16, 29, 45, .18);
    color: var(--festival-gold-light) !important;
    font-size: clamp(2.1rem, 6vw, 4.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.festival-contact__phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 55px rgba(16, 29, 45, .24);
}

.festival-contact__phone i {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--festival-gold);
    color: var(--festival-navy);
    font-size: 1.4rem;
}

.festival-contact small {
    display: block;
    margin-top: 16px;
    color: #667085;
}

.festival-branches {
    padding: 86px 0 96px;
    border-top: 1px solid rgba(16, 29, 45, .07);
    background: var(--festival-cream);
}

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

.festival-branch {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 26px;
    border: 1px solid rgba(16, 29, 45, .09);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(16, 29, 45, .055);
}

.festival-branch__header {
    padding-bottom: 18px;
    border-bottom: 1px solid #edf0f3;
}

.festival-branch__header h3 {
    margin: 10px 0 5px;
    color: var(--festival-navy);
    font-size: 1.1rem;
    line-height: 1.7;
}

.festival-branch__header > span:last-child {
    color: #667085;
    font-size: .86rem;
}

.festival-branch__code {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 100px;
    background: rgba(213, 181, 104, .18);
    color: #80621f;
    font-size: .76rem;
    font-weight: 800;
}

.festival-branch address {
    flex: 1;
    margin: 18px 0;
    color: #475467;
    font-size: .9rem;
    font-style: normal;
    line-height: 1.95;
}

.festival-branch__phones {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.festival-branch__phones a {
    direction: ltr;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 7px 12px;
    border-radius: 10px;
    background: #eaf7ef;
    color: #12733b !important;
    font-size: .86rem;
    font-weight: 800;
}

.festival-branch__map {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    padding: 8px 14px;
    border: 1px solid rgba(16, 29, 45, .13);
    border-radius: 10px;
    color: var(--festival-navy) !important;
    font-size: .86rem;
    font-weight: 800;
}

.festival-branches__empty {
    margin: 0;
    padding: 26px;
    border-radius: 16px;
    background: #fff;
    color: #475467;
    line-height: 2;
    text-align: center;
}

@media (max-width: 991.98px) {
    .festival-home__content {
        width: 58%;
        padding-inline: 28px;
    }

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

    .festival-prize__card {
        grid-template-columns: minmax(0, 1fr) 220px;
        padding: 44px 36px;
    }

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

@media (max-width: 767.98px) {
    .festival-home {
        padding-top: 18px;
    }

    .festival-home__link {
        border-radius: 18px;
    }

    .festival-home__link::after,
    .festival-home__link:hover::after {
        display: none;
    }

    .festival-home__link img {
        width: 100%;
        height: auto;
    }

    .festival-home__content {
        position: static;
        justify-content: center;
        width: 100%;
        padding: 24px;
        background: var(--festival-navy);
    }

    .festival-hero {
        padding: 100px 0 58px;
    }

    .festival-hero__image {
        border-radius: 17px;
    }

    .festival-hero__image img {
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
        object-position: center;
    }

    .festival-hero__content {
        margin-top: 30px;
    }

    .festival-intro {
        padding-top: 52px;
    }

    .festival-benefits {
        padding: 40px 0 64px;
    }

    .festival-prize__card {
        grid-template-columns: 1fr;
        padding: 36px 24px;
    }

    .festival-prize__visual {
        width: min(240px, 80%);
        margin-inline: auto;
        grid-row: 1;
    }

    .festival-checklist {
        grid-template-columns: 1fr;
    }

    .festival-final {
        padding: 68px 0;
    }

    .festival-contact {
        padding: 62px 0;
    }

    .festival-contact__phone {
        width: 100%;
        min-height: 78px;
        padding-inline: 18px;
    }

    .festival-branches {
        padding: 68px 0 76px;
    }
}

@media (max-width: 479.98px) {
    .festival-actions {
        flex-direction: column;
    }

    .festival-btn {
        width: 100%;
    }

    .festival-benefits__grid {
        grid-template-columns: 1fr;
    }

    .festival-branches__grid {
        grid-template-columns: 1fr;
    }

    .festival-benefit {
        padding: 26px 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .festival-home__link img,
    .festival-btn {
        transition: none;
    }
}
