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

:root {
    --black: #090909;
    --ink: #171717;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f1f2f3;
    --gray-200: #e2e4e7;
    --gray-300: #d3d6da;
    --page-gradient: linear-gradient(120deg, #d5d8dc 0%, #eceef0 24%, #ffffff 50%, #f3f4f5 72%, #d9dce0 100%);
    --navbar-gradient: linear-gradient(110deg, #9ea4aa 0%, #c4c8cc 22%, #eef0f2 48%, #ffffff 62%, #d3d6da 82%, #a9afb5 100%);
    --line: rgba(23, 23, 23, .14);
    --red: #c5161d;
    --gold: #d5a741;
    --top-strip: 0px;
    --header-height: 78px;
    --max-width: 1240px;
    --font-title: "Montserrat", sans-serif;
    --font-text: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--ink);
    background: var(--page-gradient);
    background-attachment: fixed;
    font-family: var(--font-text);
    overflow-x: hidden;
}

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

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

main {
    background: var(--page-gradient);
}

main > section + section {
    margin-top: 48px;
}

.site-header {
    position: fixed;
    inset: var(--top-strip) 0 auto;
    z-index: 70;
    height: var(--header-height);
    background: var(--navbar-gradient);
    border-bottom: 1px solid rgba(48, 55, 62, .24);
    box-shadow: 0 8px 24px rgba(45, 51, 57, .12);
    transition: box-shadow .22s ease, transform .22s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.site-header.is-hidden {
    transform: translateY(calc(-1 * (var(--header-height) + var(--top-strip))));
}

.nav-shell {
    width: min(calc(100% - 32px), var(--max-width));
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    width: 196px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.08);
    transform-origin: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: linear-gradient(135deg, var(--white), var(--gray-100));
    color: var(--black);
    font-size: 1.35rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    padding: 13px 15px;
    color: var(--black);
    font-size: .86rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease;
}

.nav-menu a:hover {
    background: linear-gradient(120deg, #dfe2e5, #ffffff 55%, #e8eaec);
    color: var(--red);
}

.nav-menu .nav-cta {
    margin-left: 8px;
    background: var(--red);
    color: var(--white);
}

.hero-carousel {
    position: relative;
    height: calc(100vh - var(--top-strip) - var(--header-height));
    min-height: 560px;
    margin-top: calc(var(--top-strip) + var(--header-height));
    overflow: hidden;
    isolation: isolate;
    background: var(--page-gradient);
}

.carousel-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(0deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, .02) 46%, rgba(0, 0, 0, .16));
}

.hero-stage {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: grid;
    place-items: center;
    padding: clamp(42px, 6vh, 76px) clamp(72px, 9vw, 150px) clamp(126px, 14vh, 176px);
}

.hero-slide {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translate(78px, -18px) scale(.96);
    transition: opacity .65s ease, visibility .65s ease, transform .65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-18px) scale(1);
}

.hero-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 36px 44px rgba(0, 0, 0, .38));
}

.carousel-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 52px;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(0, 0, 0, .46);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, border-color .2s ease;
}

.carousel-arrow:hover {
    border-color: var(--red);
    background: var(--red);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.carousel-dots button {
    width: 38px;
    height: 5px;
    border: 0;
    background: rgba(255, 255, 255, .42);
    cursor: pointer;
}

.carousel-dots button.is-active {
    background: var(--red);
}

.video-carousel {
    position: relative;
    height: min(78vh, 820px);
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    background: var(--page-gradient);
}

.video-stage {
    position: absolute;
    inset: 0;
    display: grid;
}

.video-slide {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity .65s ease, visibility .65s ease, transform 1s ease;
}

.video-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.video-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .34) 42%, rgba(0, 0, 0, .08) 72%),
        linear-gradient(0deg, rgba(0, 0, 0, .38), transparent 48%);
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--black);
}

.video-copy {
    position: absolute;
    z-index: 2;
    left: max(38px, calc((100vw - var(--max-width)) / 2));
    top: 50%;
    max-width: min(620px, 58vw);
    color: var(--white);
    transform: translateY(-50%);
}

.video-copy span {
    display: block;
    margin-bottom: 14px;
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.video-copy h2 {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5.5vw, 5.8rem);
    line-height: .98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.video-toggle {
    position: absolute;
    z-index: 6;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .48);
    color: var(--white);
    font-size: 1.7rem;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: background .2s ease, transform .2s ease;
}

.video-toggle:hover {
    background: var(--red);
    transform: translate(-50%, -50%) scale(1.06);
}

.video-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 34px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.video-dots button {
    width: 42px;
    height: 5px;
    border: 0;
    background: rgba(255, 255, 255, .38);
    cursor: pointer;
}

.video-dots button.is-active {
    background: var(--red);
}

.medal-collection {
    padding: 76px max(28px, calc((100vw - var(--max-width)) / 2)) 86px;
    background: linear-gradient(125deg, #aeb3b9 0%, #cbd0d5 24%, #eef0f2 58%, #d8dce0 100%);
}

.collection-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.collection-heading span {
    display: block;
    margin-bottom: 10px;
    color: #4d535a;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.collection-heading h2 {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 4vw, 4.3rem);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

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

.medal-item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

.medal-image {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #979da4 0%, #c9cdd1 42%, #f3f4f5 100%);
}

.medal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(18px, 2.4vw, 34px);
    filter: drop-shadow(0 20px 24px rgba(35, 39, 43, .26));
    transition: transform .35s ease;
}

.medal-item:hover .medal-image img {
    transform: scale(1.035);
}

.medal-item h3 {
    margin-top: 24px;
    font-family: var(--font-title);
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.medal-item p {
    max-width: 390px;
    margin-top: 12px;
    color: #3f444a;
    font-size: .98rem;
    line-height: 1.55;
}

.medal-item a {
    min-height: 46px;
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: var(--black);
    color: var(--white);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.medal-item a:hover {
    background: var(--red);
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .hero-carousel::before {
        background: linear-gradient(0deg, rgba(0, 0, 0, .18), transparent 50%, rgba(0, 0, 0, .18));
    }

    .hero-stage {
        place-items: center;
        padding: 36px 38px 132px;
    }

    .hero-slide {
        width: 100%;
        height: 100%;
    }

    .video-carousel {
        height: 72vh;
        min-height: 580px;
    }

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

@media (max-width: 820px) {
    :root {
        --top-strip: 0px;
        --header-height: 70px;
    }

    .nav-toggle {
        display: grid;
        place-items: center;
    }

    .nav-menu {
        position: fixed;
        top: calc(var(--top-strip) + var(--header-height));
        left: 16px;
        right: 16px;
        display: grid;
        gap: 2px;
        padding: 10px;
        background: var(--navbar-gradient);
        box-shadow: 0 18px 34px rgba(0, 0, 0, .2);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .2s ease, transform .2s ease;
    }

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

    .nav-menu a {
        width: 100%;
        padding: 14px;
    }

    .nav-menu .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .carousel-arrow {
        top: auto;
        bottom: 24px;
        width: 46px;
        height: 54px;
        transform: none;
    }

    .carousel-prev {
        left: 18px;
    }

    .carousel-next {
        right: 18px;
    }

    .carousel-dots {
        bottom: 42px;
    }

    .video-carousel {
        height: 680px;
        min-height: 0;
    }

    .video-slide::after {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .18) 64%),
            linear-gradient(90deg, rgba(0, 0, 0, .35), transparent);
    }

    .video-copy {
        left: 24px;
        right: 24px;
        top: auto;
        bottom: 116px;
        max-width: none;
        transform: none;
    }

    .video-copy h2 {
        font-size: clamp(2.3rem, 11vw, 4.2rem);
    }

    .video-toggle {
        top: 42%;
    }

    .video-dots {
        bottom: 41px;
    }

    main > section + section {
        margin-top: 28px;
    }

    .medal-collection {
        padding: 58px 22px 66px;
    }
}

@media (max-width: 640px) {
    .brand {
        width: 166px;
        height: 64px;
    }

    .brand img {
        transform: scale(1.06);
    }

    .hero-carousel {
        min-height: 620px;
    }

    .hero-stage {
        padding: 28px 28px 120px;
    }

    .hero-slide {
        width: 100%;
        height: 100%;
    }

    .carousel-dots {
        gap: 7px;
    }

    .carousel-dots button {
        width: 24px;
    }

    .video-carousel {
        height: 620px;
    }

    .video-dots button {
        width: 30px;
    }

    .medal-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .medal-image {
        aspect-ratio: 1 / 1.08;
    }

    .medal-item h3 {
        margin-top: 20px;
    }
}
