.hero {
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
}

.hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 58% 42%;
    min-height: 730px;
    position: relative;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 60px 60px 100px 0;
    border-right: 1px solid #D4CFC5;
}

.hero__title {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.hero__title-line {
    font-family: var(--f-display);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    line-height: .92;
}
.hero__title-line--blue {
    font-size: clamp(72px, 12.5vw, 180px);
    color: var(--c-blue);
    letter-spacing: -.01em;
}
.hero__title-line--dark {
    font-size: clamp(52px, 9.1vw, 132px);
    color: var(--c-text);
    letter-spacing: -.01em;
}

.hero__desc-row {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
}

.hero__decor-picture {
    --size: 108px;
    width: var(--size);
    height: var(--size);
    flex-shrink: 0;
}

.hero__decor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__desc {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--c-text-3);
    max-width: 520px;
}
.hero__desc strong { font-weight: 700; }

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.hero__hint {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-muted);
}

.hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1 ;
}

.hero__caption {
    position: relative;
    z-index: 2;
    font-size: clamp(15px, 1.6vw, 22px);
    font-weight: 400;
    line-height: 1.5;
    color: var(--c-text-3);
    width: 100%;
}

.hero__caption.desktop {
    padding: 200px 30px;
    padding-bottom: 124px;
    padding-right: 0;
}

.hero__caption.mobile {
    display: none;
    font-size: 17px;
}

.hero__caption.desktop:after {
    content: "";
    position: absolute;
    width: 100vw;
    left: 0;
    bottom: -1px;
    height: 1px;
    background-color: #D4CFC5;
}

.hero__wheel {
    --size: 350px;
    --spin-duration: 50s;
    position: absolute;
    bottom: -160px;
    right: 20px;
    transform: translateY(-50%);
    width: var(--size);
    height: var(--size);
    z-index: 2;
    cursor: default;
}

.hero__wheel-img {
    display: block;
    width: 100%; height: 100%;
    object-fit: contain;
    animation: wheel-spin var(--spin-duration) linear infinite;
    transition: filter .5s ease;
}

.hero__wheel-center-wrap {
    --center-size: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: var(--center-size);
    width: var(--center-size);
}

.hero__wheel-center {
    animation: wheel-spin-reverse var(--spin-duration) linear infinite;
    height: 100%;
    width: auto;
}

.hero__top {
    position: absolute;
    top: 0;
    left: var(--pad);
    right: var(--pad);
    width: calc(100% - var(--pad) * 2);
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    z-index: 3;
}

.hero__tag {
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--c-blue);
}

.hero__date {
    font-family: var(--f-mono);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--c-blue);
    width: fit-content;
    position: relative;
    line-height: calc(100% + 10px);
}

.hero__date span {
    border-bottom: 3px solid var(--c-blue);
}

.hero__date::after {
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: -3px;
    left: 0;
}

@keyframes wheel-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes wheel-spin-reverse {
    from { transform: rotate(45deg); }
    to   { transform: rotate(-405deg); }
}

@media (max-width: 1200px) {
    .hero__wheel { right: -20px; }
}

@media (max-width: 1023px) {
    .hero__inner {
        grid-template-columns: 55% 45%;
        min-height: 600px;
    }
    .hero__inner::after { left: 55%; }
    .hero__content { 
        padding-right: 40px; 
    }
    .hero__wheel   { right: 0; }
}

@media (max-width: 1000px) {
    .hero__title-line--blue {
        font-size: 12vw;
    }

    .hero__title-line--dark {
        font-size: 8.5vw;
    }

    .hero__caption.desktop {
        padding-top: 80px;
        padding-bottom: 50px;
    }

    .hero__inner {
        grid-template-columns: 1fr 300px;
    }

    .hero__wheel {
        --size: 250px;
        bottom: 70px;
        right: 0px;
    }

    .hero__date {
        font-size: 14px;
    }

    .hero__top {
        padding: 25px 0;
    }
}

@media (max-width: 850px) {
    .hero__decor-picture {
        --size: 80px
    }

    .hero__desc-row {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .hero__inner {
        grid-template-columns: 1fr;
        padding: 0 var(--pad-sm);
        min-height: auto;
    }
    .hero__inner::after { display: none; }

    .hero__content {
        padding: 40px 0 32px;
        gap: 20px;
        border: none;
    }

    .hero__brand-icon { display: none; }

    .hero__visual {
        position: relative;
        padding: 0 0 48px;
        display: grid;
        grid-template-columns: 1fr 160px;
        gap: 0 16px;
        align-items: center;
        min-height: 160px;
    }

    .hero__caption {
        font-size: 14px;
        line-height: 1.55;
        max-width: 100%;
        position: static;
        z-index: 2;

    }

    .hero__wheel {
        --size: 260px;
        right: -60px;
        bottom: -180px;
    }

    .hero__top {
        position: initial;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0;
    }

    .hero__caption.desktop {
        display: none;
    }

    .hero__caption.mobile {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero__visual {
        grid-template-columns: 1fr 120px;
        min-height: 120px;
    }

    .hero__wheel {
        --size: 150px;
        right: -40px;
        bottom: -100px;
    }

    .hero__caption { font-size: 13px; }
    .hero__decor-picture {
        display: none;
    }

    .hero__title-line--blue {
        font-size: 25vw;
    }

    .hero__title-line--dark {
        font-size: 18vw;
    }
}

@media (max-width: 390px) {
    .hero__inner { padding: 0 16px; }
    .hero__content { padding: 32px 0 24px; }

    .hero__visual {
        grid-template-columns: 1fr 100px;
        min-height: 100px;
    }
}
