@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes cookieSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideUpBanner {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #05051f;
    background: #ffffff;
    line-height: normal;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.gradient-text {
    background: linear-gradient(90deg, #f89000 0%, #f23c00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 65px;
    padding: 22px 50px;
    background: linear-gradient(90deg, #f89000 0%, #f23c00 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 60px;
    white-space: nowrap;
    transition: opacity .25s ease, transform .25s ease, box-shadow .25s ease, letter-spacing .25s ease;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(242, 60, 0, .25);
    border: none;
    max-width: 300px;
}

.btn:hover {
    opacity: .96;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 32px rgba(242, 60, 0, .38);
    letter-spacing: .5px;
}

.btn:active {
    transform: translateY(-1px) scale(.99);
}

.btn--outline {
    background: transparent;
    border: 2px solid #ffffff;
    box-shadow: none;
}

.btn--outline:hover {
    background: #ffffff;
    color: #f23c00;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.site-header {
    padding: 20px 0;
    background: #ffffff;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform .25s ease, opacity .25s ease;
}

.brand:hover {
    transform: translateY(-1px);
    opacity: .92;
}

.brand:hover .brand__logo {
    transform: rotate(-12deg) scale(1.08);
}

.brand__logo {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    transition: transform .35s ease;
}

.brand__name {
    font-weight: 700;
    font-size: 24px;
    color: #05051f;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.nav__link {
    position: relative;
    font-size: 14px;
    color: #05051f;
    white-space: nowrap;
    transition: color .25s ease;
    padding: 4px 0;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f89000 0%, #f23c00 100%);
    transition: width .3s ease;
}

.nav__link:hover {
    color: #f23c00;
}

.nav__link:hover::after {
    width: 100%;
}

.hero {
    padding-top: 36px;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.hero__title {
    font-size: 84px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: normal;
    word-break: break-word;
    animation: fadeInUp .8s ease both;
}

.hero__intro,
.hero__cta {
    animation: fadeInUp .9s ease .15s both;
}

.hero__body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero__intro {
    font-size: 14px;
    width: 360px;
    max-width: 360px;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 449px;
    max-width: 449px;
}

.hero__cta-text {
    font-size: 14px;
}

.hero__image {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 400px;
    margin-top: 40px;
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 8s ease;
}

.hero__image:hover img {
    transform: scale(1.05);
}

.stats {
    background: linear-gradient(90deg, #f89000 0%, #f23c00 100%);
    padding: 40px 0;
    color: #ffffff;
}

.stats__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    flex: 1;
    max-width: 330px;
    transition: transform .3s ease;
}

.stat:hover {
    transform: translateY(-6px);
}

.stat:hover .stat__number {
    text-shadow: 0 6px 20px rgba(0, 0, 0, .2);
}

.stat__number {
    font-size: 70px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.stat__label {
    font-size: 14px;
}

.section {
    padding: 80px 0;
}

.section--split {
    display: flex;
    align-items: center;
    gap: 37px;
}

.section__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1;
}

.section__title {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    word-break: break-word;
}

.section__text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
}

.section__text p {
    font-size: 14px;
}

.section__image {
    width: 535px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform .4s ease, box-shadow .4s ease;
}

.section__image:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(242, 60, 0, .18);
}

.section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.section__image:hover img {
    transform: scale(1.06);
}

.gallery {
    padding: 80px 0;
}

.gallery__title {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.gallery__grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.gallery__item {
    flex: 1;
    height: 400px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    transition: transform .4s ease, box-shadow .4s ease;
    cursor: pointer;
}

.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(248, 144, 0, 0) 50%, rgba(242, 60, 0, .35) 100%);
    opacity: 0;
    transition: opacity .35s ease;
}

.gallery__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    max-width: 1036px;
}

.gallery__text {
    font-size: 14px;
}

.popular {
    background: linear-gradient(90deg, #f89000 0%, #f23c00 100%);
    padding: 50px 154px;
    color: #ffffff;
}

.popular__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.popular__icon {
    width: 160px;
    height: 160px;
    border-radius: 26px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.popular__title {
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.popular__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.popular__text {
    font-size: 14px;
    text-align: center;
}

.popular__grid {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.popular__col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular__small,
.popular__big {
    display: block;
    border-radius: 26px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}

.popular__small {
    width: 160px;
    height: 160px;
}

.popular__big {
    width: 340px;
    height: 340px;
}

.popular__small img,
.popular__big img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

a.popular__small:hover,
a.popular__big:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 20px 36px rgba(0, 0, 0, .28);
}

a.popular__small:hover img,
a.popular__big:hover img {
    transform: scale(1.08);
}

.popular__icon {
    animation: floatUp 5s ease-in-out infinite;
}

.policy {
    padding: 56px 0 80px;
}

.policy__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    max-width: 1098px;
}

.policy__title {
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    word-break: break-word;
}

.policy__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
    color: #05051f;
    width: 100%;
}

.policy__content h2 {
    font-size: 14px;
    font-weight: 400;
    margin-top: 6px;
}

.policy__content p {
    font-size: 14px;
}

@media (max-width: 720px) {
    .policy {
        padding: 30px 0 50px;
    }
    .policy__title {
        font-size: 38px;
    }
}

.contacts__details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 14px;
}

.contacts__details p {
    font-size: 14px;
}

.contacts__details strong {
    display: block;
    font-weight: 700;
    font-size: 18px;
    background: linear-gradient(90deg, #f89000 0%, #f23c00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-top: 6px;
}

.site-footer {
    background: linear-gradient(90deg, #f89000 0%, #f23c00 100%);
    padding: 60px 0 30px;
    color: #05051f;
}

.site-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.site-footer .nav {
    flex-wrap: wrap;
}

.site-footer .nav__link {
    color: #05051f;
}

.socials {
    display: flex;
    gap: 15px;
    align-items: center;
}

.socials a {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s ease;
}

.socials a:hover {
    transform: scale(1.08);
}

.socials img {
    width: 100%;
    height: 100%;
}

.copyright {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    .hero__title {
        font-size: 64px;
    }
    .section__title,
    .gallery__title {
        font-size: 48px;
    }
    .popular__title {
        font-size: 60px;
    }
    .stat__number {
        font-size: 56px;
    }
    .stats__inner {
        gap: 30px;
    }
    .hero__body {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .hero__intro,
    .hero__cta {
        width: 100%;
        max-width: none;
    }
    .section--split {
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }
    .section__image {
        width: 100%;
    }
    .gallery__grid {
        flex-wrap: wrap;
    }
    .gallery__item {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    .popular {
        padding: 50px 30px;
    }
}

@media (max-width: 720px) {
    .container {
        padding: 0 15px;
    }
    .site-header__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .nav {
        gap: 20px;
    }
    .hero {
        padding-top: 30px;
    }
    .hero__title {
        font-size: 50px;
    }
    .hero__intro,
    .hero__cta {
        width: 100%;
        max-width: 100%;
    }
    .hero__image {
        height: 320px;
    }
    .stats {
        padding: 30px 15px;
    }
    .stats__inner {
        flex-direction: column;
        gap: 20px;
    }
    .stat {
        width: 100%;
        max-width: 100%;
    }
    .stat__number {
        font-size: 40px;
    }
    .section {
        padding: 50px 0;
    }
    .section__title,
    .gallery__title {
        font-size: 38px;
    }
    .section__image {
        width: 100%;
        height: 248px;
    }
    .gallery__grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .gallery__item {
        width: 220px;
        max-width: 100%;
        flex: none;
        height: 309px;
    }
    .gallery__footer {
        align-items: stretch;
    }
    .popular {
        padding: 50px 15px;
    }
    .popular__title {
        font-size: 38px;
    }
    .popular__grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .popular__col {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    .popular__small {
        width: 157px;
        height: 157px;
    }
    .popular__big {
        width: 330px;
        height: 330px;
        max-width: 100%;
    }
    .site-footer {
        padding: 50px 0 20px;
    }
    .site-footer .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .btn {
        padding: 22px 30px;
    }
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 720px;
    background: #ffffff;
    border-radius: 28px;
    padding: 36px 40px 32px;
    z-index: 9999;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
    border: 3px solid transparent;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, #f89000 0%, #f23c00 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    animation: slideUpBanner .5s ease both;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-banner__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    animation: floatUp 4s ease-in-out infinite;
}

.cookie-banner__title {
    font-size: 28px;
    font-weight: 700;
    color: #05051f;
    line-height: 1.15;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.55;
    color: #05051f;
}

.cookie-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-banner .btn {
    width: 100%;
    height: 60px;
    padding: 18px 30px;
    border-radius: 60px;
    font-size: 14px;
    letter-spacing: 1px;
}

.cookie-banner__manage {
    background: #ffffff;
    color: #05051f;
    border: 2px solid #05051f;
    box-shadow: none;
}

.cookie-banner__manage:hover {
    background: #05051f;
    color: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .25);
}

.cookie-banner.is-hidden {
    display: none;
}

@media (max-width: 720px) {
    .cookie-banner {
        padding: 24px 22px 22px;
        border-radius: 22px;
        bottom: 16px;
    }
    .cookie-banner__title {
        font-size: 22px;
    }
    .cookie-banner .btn {
        height: 56px;
    }
}
