@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth
}

body {
    overflow-x: hidden
}

.logo {
    display: inline-flex;
    align-items: center;
    line-height: 1
}

.logo img {
    display: block;
    width: auto;
    height: 48px;
    max-width: 210px;
    object-fit: contain
}

.eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .24em;
    text-transform: uppercase
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: .95
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 12px 18px;
    transition: .25s;
    text-transform: uppercase
}

.btn-red {
    background: #FFD840;
    color: #fff;
    border: 1px solid #FFD840
}

.btn-red:hover {
    background: #E8B900;
    transform: translateY(-2px)
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff
}

.btn-outline:hover {
    background: #fff;
    color: #0b0e12
}

.btn-dark {
    background: #101318;
    color: #fff
}

.btn-dark:hover {
    background: #FFD840
}

.nav-trigger {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em
}

.dropdown-panel {
    position: absolute;
    top: 170%;
    left: -20px;
    min-width: 190px;
    background: #fff;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .2s;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18)
}

.dropdown-panel a {
    display: block;
    padding: 10px 12px;
    color: #111;
    font-size: 11px
}

.nav-dropdown:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.mobile-link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-weight: 500
}

.mobile-dropdown-panel {
    display: none;
    margin: 0 0 8px 8px;
    padding-left: 16px;
    border-left: 1px solid rgba(255, 216, 64, .35);
    background: rgba(255, 255, 255, .035)
}

.mobile-dropdown-head {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.mobile-dropdown-head > .mobile-link {
    flex: 1;
    border-bottom: 0
}

.mobile-dropdown-panel .mobile-link {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, .68)
}

.mobile-dropdown-panel .mobile-link:hover,
.mobile-dropdown-panel .mobile-link:focus-visible {
    color: var(--brand)
}

.mobile-dropdown.is-open .mobile-dropdown-panel {
    display: block !important
}

.mobile-dropdown-toggle {
    width: 42px;
    height: 42px;
    align-self: stretch;
    position: relative;
    display: grid;
    place-items: center;
    background: none;
    color: inherit;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, .1);
    cursor: pointer
}

.mobile-dropdown-toggle .dropdown-arrow {
    display: inline-block;
    position: relative;
    z-index: 1;
    margin: 0;
    transform: rotate(45deg);
    transition: transform .2s
}

.mobile-dropdown-toggle::before {
    content: '';
    position: absolute;
    inset: 50% auto auto 50%;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    transform: translate(-50%, -50%)
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle:focus-visible {
    background: rgba(255, 216, 64, .08)
}

.mobile-dropdown.is-open .mobile-dropdown-toggle .dropdown-arrow {
    transform: rotate(225deg)
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .35), rgba(0, 0, 0, .7)), linear-gradient(0deg, rgba(0, 0, 0, .5), transparent 45%)
}

.scroll-indicator {
    position: absolute;
    z-index: 20;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 10px;
    letter-spacing: .18em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px
}

.scroll-indicator span {
    font-size: 12px;
    animation: bob 1.5s infinite
}

@keyframes bob {
    50% {
        transform: translateY(5px)
    }
}

.play-btn {
    position: absolute;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 999px;
    background: #FFD840;
    color: #fff;
    font-size: 22px;
    display: grid;
    place-items: center;
    padding-left: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35)
}

.slider-viewport {
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab
}

.slider-viewport.is-dragging {
    cursor: grabbing
}

.slider-track {
    display: flex;
    gap: 18px;
    transition: transform .5s cubic-bezier(.22, .61, .36, 1);
    will-change: transform
}

.slider-viewport.is-dragging .slider-track {
    transition: none
}

.subscribe-form input {
    min-width: 0
}

@media(max-width:639px) {
    .subscribe-form {
        display: flex;
        flex-direction: column;
        gap: 16px !important
    }

    .subscribe-form input,
    .subscribe-form button {
        box-sizing: border-box;
        display: block;
        width: 100%;
        height: 52px;
        margin: 0;
        border-radius: 2px
    }

    .subscribe-form input {
        padding: 0 16px;
        border: 0;
        line-height: 52px
    }

    .subscribe-form button {
        flex: none;
        padding: 0 18px
    }
}

.programme-card {
    flex: 0 0 calc((100% - 54px)/4);
    height: 360px;
    position: relative;
    overflow: hidden;
    background: #222
}

.programme-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.programme-card:hover img {
    transform: scale(1.08)
}

.card-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .05) 65%)
}

.card-copy {
    position: absolute;
    inset: auto 0 0;
    padding: 22px
}

.card-copy span {
    font-size: 10px;
    letter-spacing: .16em;
    color: #FFD840
}

.card-copy h3 {
    font-size: 23px;
    font-family: 'Barlow Condensed';
    font-weight: 700;
    margin-top: 8px
}

.card-copy p {
    font-size: 12px;
    color: rgba(255, 255, 255, .65);
    margin-top: 5px;
    line-height: 1.5
}

.slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .25);
    display: grid;
    place-items: center;
    font-size: 20px;
    transition: .2s
}

.slider-btn:hover {
    background: #FFD840;
    border-color: #FFD840
}

.slider-btn.dark {
    border-color: #d7d7d7;
    color: #111
}

.slider-btn.dark:hover {
    color: #fff;
    border-color: #FFD840
}

.featured-news img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.featured-news:hover img {
    transform: scale(1.04)
}

.news-item {
    display: grid;
    grid-template-columns: 1fr 140px;
    gap: 20px;
    padding: 20px 0;
    align-items: center
}

.news-item span {
    font-size: 9px;
    letter-spacing: .2em;
    color: #FFD840;
    font-weight: 800
}

.news-item h3 {
    font-family: 'Barlow Condensed';
    font-size: 24px;
    font-weight: 600;
    line-height: 1.05;
    margin-top: 8px
}

.news-item img {
    width: 140px;
    height: 82px;
    object-fit: cover
}

.partner-track {
    gap: 18px
}

.partner-card {
    flex: 0 0 calc((100% - 90px)/6);
    min-height: 155px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    transition: .25s
}

.partner-card span {
    display: block;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #6b7280;
    max-width: 150px;
    margin-top: 9px
}

.partner-card:hover {
    border-color: #FFD840;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, .08)
}

.partner-card.green {
    color: #5a8237
}

.partner-card.serif {
    font-family: Georgia, serif;
    font-weight: 500
}

.social {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #171a20;
    display: grid;
    place-items: center;
    font-weight: 700
}

.social:hover,
.social:focus-visible {
    background: var(--brand);
    color: #0b0e12;
    transform: translateY(-2px)
}

.footer-title {
    font-size: 11px;
    letter-spacing: .15em;
    font-weight: 800
}

.footer-links {
    margin-top: 18px;
    display: grid;
    gap: 10px;
    font-size: 13px;
    line-height: 1.7
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 20px
}

.modal.hidden {
    display: none
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .82);
    backdrop-filter: blur(3px)
}

.modal-content {
    position: relative;
    z-index: 2;
    width: min(960px, 100%);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .5)
}

.modal-close {
    position: absolute;
    right: -10px;
    top: -46px;
    color: #fff;
    font-size: 38px;
    line-height: 1
}

.section-light {
    background: #f5f3ef
}

@media(max-width:1279px) {
    .programme-card {
        flex-basis: calc((100% - 18px)/2)
    }

    .partner-card {
        flex-basis: calc((100% - 36px)/3)
    }
}

@media(max-width:767px) {
    .programme-card {
        flex-basis: 86%;
        height: 400px
    }

    .partner-card {
        flex-basis: 62%;
        min-height: 130px
    }

    .news-item {
        grid-template-columns: 1fr 100px;
        gap: 12px
    }

    .news-item img {
        width: 100px;
        height: 70px
    }

    .news-item h3 {
        font-size: 20px
    }

    .hero {
        min-height: 700px
    }

    .hero-video {
        object-position: center
    }

    .scroll-indicator {
        bottom: 18px
    }
}

:root {
    --brand: #FFD840;
    --brand-dark: #E8B900
}

.text-brand {
    color: var(--brand) !important
}

.btn-red {
    background: var(--brand);
    border-color: var(--brand);
    color: #0b0e12
}

.btn-red:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #0b0e12
}

.play-btn {
    background: var(--brand);
    color: #0b0e12
}

.slider-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #0b0e12
}

.partner-card:hover {
    border-color: var(--brand)
}

.btn-dark:hover {
    background: var(--brand);
    color: #0b0e12
}

.card-copy span,
.news-item span {
    color: var(--brand)
}

.nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.dropdown-arrow {
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transform-origin: center;
    opacity: .75
}

.scroll-indicator {
    gap: 8px;
    cursor: pointer
}

.mouse-icon {
    position: relative;
    display: block;
    width: 22px;
    height: 34px;
    border: 2px solid currentColor;
    border-radius: 12px;
    font-size: initial;
    animation: none
}

.mouse-icon span {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 3px;
    background: currentColor;
    transform: translateX(-50%);
    animation: mouse-wheel 1.8s ease-in-out infinite
}

.scroll-label {
    font-size: 7px;
    letter-spacing: .18em;
    animation: none
}

@keyframes mouse-wheel {

    0%,
    100% {
        opacity: .35;
        transform: translate(-50%, 0)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, 5px)
    }
}