@charset "UTF-8";

/* ==========================================================================
   Design Tokens (Figma: 아트볼트 / node 313:622)
   ========================================================================== */
:root {
    /* Brand Colors */
    --color-brand-white: #fdfcf9; /* Brand/GJ White */
    --color-brand-ivory: #f1eee7; /* Brand/GJ Soft Ivory */
    --color-brand-sand: #a69a84; /* Brand/GJ Sand */
    --color-primary: var(--color-brand-sand);

    /* GrayScale / Neutral Gray */
    --color-white: #ffffff; /* GrayScale/white */
    --color-gray-500: #737373; /* Neutral Gray 500 */
    --color-gray-600: #525252; /* Neutral Gray 600 */
    --color-gray-700: #404040; /* Neutral Gray 700 */
    --color-gray-800: #262626; /* Neutral Gray 800 */
    --color-gray-900: #171717; /* Neutral Gray 900 */

    /* Opacity */
    --color-white-50: rgba(255, 255, 255, 0.5); /* Opacity/white-50 */

    /* Semantic Aliases */
    --color-bg: var(--color-brand-white);
    --color-bg-soft: var(--color-brand-ivory);
    --color-text: var(--color-gray-900);
    --color-text-sub: var(--color-gray-700);
    --color-text-muted: var(--color-brand-sand);
    --color-text-invert: var(--color-white);
    --color-border: var(--color-brand-sand);

    /* Typography — Font Family */
    --font-pretendard: "Pretendard", "Noto Sans KR", sans-serif;
    --font-marcellus: "Marcellus", serif;
    /* --font-suit / --font-spectral / --font-myeongjo / --font-poppins — 미사용 토큰 제거 */

    /* Typography — Type Scale (PC) */
    /* pc/Subtitle-2 : Pretendard SemiBold 20 / 1.6 / -2 */
    --font-pc-subtitle2-family: var(--font-pretendard);
    --font-pc-subtitle2-weight: 600;
    --font-pc-subtitle2-size: 20px;
    --font-pc-subtitle2-line: 1.6;
    --font-pc-subtitle2-spacing: -2px;

    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    --font-12: clamp(1rem, 0.625vw, 1.2rem);
    --font-14: clamp(1.2rem, 0.7292vw, 1.4rem);
    --font-15: clamp(1.2rem, 0.7812vw, 1.5rem);
    --font-16: clamp(1.2rem, 0.8333vw, 1.6rem);
    --font-18: clamp(1.2rem, 0.9375vw, 1.8rem);
    --font-20: clamp(1.6rem, 1.0417vw, 2rem);
    --font-22: clamp(1.6rem, 1.1458vw, 2.2rem);
    --font-24: clamp(1.8rem, 1.25vw, 2.4rem);
    --font-28: clamp(1.8rem, 1.4583vw, 2.8rem);
    --font-32: clamp(2rem, 1.6667vw, 3.2rem);
    --font-36: clamp(2.2rem, 1.875vw, 3.6rem);
    --font-40: clamp(2.4rem, 2.0833vw, 4rem);
    --font-48: clamp(2.6rem, 2.5vw, 4.8rem);
    --font-52: clamp(2.8rem, 2.7083vw, 5.2rem);
    --font-56: clamp(2.8rem, 2.9167vw, 5.6rem);
    --font-60: clamp(3rem, 3.125vw, 6rem);
    --font-64: clamp(3.2rem, 3.3333vw, 6.4rem);
    --font-72: clamp(3.6rem, 3.75vw, 7.2rem);
    --font-80: clamp(4.4rem, 4.1667vw, 8rem);

    /* Layout — Container */
    --container-max: 1812px;
    --header-height: clamp(60px, 5.2083vw, 100px);
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}
html * {
    word-break: keep-all;
}

* {
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-pretendard);
    font-weight: var(--fw-regular);
    height: 100%;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* 모바일에선 height:100% 해제 — lenis가 콘텐츠 높이를 정상 인식하도록 */
@media screen and (max-width: 768px) {
    html,
    body {
        height: auto;
    }
}
body {
    font-size: var(--font-16);
}
section {
    overflow: hidden;
}
img,
p,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}
img,
video,
iframe {
    max-width: 100%;
}
img,
strong {
    display: block;
}
form,
input {
    background: transparent;
}

/* 모달, 팝업 공통 css */
.modal {
    position: fixed;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.modal .modal_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pc-only {
    display: block;
}
.mobile-only {
    display: none;
}

.block_1024 {
    display: block;
}

.none_1024 {
    display: none;
}

.w_1360 {
    width: 90%;
    max-width: 1360px;
    margin: 0 auto;
}

.w_1280 {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

._cover img,
._cover iframe,
._cover video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[data-aos="fade-left"] {
    transform: translate3d(30px, 0, 0);
}
[data-aos="fade-right"] {
    transform: translate3d(-30px, 0, 0);
}
[data-aos="fade-up"] {
    transform: translate3d(0, 80px, 0);
}
[data-aos="zoom-in"] {
    transform: scale(0.9);
}
[data-aos="fade-down"] {
    transform: translate3d(0, -60px, 0);
}
/* 커스텀 셀렉트 박스 */
.selectBox {
    position: relative;
}
.selectBox .label {
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25);
    background: #fff;
    border-radius: 6px;
    border: 0;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.56px;
    padding: 8px 10px;
}
.selectBox .optionList {
    position: absolute;
    height: 0;
    overflow: hidden;
    transition: 0.3s ease-in;
    top: calc(100% + 10px);
    left: 0;
    z-index: 10;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 9px 10px rgba(0, 0, 0, 0.1);
}
.selectBox .optionList > div {
    display: flex;
    flex-direction: column;
}
.selectBox .optionList.active {
    height: fit-content;
}

.blind {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    bottom: 0;
    overflow: hidden;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    .block_1024 {
        display: none;
    }
    .none_1024 {
        display: block;
    }
}
@media screen and (max-width: 768px) {
    .pc-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }

    html,
    body {
        height: auto;
    }
}
