@charset "utf-8";

/* =========================================================
    RESET
========================================================= */
html, body, div, span, h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl, dt, dd, fieldset, form, label, legend, article, aside, header, footer, nav, section, img, strong, sub, sup, address {
    color: #222;
    font-family: "SUIT", sans-serif;
}
*, *::before, *::after {
    box-sizing: border-box;
}
a:hover {
    color: #16583d;
}

/* 화면 폭에 따라 연속적으로 축소되는 공통 값 */
:root {
    --layout-side: clamp(4rem, calc(1.715rem + 2.23vw), 6rem);
    --layout-gutter: clamp(8rem, calc(3.43rem + 4.46vw), 12rem);
    --header-height: clamp(7.6rem, calc(5.31rem + 2.23vw), 9.6rem);
    --header-scrolled-height: clamp(6.2rem, calc(5.1rem + 1vw), 7rem);
    --header-logo-width: clamp(10.5rem, calc(7.8rem + 2.7vw), 13rem);
    --header-logo-height: clamp(3.6rem, calc(2.9rem + 0.73vw), 4.3rem);
    --gnb-gap: clamp(2.4rem, calc(-1.6rem + 4.17vw), 6.4rem);
    --gnb-font-size: clamp(1.5rem, calc(1.39rem + 0.11vw), 1.6rem);
    --header-util-gap: clamp(2rem, calc(-0.3rem + 2.24vw), 4rem);
    --inquiry-width: clamp(13.5rem, calc(12.35rem + 1.12vw), 14.5rem);
    --dropdown-title-column: clamp(20rem, calc(14.3rem + 5.58vw), 25rem);
    --dropdown-gap: clamp(4rem, calc(-4rem + 7.8vw), 11rem);
    --section-space: clamp(8rem, calc(3.43rem + 4.46vw), 12rem);
}

/* =========================================================
    HEADER
========================================================= */
#header {
    z-index: 1000;
    position: relative;
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    background: transparent;
}
#header .header-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: calc(100% - var(--layout-gutter));
    max-width: 1680px;
    height: 100%;
    margin: 0 auto;
}

/* 중앙 로고 */
.header-logo {
    z-index: 2;
    grid-column: 2;
    grid-row: 1;
    margin: 0;
}
.header-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--header-logo-width);
    height: var(--header-logo-height);
}
.header-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 1depth */
.gnb {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    height: 100%;
}
.gnb-list {
    display: flex;
    align-items: center;
    gap: var(--gnb-gap);
    height: 100%;
    margin: 0;
    padding: 0;
}
.gnb-item {
    display: flex;
    align-items: center;
    height: 100%;
}
.gnb > .gnb-list > .gnb-item:nth-child(5) {
    display: none;
}
.gnb-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    font-size: var(--gnb-font-size);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    transition: color 0.3s ease;
}
/* PC 1depth 밑줄: 모바일 메뉴의 +/화살표와 충돌하지 않도록 PC 직계 메뉴에만 적용 */
@media only screen and (min-width: 1024px) {
    .gnb > .gnb-list > .gnb-item > .gnb-link::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: clamp(1.8rem, calc(1.35rem + 0.44vw), 2.2rem);
        left: 0;
        height: 1px;
        background: #16583d;
        transform: scaleX(0);
        transform-origin: right center;
        transition: transform 0.35s ease;
    }

    .gnb > .gnb-list > .gnb-item:hover > .gnb-link::after,
    .gnb > .gnb-list > .gnb-item:focus-within > .gnb-link::after,
    .gnb > .gnb-list > .gnb-item.on > .gnb-link::after {
        transform: scaleX(1);
        transform-origin: left center;
    }
}

/* 오른쪽 메뉴 */
.header-util {
    z-index: 2;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: var(--header-util-gap);
}
.header-language {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.language-link {
    display: block;
    color: #999;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    transition: color 0.3s ease;
}
.language-link:hover,
.language-link:focus-visible {
    color: #222;
}
.language-link.is-active {
    color: #926539;
    font-weight: 700;
}
.language-divider {
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    width: 3px;
    height: 3px;
    border-radius: 999px;
    background: #ccc;
    color: transparent;
    font-size: 0;
    line-height: 0;
}

/* 제품문의 버튼 */
.header-inquiry {
    isolation: isolate;
    overflow: hidden;
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: space-between;
    align-items: center;
    width: var(--inquiry-width);
    height: clamp(4.4rem, calc(3.94rem + 0.45vw), 4.8rem);
    padding: 0 clamp(0.8rem, 0.47vw, 0.9rem) 0 clamp(1.6rem, 1.04vw, 2rem);
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            #244f38 0%,
            #2f7d53 52%,
            #74a06e 100%
        );
    background-position: 0 50%;
    background-size: 180% 100%;
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.2),
        inset -1px 1px 3px rgba(255, 255, 255, 0.2);
    color: #fff;
    transition:
        background-position 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease;
}
.header-inquiry::before {
    content: "";
    z-index: 0;
    position: absolute;
    top: -50%;
    left: -55%;
    width: 36%;
    height: 200%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent
        );
    transform: skewX(-18deg);
    transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.header-inquiry:hover,
.header-inquiry:focus-visible {
    background-position: 100% 50%;
    box-shadow:
        0 8px 20px rgba(24, 72, 47, 0.22),
        inset -1px 1px 3px rgba(255, 255, 255, 0.24);
    color: #fff;
}
.header-inquiry:hover::before {
    left: 120%;
}
.header-inquiry-text {
    z-index: 1;
    position: relative;
    flex: 1;
    color: #fff;
    font-size: clamp(1.4rem, calc(1.17rem + 0.22vw), 1.6rem);
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}
.header-inquiry-icon {
    z-index: 1;
    position: relative;
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    width: clamp(2.8rem, calc(2.57rem + 0.22vw), 3rem);
    height: clamp(2.8rem, calc(2.57rem + 0.22vw), 3rem);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transition:
        background-color 0.35s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.header-inquiry-icon img {
    display: block;
    width: 7px;
    height: 7px;
    object-fit: contain;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.header-inquiry:hover .header-inquiry-icon {
    background: rgba(255, 255, 255, 0.28);
    transform: translateX(2px) scale(1.04);
}
.header-inquiry:hover .header-inquiry-icon img {
    transform: translate(1px, -1px);
}

/* 메인 스크롤 헤더 */
#page-main #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    transform: translateY(0);
    transition:
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
        height 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
    will-change: transform;
}
#page-main #header.header-hidden {
    transform: translateY(-100%);
}
#page-main #header.is-scrolled {
    height: var(--header-scrolled-height);
    border-bottom-color: rgba(33, 33, 33, 0.08);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

/* =========================================================
    MENU
========================================================= */
@media only screen and (min-width: 1024px) {
    #page-main #header.in-active,
    #page-main #header:has(.gnb-item.on),
    #page-sub #header.in-active,
    #page-sub #header:has(.gnb-item.on) {
        border-bottom-color: rgba(36, 79, 56, 0.08);
        background:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.98) 0%,
                rgba(248, 246, 241, 0.96) 100%
            );
        box-shadow: 0 10px 30px rgba(28, 42, 33, 0.05);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }
    #header.in-active.is-scrolled .header-inquiry,
    #header.in-active.is-scrolled .header-inquiry:hover {
        box-shadow: none;
    }
    .gnb-dropdown {
        visibility: hidden;
        opacity: 0;
        z-index: 10;
        position: absolute;
        top: 100%;
        left: 50%;
        overflow-y: auto;
        width: 100vw;
        max-height: calc(100vh - var(--header-height));
        padding: 0;
        border-top: 0;
        border-bottom: 1px solid rgba(34, 34, 34, 0.06);
        background:
            linear-gradient(
                180deg,
                rgba(249, 247, 242, 0.98) 0%,
                rgba(255, 255, 255, 0.99) 100%
            );
        box-shadow: 0 30px 60px rgba(28, 42, 33, 0.1);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        transform: translate(-50%, -12px);
        pointer-events: none;
        transition:
            visibility 0s linear 0.3s,
            opacity 0.28s ease,
            transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    #header.is-scrolled .gnb-dropdown {
        max-height: calc(100vh - var(--header-scrolled-height));
    }
    .gnb-item.on .gnb-dropdown {
        visibility: visible;
        opacity: 1;
        transform: translate(-50%, 0);
        pointer-events: auto;
        transition:
            visibility 0s linear 0s,
            opacity 0.28s ease,
            transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .gnb-dropdown-inner {
        display: grid;
        grid-template-columns: var(--dropdown-title-column) minmax(0, 1fr);
        gap: var(--dropdown-gap);
        align-items: start;
        width: calc(100% - var(--layout-gutter));
        max-width: 1680px;
        margin: 0 auto;
        padding: clamp(3.2rem, 2.08vw, 4rem) 0 clamp(3.6rem, 2.34vw, 4.5rem);
    }
    .gnb-dropdown-title {
        position: relative;
        margin: 0;
        padding-top: clamp(2.8rem, 1.67vw, 3.2rem);
        color: #222;
        font-family: "TwaySky", sans-serif;
        font-size: clamp(3rem, calc(2.3rem + 0.68vw), 3.6rem);
        font-weight: 400;
        line-height: 1.05;
        letter-spacing: -0.04em;
    }
    .gnb-dropdown-title::before {
        content: "HAESARANG MENU";
        position: absolute;
        top: 0;
        left: 0;
        color: #926539;
        font-family: "SUIT", sans-serif;
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0.16em;
    }
    .gnb-dropdown-title::after {
        content: "";
        display: block;
        width: 3.2rem;
        height: 2px;
        margin-top: clamp(1.8rem, 1.25vw, 2.4rem);
        border-radius: 999px;
        background:
            linear-gradient(
                90deg,
                #244f38 0%,
                #74a06e 100%
            );
    }
    .gnb-dropdown .lnb {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(24rem, 1fr));
        align-items: start;
        gap: clamp(1rem, 0.8vw, 1.4rem);
        margin: 0;
        padding: 0;
    }

    .gnb-dropdown .lnb > li {
        position: relative;
        min-width: 0;
        min-height: clamp(7rem, 4vw, 7.6rem);
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: clamp(1.2rem, 0.85vw, 1.6rem);
        background: rgba(244, 241, 235, 0.82);
        box-shadow: none;
        transition: 
            background-color 0.3s ease,
            box-shadow 0.3s ease;
    }

    .gnb-dropdown .lnb > li:hover,
    .gnb-dropdown .lnb > li:focus-within,
    .gnb-dropdown .lnb > li.on {
        border-color: transparent;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 0.5rem 1.8rem rgba(30, 20, 10, 0.12);
    }

    .gnb-dropdown .lnb > li > a {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        min-height: clamp(7rem, 4vw, 7.6rem);
        padding: 0 clamp(5rem, 3vw, 5.8rem) 0 clamp(1.8rem, 1.25vw, 2.2rem);
        border-radius: inherit;
        color: #222;
        font-size: clamp(1.5rem, calc(1.34rem + 0.16vw), 1.65rem);
        font-weight: 600;
        line-height: 1.35;
        letter-spacing: -0.025em;
        transition: color 0.3s ease;
    }

    .gnb-dropdown .lnb > li:hover > a,
    .gnb-dropdown .lnb > li.on > a {
        color: #2f6f4c;
    }

    .gnb-dropdown .lnb > li > a::after {
        content: "";
        position: absolute;
        top: 50%;
        right: clamp(1.6rem, 1.05vw, 2rem);
        width: clamp(2.8rem, 1.6vw, 3.2rem);
        height: clamp(2.8rem, 1.6vw, 3.2rem);
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.92);
        transform: translateY(-50%);
        transition: background-color 0.3s ease;
    }

    .gnb-dropdown .lnb > li > a::before {
        content: "";
        z-index: 1;
        position: absolute;
        top: 50%;
        right: clamp(2.55rem, 1.63vw, 3.1rem);
        width: 7px;
        height: 7px;
        background-color: #77736c;
        -webkit-mask: url("/images/main/renew/hm-arr.svg") center / contain no-repeat;
        mask: url("/images/main/renew/hm-arr.svg") center / contain no-repeat;
        transform: translateY(-50%);
        transition: background-color 0.3s ease;
    }

    .gnb-dropdown .lnb > li:hover > a::after,
    .gnb-dropdown .lnb > li.on > a::after {
        background-color: #fff;
    }

    .gnb-dropdown .lnb > li:hover > a::before,
    .gnb-dropdown .lnb > li.on > a::before {
        background-color: #2f6f4c;
    }

    .gnb-dropdown .lnb > li:has(> .depth3) > a {
        min-height: clamp(6.8rem, 3.8vw, 7.2rem);
        border-radius: clamp(1.2rem, 0.85vw, 1.6rem) clamp(1.2rem, 0.85vw, 1.6rem) 0 0;
    }

    .gnb-dropdown .depth3 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: clamp(2.4rem, 2vw, 4rem);
        row-gap: clamp(0.8rem, 0.55vw, 1rem);
        margin: 0 clamp(1.8rem, 1.25vw, 2.2rem) clamp(1.8rem, 1.25vw, 2.2rem);
        padding-top: clamp(1.4rem, 0.9vw, 1.8rem);
        border-top: 1px solid rgba(34, 34, 34, 0.1);
    }

    .gnb-dropdown .depth3 > li,
    .gnb-dropdown .depth3 > li + li {
        min-height: 0;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .gnb-dropdown .depth3 > li > a {
        position: relative;
        display: block;
        min-height: 0;
        padding: 0 0 0 1.2rem;
        border-radius: 0;
        color: #8a867f;
        font-size: clamp(1.3rem, 0.8333vw, 1.6rem);
        line-height: 1.5;
        transition: color 0.25s ease;
    }

    .gnb-dropdown .depth3 > li > a::before {
        content: "";
        position: absolute;
        top: 0.75em;
        left: 0;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: #b5afa6;
        -webkit-mask: none;
        mask: none;
        transform: none;
    }

    .gnb-dropdown .depth3 > li > a::after {
        display: none;
    }

    .gnb-dropdown .depth3 > li > a:hover,
    .gnb-dropdown .depth3 > li > a:focus-visible {
        padding-left: 1.2rem;
        color: #2f6f4c;
        font-weight: 500;
    }

}


/* =========================================================
    MOBILE MENU
========================================================= */

/* 모바일 메뉴 버튼 */
.mobile-menu-button {
    display: none;
    z-index: 3;
    position: relative;
    flex: 0 0 auto;
    width: 4.4rem;
    height: 4.4rem;
    padding: 0;
    border: 1px solid rgba(36, 79, 56, 0.12);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow:
        0 5px 18px rgba(32, 57, 43, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    appearance: none;
    cursor: pointer;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.mobile-menu-button:hover,
.mobile-menu-button:focus-visible {
    border-color: rgba(36, 79, 56, 0.28);
    box-shadow:
        0 7px 20px rgba(32, 57, 43, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.mobile-menu-button:active {
    transform: scale(0.96);
}

.mobile-menu-button span {
    position: absolute;
    left: 50%;
    display: block;
    width: 1.8rem;
    height: 1.5px;
    border-radius: 999px;
    background: #244f38;
    transform: translateX(-50%);
    transform-origin: center;
    transition:
        top 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        left 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        width 0.35s ease,
        background-color 0.3s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu-button span:first-child {
    top: 1.65rem;
}

.mobile-menu-button span:last-child {
    top: 2.45rem;
    left: calc(50% + 0.3rem);
    width: 1.2rem;
}

.mobile-menu-button.is-active {
    border-color: #244f38;
    background: #244f38;
    box-shadow: none;
}

.mobile-menu-button.is-active span {
    top: 50%;
    left: 50%;
    width: 1.8rem;
    background: #fff;
}

.mobile-menu-button.is-active span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-button.is-active span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* 모바일 메뉴 전체 */
.mobile-menu {
    visibility: hidden;
    opacity: 0;
    z-index: 990;
    position: fixed;
    top: 60px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    width: 100%;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(116, 160, 110, 0.14) 0,
            rgba(116, 160, 110, 0) 28rem
        ),
        #f7f6f1;
    transform: translate3d(-100%, 0, 0);
    pointer-events: none;
    transition:
        visibility 0s linear 0.58s,
        opacity 0.22s ease,
        transform 0.58s cubic-bezier(0.76, 0, 0.24, 1);
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
    transition-delay: 0s;
}

.mobile-menu-inner {
    position: relative;
    width: min(100%, 72rem);
    min-height: 100%;
    margin: 0 auto;
    padding:
        4rem max(2.4rem, 6vw)
        calc(5rem + env(safe-area-inset-bottom));
}

.mobile-menu-inner::before {
    content: "MENU";
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    color: #926539;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.2em;
}

.mobile-menu-inner::after {
    content: "";
    position: absolute;
    right: -12rem;
    bottom: -14rem;
    width: 34rem;
    height: 34rem;
    border: 1px solid rgba(36, 79, 56, 0.07);
    border-radius: 50%;
    pointer-events: none;
}


/* 모바일 1depth */
.mobile-menu .gnb-list {
    display: block;
    counter-reset: mobile-menu-number;
    height: auto;
    margin: 0;
    padding: 0;
}

.mobile-menu .gnb-item {
    display: block;
    counter-increment: mobile-menu-number;
    height: auto;
    border-bottom: 1px solid rgba(36, 79, 56, 0.11);
    opacity: 0;
    transform: translateX(-1.6rem);
    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .gnb-item {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu.is-open .gnb-item:nth-child(1) {
    transition-delay: 0.12s;
}

.mobile-menu.is-open .gnb-item:nth-child(2) {
    transition-delay: 0.17s;
}

.mobile-menu.is-open .gnb-item:nth-child(3) {
    transition-delay: 0.22s;
}

.mobile-menu.is-open .gnb-item:nth-child(4) {
    transition-delay: 0.27s;
}

.mobile-menu.is-open .gnb-item:nth-child(5) {
    transition-delay: 0.32s;
}

.mobile-menu.is-open .gnb-item:nth-child(6) {
    transition-delay: 0.37s;
}

.mobile-menu .gnb-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    width: 100%;
    height: auto;
    min-height: 7.4rem;
    padding: 1.8rem 3.6rem 1.8rem 0;
    color: #242522;
    font-family: "TwaySky", sans-serif;
    font-size: clamp(2.45rem, 6.8vw, 3.1rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.045em;
    white-space: normal;
    word-break: keep-all;
    transition:
        color 0.3s ease,
        padding-left 0.35s ease;
}

.mobile-menu .gnb-link::before {
    content: counter(mobile-menu-number, decimal-leading-zero);
    flex: 0 0 2.5rem;
    color: #aaa79f;
    font-family: "SUIT", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
}

/* PC 메뉴 밑줄 속성 초기화 */
.mobile-menu .gnb-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.2rem;
    bottom: auto;
    left: auto;
    width: 1.8rem;
    height: 1.8rem;
    border: 0;
    border-radius: 0;
    background: none;
    transform: translateY(-50%);
    transform-origin: center;
    transition:
        background-color 0.3s ease,
        transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* 바로 이동하는 메뉴 */
.mobile-menu
.gnb-item:not(.has-submenu)
.gnb-link::after {
    width: 8px;
    height: 8px;
    background-color: #777b75;
    -webkit-mask:
        url("/images/main/renew/hm-arr.svg")
        center / contain no-repeat;
    mask:
        url("/images/main/renew/hm-arr.svg")
        center / contain no-repeat;
}

/* 하위 메뉴가 있는 항목 */
.mobile-menu
.gnb-item.has-submenu
.gnb-link::after {
    background:
        linear-gradient(#526d5d, #526d5d)
        center / 1.5rem 1.5px no-repeat,
        linear-gradient(#526d5d, #526d5d)
        center / 1.5px 1.5rem no-repeat;
}

.mobile-menu .gnb-item.on .gnb-link {
    color: #2f6f4c;
}

.mobile-menu
.gnb-item.has-submenu.on
.gnb-link::after {
    background:
        linear-gradient(#2f6f4c, #2f6f4c)
        center / 1.5rem 1.5px no-repeat,
        linear-gradient(#2f6f4c, #2f6f4c)
        center / 0 0 no-repeat;
    transform: translateY(-50%) rotate(180deg);
}


/* 모바일 2depth */
.mobile-menu .gnb-dropdown {
    visibility: visible;
    opacity: 0;
    position: static;
    display: grid;
    overflow: hidden;
    grid-template-rows: 0fr;
    width: 100%;
    max-height: none;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    pointer-events: none;
    transition:
        grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.25s ease,
        padding-bottom 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu .gnb-item.on .gnb-dropdown {
    opacity: 1;
    grid-template-rows: 1fr;
    padding-bottom: 2rem;
    pointer-events: auto;
}

.mobile-menu .gnb-dropdown-inner {
    overflow: hidden;
    display: block;
    min-height: 0;
    width: 100%;
    padding: 0 0 0 3.9rem;
}

.mobile-menu .gnb-dropdown-title {
    display: none;
}

.mobile-menu .gnb-dropdown .lnb {
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0.6rem 1.6rem;
    border: 1px solid rgba(36, 79, 56, 0.07);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: none;
}

.mobile-menu .gnb-dropdown .lnb li {
    overflow: hidden;
    min-width: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid rgba(36, 79, 56, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.mobile-menu .gnb-dropdown .lnb li:last-child {
    border-bottom: 0;
}

.mobile-menu .gnb-dropdown .lnb li a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 5rem;
    padding: 1.3rem 2.8rem 1.3rem 0;
    color: #343632;
    font-family: "SUIT", sans-serif;
    font-size: 1.5rem;
    font-weight: 650;
    line-height: 1.4;
    letter-spacing: -0.025em;
    word-break: keep-all;
    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.mobile-menu .gnb-dropdown .lnb li a:hover,
.mobile-menu .gnb-dropdown .lnb li a:focus-visible {
    padding-left: 0.5rem;
    color: #2f6f4c;
}

.mobile-menu .gnb-dropdown .lnb li a::before {
    display: none;
}

.mobile-menu .gnb-dropdown .lnb li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.2rem;
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 0;
    background: #718076;
    -webkit-mask:
        url("/images/main/renew/hm-arr.svg")
        center / contain no-repeat;
    mask:
        url("/images/main/renew/hm-arr.svg")
        center / contain no-repeat;
    transform: translateY(-50%);
}


/* 모바일 3depth */
.mobile-menu .gnb-dropdown .depth3 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.2rem 1.6rem;
    margin: 0 0 1.4rem;
    padding: 0.2rem 0 0.6rem 1.4rem;
    border-top: 0;
    border-left: 1px solid rgba(47, 111, 76, 0.2);
}

.mobile-menu .gnb-dropdown .depth3 li,
.mobile-menu .gnb-dropdown .depth3 li + li {
    min-width: 0;
    margin: 0;
}

.mobile-menu .gnb-dropdown .depth3 li a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 3.7rem;
    padding: 0.7rem 0 0.7rem 1.2rem;
    border-radius: 0;
    background: transparent;
    color: #777970;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -0.02em;
    word-break: keep-all;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.mobile-menu .gnb-dropdown .depth3 li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #a2a69f;
    transform: translateY(-50%);
}

.mobile-menu .gnb-dropdown .depth3 li a:hover,
.mobile-menu .gnb-dropdown .depth3 li a:focus-visible {
    color: #2f6f4c;
    transform: translateX(0.3rem);
}

.mobile-menu
.gnb-dropdown
.depth3
li
a:hover::before {
    background: #2f6f4c;
}


/* 메뉴 열린 상태 */
body.menu-open {
    overflow: hidden;
}

body.menu-open #page-main #header,
body.menu-open #page-sub #header {
    border-bottom-color: rgba(36, 79, 56, 0.08);
    background: rgba(247, 246, 241, 0.96);
    box-shadow: none;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

body.menu-open
#page-main
#header.header-hidden {
    transform: translateY(0);
}


/* 작은 모바일 */
@media only screen and (max-width: 480px) {
    .mobile-menu-inner {
        padding:
            3.2rem 2rem
            calc(4rem + env(safe-area-inset-bottom));
    }

    .mobile-menu-inner::before {
        margin-bottom: 1.5rem;
    }

    .mobile-menu .gnb-link {
        min-height: 6.8rem;
        font-size: 2.4rem;
    }

    .mobile-menu .gnb-dropdown-inner {
        padding-left: 3.7rem;
    }

    .mobile-menu .gnb-dropdown .lnb {
        padding-right: 1.4rem;
        padding-left: 1.4rem;
    }

    .mobile-menu .gnb-dropdown .depth3 {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* 모션 최소화 설정 */
@media (prefers-reduced-motion: reduce) {
    .mobile-menu,
    .mobile-menu-button,
    .mobile-menu-button span,
    .mobile-menu .gnb-item,
    .mobile-menu .gnb-dropdown {
        transition-duration: 0.01ms;
    }
}


/* =========================================================
   SUB
========================================================= */
/* 서브 스크롤 헤더 */
#page-sub #header {
    z-index: 1000;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: #fff;
    transform: translateY(0);
    transition:
        transform 0.38s
        cubic-bezier(0.22, 1, 0.36, 1),
        height 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        backdrop-filter 0.3s ease;
    will-change: transform;
}
#page-sub .product-tabs.is-fixed {
    z-index: 900;
}
#page-sub #header.header-hidden {
    transform: translateY(-100%);
}

#page-sub #header.is-scrolled {
    height: var(--header-scrolled-height);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

#page-sub .gnb-link {
    color: #444;
}

#page-sub .language-link {
    color: #999;
}

#page-sub .language-link:hover {
    color: #222;
}

#page-sub .language-link.is-active {
    color: #926539;
}

#page-sub .container-section {
    width: 100%;
    background: #fff;
}

#page-sub .container-body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: calc(
        100% - clamp(3.2rem, 5vw, 8rem)
    );
    max-width: 152rem;
    margin: 11.5rem auto 5rem;
    padding: 0;
}

/* 서브 제목 */
#page-sub .sub-title {
    flex: 0 0 auto;
    margin: 0;
    color: #222;
    font-size: clamp(3.2rem, 2.6042vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

/* 경로 */
#page-sub .breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
}

#page-sub .breadcrumb-list li {
    position: relative;
    margin-left: clamp(1.4rem, 1.0417vw, 2rem);
    padding-left: clamp(1.8rem, 1.25vw, 2.4rem);
    background:
        url("/images/common/breadcrumb_arr.png")
        no-repeat left center;
    color: #888;
    font-size: clamp(1.4rem, 0.8333vw, 1.6rem);
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}

#page-sub .breadcrumb-list li.home {
    width: 1.4rem;
    height: 1.8rem;
    margin: 0;
    padding: 0;
    background:
        url("/images/common/home.png")
        no-repeat center / contain;
    font-size: 0;
}

#page-sub .breadcrumb-list li:last-child {
    color: #333;
    font-weight: 500;
}

#page-sub .container-section.sub-bg {
    margin-top: calc(var(--header-height) * -1);
    padding-top: var(--header-height);
    background:
        url("/images/common/svis_img.jpg")
        no-repeat center top / cover;
}

.sub-visual {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: clamp(28.3rem, 27.604vw, 53rem);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.sub-visual.sub01 {
    background-image: url("/images/common/svis_img3.jpg");
}

.sub-visual.sub02 {
    background-image: url("/images/common/svis_img2.jpg");
}

.sub-visual.sub03 {
    background-image: url("/images/common/svis_img1.jpg");
}

.sub-visual.sub04 {
    background-image: url("/images/common/svis_bg_05.jpg");
}

.sub-visual.sub05 {
    background-image: url("/images/common/svis_bg_06.jpg");
}

.sub-visual.sub06 {
    background-image: url("/images/common/svis_img5.jpg");
}

.sub-visual.sub07 {
    background-image: url("/images/common/svis_img1.jpg");
}

.sub-visual.sub08 {
    background-image: url("/images/common/svis_img6.jpg");
}

.sub-visual.sub09 {
    background-image: url("/images/common/svis_img6.jpg");
}


/* 서브 비주얼 흰색 커버 */
.sub-visual::after {
    content: "";
    z-index: 2;
    position: absolute;
    inset: 0;
    background: #fff;
    transform: translate3d(101%, 0, 0);
    pointer-events: none;
}

/* Contact와 동일한 배경 오픈 효과 */
@media (prefers-reduced-motion: no-preference) {
    html.js #page-sub .sub-visual::after {
        transform: translate3d(0, 0, 0);
        transition:
            transform 1.25s
            cubic-bezier(0.76, 0, 0.24, 1);
        will-change: transform;
        backface-visibility: hidden;
    }

    html.js #page-sub .sub-visual.is-bg-show::after {
        transform: translate3d(101%, 0, 0);
    }
}
/* .sub-visual::before {
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    color: rgba(255, 255, 255, 0.6);
    font-family: "TwaySky", sans-serif;
    font-size: clamp(7rem, calc(2.43rem + 4.46vw), 11rem);
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.06em;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.sub-visual.sub01::before {
    content: "The Essence of Haesarang";
}

.sub-visual.sub02::before {
    content: "Standards We Live By";
}

.sub-visual.sub03::before {
    content: "Our Story in Motion";
}

.sub-visual.sub04::before {
    content: "Where to Find Us";
}

.sub-visual.sub05::before {
    content: "Our Product Selection";
}

.sub-visual.sub06::before {
    content: "Inside Korean Laver";
}
 */
#page-sub .content-section {
    min-height: 60rem;
    padding-top: var(--section-space);
}

#page-sub .content-section .wrap {
    width: calc(100% - var(--layout-gutter));
    max-width: 1520px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* =========================
서브 콘텐츠 스크롤 등장 효과
========================= */

html.js #page-sub .content-section {
    opacity: 0;
    transform: translate3d(0, 2rem, 0);

    transition:
        opacity 0.5s ease,
        transform 0.7s
            cubic-bezier(0.22, 1, 0.36, 1);
}

html.js #page-sub .content-section.is-content-show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    html.js #page-sub .content-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* 탭 메뉴 */
.mtab_menu {
    display: none;
}

.tap_menu_wrap {
    position: relative;
    height: clamp(6rem, 3.65vw, 7rem);
}

.tap_menu_box {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: min(92%, 1400px);
    margin: 0 auto;
}

.tap_menu {
    display: flex;
    width: 100%;
}

.tap_menu li {
    float: none;
    flex: 1;
    min-width: 0;
    height: clamp(6rem, 3.65vw, 7rem);
    text-align: center;
}

.tap_menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(6rem, 3.65vw, 7rem);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: clamp(1.5rem, 0.94vw, 1.8rem);
    line-height: normal;
}

.tap_menu li:first-child a {
    border-left: 0;
}

.tap_menu li.on a,
.tap_menu li a:hover,
.tap_menu li a:active,
.tap_menu li a:focus {
    border-top: 3px solid #1674b0;
    background: #fff;
    color: #1674b0;
    line-height: normal;
}


/* 콘텐츠 */
.content {
    width: auto;
    padding: clamp(4rem, 3.13vw, 6rem);
}

.con_header h3 {
    margin-bottom: clamp(3.5rem, 2.6vw, 5rem);
    padding-bottom: clamp(1.5rem, 1.04vw, 2rem);
    border-bottom: 1px solid #000;
    color: #000;
    font-size: clamp(2.2rem, 1.35vw, 2.6rem);
    font-weight: 600;
    line-height: normal;
    text-align: left;
}


/* =========================================================
    FOOTER
========================================================= */
#footer {
    background: #222;
}
#footer .inner {
    display: flex;
    justify-content: space-between;
    padding: clamp(6rem, calc(3.71rem + 2.23vw), 8rem) var(--layout-side);
}
.footer-text .foot-logo img {
    display: block;
    object-fit: contain;
}
.footer-text .copyright {
    margin-top: clamp(3rem, 2.34vw, 4.5rem);
    color: #888;
    font-size: 1.4rem;
    font-weight: 300;
}
.footer-info dl {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    line-height: 16px;
}
.footer-info dt {
    flex-shrink: 0;
    position: relative;
    display: block;
    min-width: 6.8rem;
    padding-right: 2rem;
    color: #999;
    font-size: 1.4rem;
    font-weight: 400;
}
.footer-info dt::before {
    content: "";
    position: absolute;
    top: 0.8rem;
    right: 0;
    display: block;
    width: 1px;
    height: 8px;
    background: rgba(204, 204, 204, 0.3);
}
.footer-info dd {
    display: block;
    padding-left: 2rem;
    color: #999;
    font-size: 1.6rem;
    font-weight: 500;
}


/* =========================================================
    RESPONSIVE
========================================================= */

@media only screen and (max-width: 1023px) {
    #header {
        height: 68px;
    }

    #page-main #header,
    #page-main #header.is-scrolled {
        position: fixed;
        top: 0;
        left: 0;
        height: 68px;
        border-bottom: 1px solid rgba(33, 33, 33, 0.08);
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 5px 20px rgba(26, 50, 36, 0.035);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    #page-sub #header,
    #page-sub #header.is-scrolled {
        position: sticky;
        top: 0;
        left: 0;
        height: 68px;
        border-bottom: 1px solid rgba(33, 33, 33, 0.08);
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 5px 20px rgba(26, 50, 36, 0.035);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    #header .header-inner,
    #page-main #header.is-scrolled .header-inner {
        display: flex;
        justify-content: space-between;
        width: calc(100% - clamp(3.2rem, 6vw, 6rem));
        height: 68px;
    }

    .gnb {
        display: none;
    }

    .header-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0;
        transform: translate(-50%, -50%);
    }

    .header-logo a {
        width: clamp(8.8rem, calc(8.1rem + 0.7vw), 10rem);
        height: clamp(3.4rem, calc(3.1rem + 0.3vw), 3.8rem);
    }

    .header-util {
        gap: 0;
        margin-left: auto;
    }

    /* 메뉴를 열었을 때 MENU 타이틀 우측에 언어 선택 노출 */
    .header-language {
        display: none;
    }

    body.menu-open #header .header-language {
        z-index: 1002;
        position: fixed;
        top: calc(68px + clamp(2.5rem, 4vw, 3.2rem));
        right: clamp(2rem, 6vw, 4.4rem);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.4rem;
        border: 1px solid rgba(36, 79, 56, 0.1);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.76);
        box-shadow:
            0 8px 24px rgba(31, 59, 43, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    body.menu-open #header .header-language .language-link {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: 3.4rem;
        height: 3.4rem;
        padding: 0 0.7rem;
        border-radius: 999px;
        color: #817d76;
        font-size: 1.15rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        transition:
            color 0.25s ease,
            background-color 0.25s ease,
            box-shadow 0.25s ease;
    }

    body.menu-open #header .header-language .language-link:hover,
    body.menu-open #header .header-language .language-link:focus-visible {
        color: #244f38;
        background: rgba(36, 79, 56, 0.07);
    }

    body.menu-open #header .header-language .language-link.is-active {
        background: #244f38;
        box-shadow: 0 5px 14px rgba(36, 79, 56, 0.2);
        color: #fff;
    }

    body.menu-open #header .header-language .language-divider {
        display: none;
    }

    /* 모바일 제품문의: 작게 줄이지 않고 캡슐형 CTA로 유지 */
    .header-inquiry {
        width: clamp(10.4rem, calc(9.7rem + 2vw), 11.8rem);
        height: 4.2rem;
        padding: 0.4rem 0.4rem 0.4rem clamp(1.25rem, 3.5vw, 1.55rem);
        border: 1px solid rgba(255, 255, 255, 0.2);
        background-size: 160% 100%;
        box-shadow:
            0 7px 18px rgba(27, 73, 48, 0.19),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .header-inquiry-text {
        font-size: clamp(1.25rem, calc(1.16rem + 0.28vw), 1.4rem);
        font-weight: 650;
        letter-spacing: -0.025em;
    }

    .header-inquiry-icon {
        width: 3.4rem;
        height: 3.4rem;
        background: rgba(255, 255, 255, 0.2);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    }

    .header-inquiry-icon img {
        width: 8px;
        height: 8px;
    }

    .mobile-menu-button {
        display: block;
        order: -1;
    }

    .mobile-menu {
        top: 68px;
        height: calc(100vh - 68px);
        height: calc(100dvh - 68px);
    }

    #page-sub .container-section.sub-bg {
        margin-top: -68px;
        padding-top: 68px;
    }

    #page-sub .container-body {
        height: clamp(16rem, calc(14.18rem + 5.69vw), 20rem);
        padding-right: clamp(1.6rem, 4vw, 4.1rem);
        padding-left: clamp(1.6rem, 4vw, 4.1rem);
    }

    #page-sub .breadcrumb-list li.home {
        margin-top: 2px;
    }

    #page-sub .sub-title {
        font-size: clamp(3.6rem, calc(3.33rem + 0.27vw), 4.2rem);
    }

    .sub-visual::before {
        font-size: clamp(3.6rem, 6.84vw, 7rem);
    }

    #page-sub .content-section {
        padding-top: clamp(6rem, calc(5.09rem + 2.84vw), 8rem);
    }


    .sub-visual {
        height: clamp(20rem, 27.604vw, 28.3rem);
        aspect-ratio: auto;
    }

    #page-sub .content-section .wrap {
        width: calc(100% - clamp(3.2rem, 8vw, 8.2rem));
    }
}

@media only screen and (max-width: 767px) {
    #page-sub .breadcrumb-list li {
        background-position: left top 7px;
        font-size: clamp(1.4rem, 4vw, 1.6rem);
    }

    #footer .inner {
        flex-direction: column-reverse;
        gap: clamp(2.4rem, 4vw, 3rem);
        padding:
            clamp(5rem, 7.82vw, 6rem)
            clamp(1.6rem, 4vw, 3.1rem)
            clamp(4rem, 6.52vw, 5rem);
    }

    .footer-text .foot-logo img {
        width: auto;
        height: clamp(3.4rem, 5.22vw, 4rem);
    }

    .footer-text .copyright {
        margin-top: clamp(2.4rem, 3.91vw, 3rem);
    }

    .footer-info dt {
        min-width: clamp(5.4rem, 8.47vw, 6.5rem);
    }
}

@media only screen and (max-width: 480px) {
    #page-sub .container-body {
        padding-top: clamp(1rem, 4vw, 2rem);
    }
}
/* =========================================================
    MOBILE HEADER FINAL OVERRIDE
    - CSS only
========================================================= */
@media only screen and (max-width: 1023px) {
    /* 모바일 메뉴에 복제된 제품문의 메뉴 숨김 */
    .mobile-menu .gnb-list > .gnb-item:has(> .gnb-link[href*="/inquiry"]) {
        display: none;
    }

    /* 기존 메인 메뉴 구성에서 제품문의가 5번째인 경우의 보조 처리 */
    .gnb-list > .gnb-item:nth-child(5) {
        display: none;
    }

    /* 하단 언어 선택 영역과 겹치지 않도록 메뉴 하단 여백 확보 */
    .mobile-menu-inner {
        padding-bottom: calc(10rem + env(safe-area-inset-bottom));
    }

    /* fixed 제거: 메뉴를 열었을 때 화면 하단에 배치 */
    body.menu-open #header .header-language {
        position: absolute;
        top: calc(100dvh - 6.4rem - env(safe-area-inset-bottom));
        right: 0;
        left: auto;
        display: flex;
        width: auto;
        margin: 0;
    }

    /* 모바일 로고 확대 및 340px에서 문의 버튼과 충돌 방지 */
    .header-logo {
        transform: translate(calc(-50% - clamp(0.8rem, 2vw, 1.2rem)), -50%);
    }

    .header-logo a {
        width: clamp(9.8rem, 25vw, 11.8rem);
        height: clamp(4rem, 10vw, 4.7rem);
    }

    /* 모바일 상단 제품문의 버튼 확대 */
    .header-inquiry {
        width: clamp(11.2rem, 29vw, 12.8rem);
        height: 4.6rem;
        padding: 0.4rem 0.4rem 0.4rem clamp(1.35rem, 3.5vw, 1.7rem);
    }

    .header-inquiry-text {
        font-size: clamp(1.3rem, 3.5vw, 1.45rem);
        font-weight: 650;
    }

    .header-inquiry-icon {
        width: 3.6rem;
        height: 3.6rem;
    }

    .header-inquiry-icon img {
        width: 8px;
        height: 8px;
    }
}

/* 모바일 메뉴 오픈 시 헤더 배경 통일 */
@media only screen and (max-width: 1023px) {
    body.menu-open #page-main #header,
    body.menu-open #page-main #header.is-scrolled,
    body.menu-open #page-sub #header {
        border-bottom-color: rgba(36, 79, 56, 0.08);
        background: #f7f6f1;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}