@font-face {
    font-family: "Hanken Grotesk";
    src: url("../assets/fonts/HankenGrotesk-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-heading: 'Hanken Grotesk', sans-serif;
    --font-body: Arial, sans-serif;
    --color-black: #000000;
    --color-white: #ffffff;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul,
ol {
    list-style: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea {
    font-family: inherit;
}



.site-header {
    height: 45px;
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: background-color 300ms ease-in-out;
}

.navbar-wrapper {
    width: 100%;
    max-width: 1390px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
}

.nav-center {
    flex: 2;
    display: flex;
    justify-content: center;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.mobile-menu-btn .icon-close {
    display: none;
}

.nav-link,
.nav-btn {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: uppercase;
    color: var(--color-black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 15px;
    height: 36px;
    position: relative;
    transition: color 300ms ease-in-out, opacity 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.region-btn {
    gap: 8px;
}

.nav-right {
    gap: clamp(15px, calc(15px + (100vw - 900px) * 0.0185), 25px);
    justify-content: flex-end;
}

.nav-link.sign-in {
    padding: 0;
}

.nav-link.cart-link {
    padding: 0 15px 0 0;
}

.cart-icon {
    width: 17px;
    height: auto;
}

.nav-right .nav-link:hover,
.nav-left .nav-btn:hover,
.region-dropdown:hover .region-btn {
    opacity: 0.6;
}

.region-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.region-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 5px 10px;
    background-color: var(--color-white);
    display: none;
    z-index: 200;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.region-dropdown:hover .region-menu {
    display: flex;
    flex-direction: column;
}

.region-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-black);
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    padding: 5px;
    transition: color 300ms ease-in-out, opacity 0.3s ease;
}

.region-link:hover {
    opacity: 0.6;
}

.nav-center .nav-link {
    transition: font-size 0.2s ease, font-weight 0.2s ease, color 300ms ease-in-out;
    height: 45px;
}

.site-header.editorial-hovered {
    background-color: var(--color-black);
}

.site-header.editorial-hovered .nav-link,
.site-header.editorial-hovered .nav-btn,
.site-header.editorial-hovered .region-link {
    color: var(--color-white);
}



.site-header.editorial-hovered .nav-left,
.site-header.editorial-hovered .nav-right,
.site-header.editorial-hovered .nav-menu>li:not(.editorial-container) {
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
}

.site-header .nav-left,
.site-header .nav-right,
.site-header .nav-menu>li {
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
}

.editorial-container {
    position: relative;
}

.editorial-dropdown {
    position: absolute;
    top: 100%;
    left: 10px;
    width: max-content;
    display: flex;
    opacity: 0;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
    z-index: 90;
    cursor: default;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
    transform: translateY(-10px);
}

.site-header.editorial-hovered .editorial-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-header::before {
    content: '';
    position: fixed;
    top: 45px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 45px);
    background-color: var(--color-black);
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease-in-out, visibility 300ms ease-in-out;
}

.site-header.editorial-hovered::before {
    opacity: 1;
    visibility: visible;
}

.editorial-link {
    color: var(--color-white);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 10px 10px 0;
    transition: opacity 300ms ease-in-out, font-size 300ms ease-in-out, font-weight 300ms ease-in-out;
}

@media (min-width: 901px) {

    .nav-link,
    .nav-btn,
    .region-link,
    .editorial-link {
        font-family: 'Inter', sans-serif;
    }

    .editorial-link:hover {
        opacity: 1;
        font-size: 14px;
        font-weight: 500;
    }

    .nav-center .nav-link:hover,
    .site-header.editorial-hovered .editorial-container .nav-link {
        font-size: 18px;
        font-weight: 700;
    }
}

.product-features {
    padding: 100px 22px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.feature-block {
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

.feature-block:last-child {
    margin-bottom: 0;
}

.feature-new {
    width: clamp(0px, calc(176.5px + 27.05vw), 566px);
}

.feature-new img {
    aspect-ratio: 566 / 572;
    object-fit: cover;
}

.feature-bestseller {
    width: 100%;
    max-width: 1200px;
}

.feature-media-wrapper {
    position: relative;
    width: 100%;
}

.feature-media-wrapper img,
.feature-media-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.feature-media-wrapper video {
    background-color: #000;
}

.feature-bestseller .feature-media-wrapper video {
    height: clamp(219px, calc(66.79vw - 41.48px), 760px);
}

.sticky-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.sticky-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    font-size: clamp(40px, calc(25.15px + 3.8vw), 80px);
    white-space: nowrap;
}

.feature-caption {
    margin-top: 20px;
    text-align: center;
    transition: opacity 300ms ease-in-out;
    cursor: default;
}

.feature-new .feature-caption {
    width: clamp(0px, calc(100vw - 44px), 645px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.feature-caption h3 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: clamp(0px, calc(13.26px + 0.19vw), 16px);
    margin-bottom: 15px;
    text-transform: none;
    color: var(--color-black);
}

.feature-caption p {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: clamp(0px, calc(11.26px + 0.19vw), 14px);
    line-height: 1.3;
    margin: 0 auto;
    max-width: clamp(0px, calc(202.04px + 30.76vw), 645px);
    color: var(--color-black);
}

.feature-caption:hover {
    opacity: 0.5;
}

.collections-grid {
    padding: 0 22px;
    margin-bottom: 100px;
    width: 100%;
    box-sizing: border-box;
}

.collections-grid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(0px, calc(7.66px + 4.19vw), 68px);
    max-width: 978px;
    margin: 0 auto;
}

.collection-card.collection-01 {
    grid-column: 1 / -1;
}

.collection-card {
    position: relative;
    overflow: hidden;
}

.collection-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(var(--card-zoom, 1));
    transform-origin: center top;
    transition: transform 0.1s ease-out;
}

.collection-01 {
    aspect-ratio: 978 / 475;
}

.collection-02,
.collection-03 {
    aspect-ratio: 455 / 455;
}

.collection-01 img,
.collection-02 img,
.collection-03 img {
    object-position: center var(--crop-y, 50%);
    transform-origin: center var(--origin-y, 50%);
}

.collection-hover-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.collection-card:hover .collection-hover-video {
    opacity: 1;
}

.collection-card .collection-hover-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.1s ease-out;
    z-index: 1;
}

.collection-card:hover .collection-hover-img {
    opacity: 1;
}

.collection-02 .collection-hover-img,
.collection-03 .collection-hover-img {
    object-position: center 25%;
    transform: none;
}

.collection-card h2 {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    pointer-events: none;
    text-align: center;
}

.collection-01 h2 {
    font-size: clamp(0px, calc(18.86px + 2.86vw), 60px);
    white-space: nowrap;
}

.collection-02 h2,
.collection-03 h2 {
    font-size: clamp(0px, calc(9.83px + 2.10vw), 40px);
    white-space: normal;
    width: 80%;
}

main {
    padding-top: 45px;
}

.mobile-menu-footer-logo,
.mobile-only-link,
.editorial-polygon {
    display: none;
}

@media (max-width: 900px) {

    .navbar-wrapper {
        padding: 0 !important;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .nav-menu {
        position: fixed;
        top: 45px;
        left: 0;
        width: 100%;
        height: calc(100vh - 45px);
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 20px;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 99;
    }

    .site-header.menu-open .nav-menu {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        color: var(--color-black);
        font-size: 13px;
        font-weight: 400;
        height: auto;
        padding: 10px;
        width: 100%;
        justify-content: center;
        transition: font-size 0.2s ease, font-weight 0.2s ease, opacity 0.3s ease;
    }

    .editorial-toggle-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .editorial-polygon {
        display: block;
        width: 10px;
    }

    .site-header.menu-open .mobile-menu-btn .icon-open {
        display: none;
    }

    .site-header.menu-open .mobile-menu-btn .icon-close {
        display: block;
    }

    .mobile-menu-footer-logo {
        margin-top: auto;
        width: 100%;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mobile-menu-footer-logo img {
        width: 100%;
        max-width: 100%;
        height: auto;
        filter: brightness(0);
    }

    .site-header .editorial-dropdown {
        display: flex !important;
        position: static;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        padding: 0;
        transition: height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        background: transparent;
        pointer-events: none;
    }

    .site-header .editorial-container.mobile-editorial-open .editorial-dropdown {
        height: auto;
        opacity: 1;
        visibility: visible;
        padding-top: 5px;
        padding-bottom: 10px;
        pointer-events: auto;
    }

    .site-header .editorial-container.mobile-editorial-open .editorial-toggle-btn {
        font-size: 24px;
        font-weight: 700;
    }

    .nav-menu .editorial-link {
        font-size: 13px;
        font-weight: 400;
        color: var(--color-black);
        padding: 6px;
        text-align: center;
    }

    .nav-menu .mobile-only-link {
        display: inline;
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 45px);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-color: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: fixed;
    top: 45px;
    left: 0;
    right: 0;
    z-index: 99;
    padding:
        clamp(12px, calc(1.52vw + 6.06px), 28px) clamp(6px, 1.57vw, 22.5px) 0;
    text-align: center;
    pointer-events: none;
    mix-blend-mode: difference;
}

.hero-logo {
    pointer-events: auto;
    width: 100%;
    max-width: 1401.75px;
    height: auto;
    transition: transform 600ms linear, width 600ms linear;
    transform-origin: top center;
    display: block;
    margin: 0 auto;
}

.hero-logo.hero-logo-shrink {
    width: 309.35px;
    opacity: 1;
}

.marquee-ticker {
    width: 100%;
    height: 85px;
    background-color: var(--color-black);
    overflow: hidden;
    position: relative;
    margin-bottom: 100px;
}

.marquee-track {
    display: flex;
    width: fit-content;
    height: 100%;
    animation: marquee-scroll 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
    gap: clamp(34px, calc(6.3px + 7.14vw), 109px);
    padding: 0 clamp(17px, calc(3.14px + 3.57vw), 54.5px);
}

.marquee-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(24px, calc(10.6px + 3.42vw), 60px);
    color: var(--color-white);
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 85px;
}

.marquee-arrow {
    width: 57px;
    height: 50px;
    flex-shrink: 0;
    display: block;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.info-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(185px, 280px));
    padding-top: clamp(0px, calc(-14.86px + 3.81vw), 40px);
    padding-bottom: clamp(0px, calc(-14.86px + 3.81vw), 40px);
    gap: 126px;
    justify-content: center;
    margin: 0 auto 100px auto;
    padding-left: 22px;
    padding-right: 22px;
    box-sizing: border-box;
    width: 100%;
}

.info-block {
    width: 100%;
    max-width: 280px;
}

.info-block h3 {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--color-black);
    text-transform: uppercase;
}

.info-block p {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-black);
    opacity: 0.6;
}

.info-block p u {
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}

@media (max-width: 900px) {
    .info-section {
        grid-template-columns: 1fr;
        gap: 48px;
        justify-content: start;
    }

    .info-block {
        width: 100%;
        max-width: clamp(280px, calc(65.85px + 54.91vw), 560px);
    }
}

.faq-section {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
    background-color: var(--color-black);
    color: var(--color-white);
    margin-bottom: 100px;
}

.faq-heading {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(24px, calc(24px + (100vw - 390px) * 0.015238), 40px);
    padding: 0 20px;
    margin-bottom: 16px;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-white);
}

.faq-subtitle {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 0 22px;
    margin-bottom: clamp(24px, calc(24px + (100vw - 390px) * 0.011428), 36px);
    max-width: 644px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.1;
}

.faq-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 16px;
    margin-bottom: clamp(60px, calc(45.14px + 3.81vw), 100px);
    padding: 0 22px;
}

@media (max-width: 650px) {
    .faq-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

.faq-btn {
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    padding: 10px 15px;
    border-radius: 24px;
    border-width: 0.5px;
    border-style: solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #828282;
}

.faq-btn.active {
    color: #000000;
    background-color: #FFFFFF;
    border-color: #828282;
}

.faq-accordion-container {
    max-width: 1137px;
    margin: 0 auto;
    padding: 0 22px;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.faq-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 14px;
    cursor: pointer;
}

.faq-item:first-child .faq-item-header {
    padding-top: 0;
}

.faq-item-title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-white);
    text-transform: uppercase;
    line-height: 1.2;
    transition: opacity 250ms ease-in-out;
}

.faq-icon {
    width: 16px;
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.faq-item-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-in-out, padding-bottom 0.4s ease-in-out;
    padding-bottom: 10px;
    overflow: hidden;
}

.faq-item-content p {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.2;
    min-height: 0;
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}

.faq-item.active .faq-item-content {
    grid-template-rows: 1fr;
    padding-bottom: 24px;
}

.faq-item.active .faq-item-content p {
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

.faq-item.active .faq-icon {
    transform: rotate(0deg);
}

.faq-item.fading .faq-item-title,
.faq-item.active.fading .faq-item-content p {
    opacity: 0;
    transition: opacity 250ms ease-in-out;
}

.inquiry-section {
    width: 100%;
    background-color: var(--color-white, #ffffff);
}

.inquiry-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding-bottom: clamp(100px, calc(154.86px - 3.81vw), 140px);
}

.inquiry-container {
    max-width: 1137px;
    margin: 0 auto;
    padding: 0 22px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 40px;
}

.inquiry-content {
    max-width: 280px;
    width: 100%;
}

.inquiry-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: #000;
    line-height: 1;
}

.inquiry-desc {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 60px;
    color: #000;
    line-height: 1.2;
}

.inquiry-form-wrapper {
    max-width: 644px;
    width: 100%;
}

.form-radio-group {
    display: flex;
    gap: 21px;
    margin-bottom: 21px;
}

.custom-radio {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #000;
    display: flex;
    align-items: center;
    min-height: 18px;
}

.custom-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-mark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.custom-radio input:checked~.radio-mark:after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000;
}

.form-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px 20px;
    margin-bottom: 21px;
}

.input-field {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    padding-bottom: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 40px;
}

.input-field input {
    border: none;
    outline: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    width: 100%;
    background: transparent;
    padding: 10px 0 10px 10px;
    color: #000;
    box-sizing: border-box;
}

.input-field input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

.input-field.has-value {
    min-height: 48px;
}

.input-field.has-value label {
    font-family: Arial, sans-serif;
    font-size: 10px;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
    display: block;
}

.input-field.select-field,
.input-field.select-field input {
    cursor: pointer;
}

.select-icon {
    position: absolute;
    right: 10px;
    bottom: 23px;
    width: 11px;
    pointer-events: none;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    filter: invert(1) brightness(0);
    opacity: 0.5;
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background-color: #F8F9F8;
    padding: 15px 10px;
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.custom-select.open .custom-select-dropdown {
    display: flex;
}

.custom-select.open .custom-select-icon {
    transform: rotate(0deg);
}

.custom-select-option {
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    line-height: 1.2;
}

.custom-select-option:hover {
    color: #828282;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    margin-bottom: 40px;
    position: relative;
    padding-left: 24px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 17px;
    width: 17px;
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #000;
    border-color: #000;
}

.custom-checkbox input:checked~.checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.inquiry-submit {
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-color: #000;
    padding: 17px 48px;
    text-transform: uppercase;
    display: inline-block;
}

.homepage-btn {
    position: absolute;
    bottom: clamp(12px, calc(22.96px - 0.76vw), 20px);
    left: 22px;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    text-transform: uppercase;
    padding: 0;
    transition: opacity 0.3s ease;
}

.homepage-btn:hover {
    opacity: 0.5;
}

@media (max-width: 768px) {
    .inquiry-container {
        flex-direction: column;
    }

    .inquiry-content {
        max-width: none;
    }

    .form-inputs-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    background-color: #F8F9F8;
    width: 100%;
    font-family: Arial, sans-serif;
}

.footer-inner {
    --footer-pad: clamp(22px, calc(22px + (100vw - 390px) * 0.03619), 60px);
    position: relative;
    padding-top: 32px;
    padding-bottom: 115px;
    padding-left: var(--footer-pad);
    padding-right: var(--footer-pad);
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    flex-grow: 1;
}

.footer-newsletter {
    max-width: 393px;
    width: 100%;
}

.footer-heading {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 30px;
    color: #000;
    line-height: 1;
    text-transform: uppercase;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.footer-list li a {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #000;
    opacity: 0.6;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-list li a:hover {
    opacity: 0.3;
    cursor: default;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: clamp(18px, calc(18px + (100vw - 390px) * 0.00190), 20px);
}

.newsletter-input {
    height: 37px;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    border: none;
    border-bottom: 1px solid #000;
    background: transparent;
    padding: 0;
    color: #000;
    outline: none;
    box-sizing: border-box;
    border-radius: 0;
}

.newsletter-input::placeholder {
    color: #000;
    opacity: 0.5;
}

.newsletter-btn {
    padding: 10px 0;
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    background-color: #E2E2E2;
    border: none;
    cursor: pointer;
    text-align: center;
    color: #000;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.newsletter-btn:hover {
    background-color: #CFCFCF;
}

.copyright-text,
.web-by-text {
    position: absolute;
    bottom: clamp(33px, calc(33px + (100vw - 390px) * 0.01238), 46px);
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #000;
}

.copyright-text {
    left: clamp(24px, calc(24px + (100vw - 390px) * 0.03428), 60px);
}

.web-by-text {
    right: clamp(28px, calc(28px + (100vw - 390px) * 0.03047), 60px);
}

@media (max-width: 1050px) {
    .footer-inner {
        padding-bottom: 102px;
    }

    .footer-top {
        flex-direction: column;
        gap: 0;
    }

    .footer-links {
        grid-template-columns: calc(50vw - var(--footer-pad)) 1fr;
        row-gap: 51px;
        margin-bottom: 62px;
    }

    .footer-newsletter {
        max-width: none;
    }
}