@font-face {
    font-family: 'Menseal';
    src: url('../fonts/Menseal-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #090909;
    --gray: #0F0F0F;
    --white: #FFFFFF;
}

body {
    background-color: var(--gray);
    color: var(--white);
    font-family: "Host Grotesk", sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Menseal', sans-serif;
    font-weight: 900;
}

.lang-switcher .nav-link {
    font-family: 'Menseal', sans-serif !important;
}

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

p {
    margin-bottom: 0 !important;
}

/* Content */
.content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.content .kicker {
    font-size: 0.75rem;
    letter-spacing: 0.1125rem;
    text-transform: uppercase;
}

.content h1 {
    font-size: 5rem;
    line-height: 4.625rem;
}

.content h2 {
    font-size: 3rem;
    line-height: 3.188rem;
}

h3 {
    font-size: 1.5rem;
}

/* BNT */
.bnt {
    display: flex;
    width: fit-content;
}

/* Custom classes*/
.gap-30 {
    gap: 30px;
}

.mb-20 {
    margin-bottom: 1.25rem;
}

.mb-50 {
    margin-bottom: 3.125rem;
}

.sections {
    padding: 6.25rem 0;
}

.section-sticky-content {
    position: sticky;
    top: 2rem;
    align-self: flex-start;
}

.hero-subpage--fill {
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-subpage--fill .content {
    align-items: center;
    text-align: center;
}

.dark-bg {
    background-color: var(--black);
}

/* Primary Button */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.3125rem 1rem 0.3125rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 6.25rem;
    width: fit-content;
    color: var(--white) !important;
    text-decoration: none !important;
    font-size: 0.875rem;
    line-height: 1.4375rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none !important;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.12);
}

.primary-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 300px;
    background-color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.btn-icon-box {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-2rem);
    transition: transform 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.btn-icon-elem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
}

.primary-btn:hover .btn-icon-box {
    transform: translateX(0);
}

/* Homo Faber Badge */
.homo-faber-badge {
    gap: 1.25rem;
}

.homo-faber-divider {
    display: block;
    width: 1px;
    height: 1.25rem;
    background-color: var(--white);
    flex-shrink: 0;
}

/* Gallery Card */
.gallery-card {
    display: block;
    text-decoration: none !important;
    color: var(--white) !important;
}

.gallery-card__img {
    position: relative;
    overflow: hidden;
}

.gallery-card__img picture img,
.gallery-card__img img {
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-card:hover .gallery-card__img picture img,
.gallery-card:hover .gallery-card__img img {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.12);
}

/* Product Card */
.product-card {
    display: block;
    text-decoration: none !important;
    color: var(--white) !important;
}

.product-card__img {
    position: relative;
    overflow: hidden;
}

.product-card__img picture img,
.product-card__img img {
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-card__img picture img,
.product-card:hover .product-card__img img {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.12);
}

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    max-width: calc(100% - 2rem);
    padding: 0.5rem 0.875rem;
    background: rgba(0, 0, 0, 0.541);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    color: var(--white);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(-0.5rem);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
}

.gallery-card:hover .card-badge,
.product-card:hover .card-badge,
.blog-card:hover .card-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Materials Badge */
.materials-badge {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.375rem 1rem;
    font-weight: 500 !important;
    font-size: .875rem !important;
    color: inherit;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Gallery Product Row */
.gallery-product-row {
    position: relative;
    color: var(--white) !important;
    text-decoration: none !important;
    cursor: pointer;
    border-radius: 0.75rem;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.35s ease;
}

.gallery-product-row picture {
    display: block;
    overflow: hidden;
}

.gallery-product-row .gallery-product-img {
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-product-row:hover,
.gallery-product-row:focus-visible {
    transform: translateY(-0.25rem);
    background-color: rgba(255, 255, 255, 0.03);
}

.gallery-product-row:hover .gallery-product-img,
.gallery-product-row:focus-visible .gallery-product-img {
    transform: scale(1.06);
    box-shadow: 0 0.375rem 1.5rem rgba(255, 255, 255, 0.12);
}

.gallery-product-row:hover .materials-badge,
.gallery-product-row:focus-visible .materials-badge {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-0.125rem);
}

.gallery-product-row:hover .primary-btn,
.gallery-product-row:focus-visible .primary-btn {
    transform: translateY(-0.1875rem);
    box-shadow: 0 0.375rem 1.5rem rgba(255, 255, 255, 0.12);
}

.gallery-product-row:hover .btn-icon-box,
.gallery-product-row:focus-visible .btn-icon-box {
    transform: translateX(0);
}

/* Spacing utilities */
.mb-50 {
    margin-bottom: 3.125rem;
}

/* Product Content Blocks */
.product-content__text {
    align-items: start;
}

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

/* Single image */
.product-content__gallery--single img {
    width: 100%;
    height: 823px;
    object-fit: cover;
}

/* 2-col: small + large */
.product-content__gallery--2col {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.product-content__gallery--2col .gallery-img-small img {
    width: 322px;
    height: 470px;
    object-fit: cover;
}

.product-content__gallery--2col .gallery-img-large {
    flex: 1;
}

.product-content__gallery--2col .gallery-img-large img {
    width: 100%;
    height: 703px;
    object-fit: cover;
}

.gallery-caption {
    margin-top: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
}

/* 2-col: equal sizes */
.product-content__gallery--equal {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.product-content__gallery--equal .gallery-img-equal {
    flex: 1;
}

.product-content__gallery--equal .gallery-img-equal img {
    width: 100%;
    height: 880px;
    object-fit: cover;
}

/* Header */
.site-header {
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: var(--gray);
}

.site-header .navbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    justify-self: start;
}

.site-logo svg {
    display: block;
    height: auto;
    max-width: 100%;
}

.main-nav {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
}

.desktop-nav {
    grid-column: 2;
    justify-self: center;
}

.desktop-lang-switcher {
    grid-column: 3;
    justify-self: end;
}

.main-nav .nav-link {
    padding: 1rem 0.625rem !important;
    color: var(--white) !important;
    font-size: 1rem;
    line-height: 1;
    position: relative;
}

.main-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.75rem;
    left: 0.625rem;
    right: 0.625rem;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-nav .nav-link:hover::before,
.main-nav .nav-link[aria-expanded="true"]::before {
    transform: scaleX(1);
}

.main-nav .dropdown-toggle::after {
    display: none;
}

/* Nav Mega Dropdown */
.nav-mega {
    width: 20.875rem;
    padding: 1.5rem !important;
    border-radius: 0.5rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: none !important;
}

.nav-mega__inner {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.nav-mega__links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex: 1;
}

.nav-mega__link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white) !important;
    text-decoration: none !important;
    line-height: 1.4375rem;
    position: relative;
    width: fit-content;
}

.nav-mega__link::before {
    content: '';
    position: absolute;
    bottom: -0.1rem;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.nav-mega__link:hover::before {
    transform: scaleX(1);
}

.nav-mega__image {
    width: 7.5rem;
    flex-shrink: 0;
    border-radius: 0.25rem;
    overflow: hidden;
}

.nav-mega__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lang-switcher {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.625rem;
}

.lang-switcher .nav-item {
    display: flex;
}

.lang-switcher .nav-link {
    padding: 0 !important;
    color: var(--white) !important;
    font-size: 1rem;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
}

.lang-switcher .nav-link::before {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.lang-switcher .nav-link.active::before,
.lang-switcher .nav-link:hover::before {
    transform: scaleX(1);
}

/* Hero */
.hero {
    height: 50.125rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-background-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #0F0F0F 13%, rgba(15, 15, 15, 0) 50%);
    z-index: 1;
}

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

.hero .content h1 {
    max-width: 57.4375rem;
}

.hero .content p {
    font-size: 1.375rem;
    line-height: 1.75rem;
    max-width: 650px;
    text-align: center;
    font-weight: 300;
}

/* Breadcrumb */
.breadcrumb-nav {
    margin-bottom: 0.75rem;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: #ffffff;
    font-size: 0.9375rem;
    font-weight: 400;
}

.breadcrumb-item a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.breadcrumb-item a:hover {
    opacity: 0.8;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '|';
    margin-right: 0.5rem;
    color: #ffffff;
}

.breadcrumb-item:not(.breadcrumb-item--active) a {
    text-decoration: underline !important;
}

.hero-subpage .content p {
    font-size: 1.375rem;
    max-width: 41.875rem;
}

/* Hero Subpage Image */
.hero-subpage-image .content {
    align-items: flex-start;
}

.hero-subpage-image .content h1 {
    text-align: left;
    max-width: 50rem;
}

.hero-subpage-image .content p {
    font-size: 1.125rem;
    max-width: 41.875rem;
    opacity: 0.85;
}

.hero-subpage-image--center .content {
    align-items: center;
}

.hero-subpage-image--center .content h1 {
    text-align: center;
}

.hero-subpage-image--center .content p {
    text-align: center;
}

/* Courses */
.course-point {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 0.75rem;
}

.course-point__heading,
.course-price__value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: .25rem !important;
    font-family: 'Menseal', sans-serif;
}

.course-point__subheading {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0;
}

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

.course-side-img {
    width: 327px;
    height: 427px;
    object-fit: cover;
}

.course-prices {
    margin-bottom: 1.5rem;
    max-width: 34rem;
    width: 100%;
}

.course-price-item .kicker {
    margin-bottom: 0.125rem;
}

.course-price__value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0;
}






.course-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.course-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.course-text ul li::before {
    content: '';
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5L7 12.5L13 3.5' stroke='%23EF5656' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.course-text ul:has(h3) {
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 0.75rem;
    margin-bottom: 1.875rem;
}

.course-text ul:has(h3) li {
    display: block;
    margin-bottom: 0;
}

.course-text ul:has(h3) li::before {
    display: none;
}

.course-text ul:has(h3) li+li {
    margin-top: 0.875rem;
}

.course-text ul:has(h3) h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    margin-bottom: 0 !important;
}

.course-point .site-footer__label {
    margin-bottom: 0 !important;
}

/* Products Splide */
.products-splide {
    position: relative;
}

.products-splide__arrows {
    position: absolute;
    bottom: -2.5rem;
    right: 0;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.products-splide__arrow {
    position: static !important;
    transform: none !important;
    width: 2.8125rem !important;
    height: 2.8125rem !important;
    border-radius: 6.25rem !important;
    background-color: #FFFFFF !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    opacity: 1 !important;
    padding: 0 !important;
}

.products-splide__arrow svg {
    width: 0.8125rem;
    height: 0.8125rem;
    flex-shrink: 0;
}

.products-splide__arrow.splide__arrow--prev svg {
    transform: rotate(180deg);
}

.products-splide__arrow:disabled {
    opacity: 0.3 !important;
}

/* Reviews Splide */
.reviews-splide {
    position: relative;
    width: 100%;
    min-width: 0;
}

.reviews-splide .splide__track {
    flex: 1;
    overflow: hidden;
    padding-left: 2.5rem;
    padding-bottom: 1.5rem;
    margin-left: -2.5rem;
    margin-bottom: -1.5rem;
}

.reviews-splide .splide__list {
    align-items: stretch;
}

.reviews-splide .splide__slide {
    display: flex;
    min-width: 0;
}

.reviews-splide .review-card {
    width: 100%;
    min-width: 0;
}

.reviews-splide__arrows {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.reviews-splide__arrow {
    position: static !important;
    transform: none !important;
    width: 2.8125rem !important;
    height: 2.8125rem !important;
    border-radius: 6.25rem !important;
    background-color: #FFFFFF !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    opacity: 1 !important;
    padding: 0 !important;
}

.reviews-splide__arrow svg {
    width: 0.8125rem;
    height: 0.8125rem;
    flex-shrink: 0;
}

.reviews-splide__arrow.splide__arrow--prev svg {
    transform: rotate(180deg);
}

.reviews-splide__arrow:disabled {
    opacity: 0.3 !important;
}

/* Review Card */
.review-card {
    display: flex;
    gap: 3.125rem;
    align-items: stretch;
    text-decoration: none !important;
    color: var(--white) !important;
}

a.review-card .review-card__image picture img,
a.review-card .review-card__image img {
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

a.review-card:hover .review-card__image picture img,
a.review-card:hover .review-card__image img {
    transform: scale(1.03);
}

@keyframes label-bounce {

    0%,
    100% {
        transform: rotate(180deg) translateY(0);
    }

    50% {
        transform: rotate(180deg) translateY(7px);
    }
}

a.review-card .review-card__label {
    animation: none;
}

a.review-card:hover .review-card__label {
    animation: label-bounce 1.6s ease-in-out infinite;
}

.review-card__image {
    position: relative;
    flex-shrink: 0;
}

.review-card__image picture,
.review-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.review-card__label {
    position: absolute;
    left: -2.375rem;
    bottom: -1.5rem;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    white-space: nowrap;
    padding: 1.5rem 0.625rem;
}

.review-card__label svg {
    flex-shrink: 0;
    transform: rotate(180deg);
}

.review-card__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1.5rem;
    padding-bottom: 5.9375rem;
}

.review-card__text p {
    margin-bottom: 1rem !important;
}

.review-card-course {
    display: block;
    min-height: 100%;
    padding: 3.125rem 1.5625rem;
}

.course-reviews .col-lg-8 {
    min-width: 0;
}

.course-reviews .reviews-splide {
    overflow: hidden;
}

.course-reviews .reviews-splide .splide__track {
    overflow: hidden;
    padding-left: 0;
    padding-bottom: 0;
    margin-left: 0;
    margin-bottom: 0;
}

.review-card-course .review-card__body {
    justify-content: flex-start;
    gap: 1.5rem;
    padding-bottom: 0;
}

.review-card-course__stars {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    line-height: 0;
}

.review-card-course__star {
    width: 0.9375rem;
    height: 0.9375rem;
    flex-shrink: 0;
}

/* CTA */
.cta {
    padding: 6.25rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: 0;
}

.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-card {
    margin-left: 7.5rem;
    width: 27.25rem;
    min-height: 37.375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.125rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-input {
    width: 100%;
    padding: 1.5rem;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s ease;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 1);
}

.cta-input:focus {
    border-color: rgba(255, 255, 255, 1);
}

/* Contact */


.contact .container {
    position: relative;
    overflow: hidden;
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
}

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

.contact-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.contact-card {
    position: relative;
    z-index: 2;
    margin-left: 7.5rem;
    width: 48.4375rem;
    gap: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 3.125rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card p {
    max-width: 30.75rem;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form [data-validate-for] {
    color: #ffa5a5 !important;
    font-size: .875rem;
}

.contact-textarea {
    resize: none;
    min-height: 8rem;
}

/* Footer */
.site-footer {
    padding: 5rem 0 2.5rem;
}

.site-footer__top {
    padding-bottom: 4rem;
}

.site-footer__label {
    font-size: .875rem;
    letter-spacing: .035rem;
    text-transform: uppercase;
    color: #C8C8C8 !important;
    margin-bottom: 1.375rem !important;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer__nav a {
    font-size: 1.5rem;
    font-family: 'Menseal', sans-serif;
    font-weight: 900;
    color: var(--white) !important;
    line-height: 1.2;
    transition: opacity 0.2s ease;
}

.site-footer__nav a:hover {
    opacity: 0.6;
}

.site-footer__right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--white) !important;
    font-size: 1.5rem;
    transition: color 0.2s ease;
}

.site-footer__socials a:hover {
    color: #C8C8C8 !important;
}


.site-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.site-footer__contacts a {
    color: var(--white) !important;
    font-size: 1.125rem;
    text-decoration: underline !important;
    text-underline-offset: 0.2rem;
    transition: opacity 0.2s ease;
}

.site-footer__contacts a:hover {
    opacity: 0.7;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer__legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.site-footer__legal a {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color 0.2s ease;
}

.site-footer__legal a:hover {
    color: var(--white) !important;
}

.site-footer__copy {
    font-size: .875rem;
    color: rgba(255, 255, 255, 0.6);
}

.gallery-products .site-footer__label,
.product-detail .site-footer__label,
.contact-person .site-footer__label {
    margin-bottom: .625rem !important;
}

.contact-person-avatar {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

.blog-card {
    display: block;
    text-decoration: none !important;
    color: var(--white) !important;
}

.blog-card .date {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
}

.blog-card h3 {
    margin-bottom: 0.25rem;
}

.blog-card__img {
    position: relative;
    overflow: hidden;
}

.blog-card picture {
    display: block;
    overflow: hidden;
}

.blog-card picture img {
    width: 100%;
    height: 38.375rem;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover picture img {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.12);
}

/* Blog Hero */
.blog-hero {
    padding: 6rem 0 4rem;
}

.blog-hero__content {
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.blog-hero .date {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
}

.blog-hero__content h1,
.blog-hero__content h2 {
    max-width: 74.5rem;
}

.blog-hero__content>p:not(.date) {
    font-size: 1.375rem;
    font-weight: 300;
    max-width: 41.875rem;
}

.blog-hero__image {
    margin-top: 3rem;
}

.blog-hero__image picture {
    display: block;
}

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

/* Blog Content */
.blog-content__text {
    display: flex;
    flex-direction: column;
}

.blog-content>.container>*+* {
    margin-top: 3rem;
}

.blog-content__image-full picture {
    display: block;
}

.blog-content__image-full picture img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-content .col-lg-6 picture img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-block h3 {
    font-size: 2rem;
}

.contact-info .contact-block+.contact-block {
    margin-top: 2.5rem;
}

.contact-address {
    margin-bottom: 1.875rem !important;
    line-height: 1.6;
}

.course-item .site-footer__label,
.contact-block .site-footer__label,
.join .site-footer__label {
    margin-bottom: .5rem !important;
}

.course-item h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}