@import url('reset.css');

@font-face {
    font-family: 'Taxon';
    src: url('../fonts/Taxon-Light.woff2') format('woff2'),
    url('../fonts/Taxon-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --vh: 100%;

    --bk: #331F1A;
    --wh: #F0EEE5;
    --bg-f-1: #E1DFCE;
    --bg-f-2: #C0BEAE;

    --fz: 18px;
    --fz-em: 22px;
    --fz-s: 16px;
    --fz-xs: 14px;

    --fz-title: 42px;
    --fz-title-s: 36px;

    --fz-subtitle: 28px;
    --fz-subtitle-s: 24px;
}

@media screen and (max-width: 1024px) {
    :root {
        --fz: 12px;
        --fz-em: 14px;
        --fz-s: 12px;
        --fz-xs: 10px;

        --fz-title: 36px;
        --fz-title-s: 24px;

        --fz-subtitle: 16px;
        --fz-subtitle-s: 16px;
    }
}

html,
body {
    color: var(--bk);
    font-family: 'Taxon', sans-serif;
    font-style: normal;
    font-size: var(--fz);
    font-weight: 300;
    line-height: normal;
    background: var(--wh);
}

html[lang="ko"] .ko {
    font-family: 'Pretendard Variable', sans-serif;
    font-weight: 400;
}

html[lang="ko"] .ko-b {
    font-family: 'Pretendard Variable', sans-serif;
    font-weight: 500;
}

* {
    color: var(--bk);
    font-size: var(--fz);
    font-weight: 300;
    cursor: none !important;
}

body.no-scroll {
    height: 100%;
    overflow: hidden;
}

.btn {
    width: fit-content;
    height: 84px;
    line-height: 80px;
    border: 2px solid var(--wh);
    background: transparent;
    text-align: center;

    font-size: var(--fz-em);

    transition: all 300ms ease-in;
}

@media (hover: hover) {
    .btn:hover {
        background: var(--wh);
    }
}

@media screen and (max-width: 1680px) {
    .btn {
        height: 56px;
        line-height: 54px;
        border: 1px solid var(--wh);
    }
}

@media screen and (max-width: 1024px) {
    .btn {
        width: 100%;
        height: 52px;
        line-height: 50px;
        border: 1px solid var(--wh);
    }
}

#app {
    position: relative;
}

section {
    min-height: 100vh;
}

.sec-inner {
    position: relative;
    margin: auto;
    padding: 50px;
    width: 100%;
    max-width: 1920px;
    height: 100%;
}

@media screen and (max-width: 1440px) {
    section {
        min-height: calc(var(--vh, 1vh) * 100);
    }
}

@media screen and (max-width: 1024px) {
    .sec-inner {
        padding: 15px;
    }
}

.sec-title {
    font-size: var(--fz-title);
}

.sec-title--s {
    font-size: var(--fz-title-s);
}

.sec-subtitle {
    font-size: var(--fz-subtitle);
}

.sec-subtitle--s {
    font-size: var(--fz-subtitle-s);
}

/*language*/
.lang-btn-wrapper {
    position: absolute;
    z-index: 10;
    top: 34px;
    right: 50px;
}

.lang-btn {
    position: relative;
    padding-left: 25px;
    color: var(--wh);
    font-size: var(--fz-em);
    letter-spacing: 3.3px;
}

.lang-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 10px;
    height: 6px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.85207 4.96426L5.84881 4.96118L10 1.03563L9.13978 0.222168L4.9886 4.14772L0.860215 0.243737L-3.95657e-08 1.06028L4.9886 5.77772L5.85207 4.96426Z' fill='%23F0EEE5'/%3E%3C/svg%3E%0A");
    background-size: cover;

    opacity: 0;

    transition: opacity 300ms ease;
}

.lang-btn.on:before {
    opacity: 1;
}

.lang-list {
    position: absolute;
    top: calc(100% + 10px);
    left: 25px;

    opacity: 0;
    transform: translateY(-10px);

    pointer-events: none;

    transition: all 300ms ease;
}

.lang-btn.on + .lang-list {
    opacity: 1;
    transform: translateY(0);

    pointer-events: visible;
}

.lang-item {
    display: block;
    color: var(--wh);
    font-size: var(--fz-s);
    line-height: 150%;
    letter-spacing: 0.8px;
}

.lang-item:first-child {
    opacity: 1;
}

.lang-item:last-child {
    opacity: 0.55;
}

html[lang="ko"] .lang-item:first-child {
    opacity: 0.55;
}

html[lang="ko"] .lang-item:last-child {
    opacity: 1;
}

@media screen and (max-width: 1680px) {
    .lang-btn {
        font-size: 15px;
        letter-spacing: 2.25px;
    }

    .lang-btn:before {
        left: 5px;
        width: 5px;
        height: 3px;
    }

    .lang-item {
        font-size: 11px;
        letter-spacing: 0.55px;
    }
}

@media screen and (max-width: 1024px) {
    .lang-btn-wrapper {
        top: 20px;
        right: 15px;
    }

    .lang-btn {
        position: relative;
        padding-left: 15px;
        font-size: 12px;
        letter-spacing: 1.8px;
    }

    .lang-btn:before {
        left: 0;
        width: 5px;
        height: 3px;
    }

    .lang-item {
        font-size: 10px;
        line-height: normal;
        letter-spacing: 1.5px;
    }
}

/*footer*/
.footer-inner {
    padding: 45px 50px 35px;
}

.sns-list {
    display: flex;
    justify-content: flex-end;
    gap: 50px;
}

.sns-item {
    font-size: var(--fz);
    line-height: 150%;
    letter-spacing: 2.7px;
}

@media (hover: hover) {
    .sns-item:hover {
        text-decoration: underline;
    }
}

.site-info-wrapper {
    margin-top: 100px;
}

.site-info-title {
    font-size: var(--fz-xs);
    line-height: 150%;
    letter-spacing: 2.1px;
}

.site-info {
    margin-top: 10px;
    font-size: var(--fz-s);
    line-height: 150%;
    white-space: pre-wrap;
}

.copyright {
    text-align: center;
    color: var(--bg-f-2);
    font-size: var(--fz-xs);
}

@media screen and (max-width: 1680px) {
    .site-info-title {
        font-size: 10px;
    }

    .site-info {
        margin-top: 6px;
        color: #331F1A;
        font-size: 10px;
        line-height: 150%;
    }

    .sns-list {
        gap: 36px;
    }

    .sns-item {
        font-size: 14px;
        letter-spacing: 2.1px;
    }

    .copyright {
        font-size: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .footer-inner {
        padding: 22px 15px 17px;
    }

    .sns-list {
        column-gap: 22px;
    }

    .sns-item {
        font-size: 16px;
        line-height: 150%;
        letter-spacing: 2.4px;
    }

    .site-info-wrapper {
        margin-top: 128px;
        margin-bottom: 40px;
    }

    .site-info-title {
        font-size: var(--fz-s);
    }

    .site-info {
        margin-top: 13px;
        font-size: var(--fz-s);
    }

    .copyright {
        text-align: left;
    }
}

/*logo*/
#logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 40px;
    width: 830px;
    height: calc(34px + 40px);
    transition: width 300ms ease, height 300ms ease;
}

header.sticky #logo {
    position: fixed;
    top: 0;
    width: 484px;
    height: calc(20px + 40px);
}

@media screen and (max-width: 1680px) {
    #logo {
        padding-top: 40px;
        width: 554px;
        height: calc(23px + 40px);
    }

    header.sticky #logo {
        width: 484px;
        height: calc(20px + 40px);
    }
}

@media screen and (max-width: 1024px) {
    #logo {
        padding-top: 20px;
        width: 340px;
        height: calc(14px + 20px);
    }

    header.sticky #logo {
        width: 242px;
        height: calc(10px + 20px);
    }
}

.logo-item {
    display: block;
    margin: auto;
    width: 100%;
    height: 100%;
}

.logo-item path {
    fill: var(--wh);
}

/*header*/
header {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    mix-blend-mode: difference;
    pointer-events: none;
}

@media screen and (max-width: 1440px) {
    header {
        height: calc(var(--vh, 1vh) * 100);
    }
}

.header-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*main*/
.sec--main {
    background: var(--bk);
}

.sec--main > .sec-inner {
    padding: 0;
    max-width: none;
}

.sec--main .main-video {
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

@media screen and (max-width: 1440px) {
    .sec--main .main-video {
        height: calc(var(--vh, 1vh) * 100);
    }
}

/*sec 1*/
.sec--1 {
    background: var(--bk);
}

.sec--1 > .sec-inner {
    padding: 130px 50px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

@media screen and (max-width: 1440px) {
    .sec--1 > .sec-inner {
        min-height: calc(var(--vh, 1vh) * 100);
    }
}

@media screen and (max-width: 1024px) {
    .sec--1 {
        background: var(--bk);
    }

    .sec--1 > .sec-inner {
        padding: 65px 15px 15px;
    }
}

.sec--1 * {
    color: var(--wh);
    text-align: center;
}

.sec--1 .sec-title {
    margin: auto auto 0;
    text-transform: uppercase;
    font-variant: all-small-caps;
    letter-spacing: 6.3px;
}

.main-list {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 30px;
    margin-top: 130px;
    width: 100%;
}

.main-item {
    flex: 1;
}

.main-desc {
    margin: auto auto 0;
    padding-bottom: 100px;
    max-width: 1400px;
    font-size: var(--fz-em);
    line-height: 150%;
}

@media screen and (max-width: 1024px) {
    .main-list {
        display: block;
        margin-top: 60px;
    }

    .main-item {
        line-height: 150%;
        height: 40px;
    }

    .main-desc {
        padding-bottom: 35px;
    }
}

/*add :: fz*/
html[lang="ko"] .sec--1 .main-desc {
    line-height: 170%;
}

@media screen and (max-width: 1680px) {
    .sec--1 .sec-title {
        font-size: 32px;
        letter-spacing: 4.8px;
    }

    .sec--1 .sec-subtitle {
        font-size: 20px;
    }

    .sec--1 .main-desc {
        width: 80%;
        font-size: 14px;
    }

    html[lang="ko"] .sec--1 .sec-title {
        font-size: 26px;
        letter-spacing: 3.9px;
        font-variant: none;
    }

    html[lang="ko"] .sec--1 .sec-subtitle {
        font-size: 18px;
    }

    html[lang="ko"] .sec--1 .main-desc {
        font-size: 14px;
    }
}

@media screen and (max-width: 1024px) {
    .sec--1 .sec-title {
        font-size: var(--fz-title);
        letter-spacing: 5.4px;
    }

    .sec--1 .sec-subtitle {
        font-size: var(--fz-subtitle);
    }

    .sec--1 .main-desc {
        width: 100%;
        font-size: var(--fz-em);
    }

    html[lang="ko"] .sec--1 .sec-title {
        font-size: 26px;
        font-variant: all-small-caps;
        letter-spacing: 3.9px;
    }

    html[lang="ko"] .sec--1 .sec-subtitle {
        font-size: 16px;
        line-height: 150%;
    }

    html[lang="ko"] .sec--1 .main-desc {
        width: 100%;
        font-size: 12px;
        line-height: 150%;
    }
}

/*sec 2*/
.ss1-item-wrapper {
    padding-right: 90px;
    min-height: 200vh;
}

.ss1-pagination {
    position: sticky;
    top: 50px;
    right: 0;
    width: 100%;
    height: calc(100vh - 100px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.ss1-pagination-inner > div {
    width: 3px;
    height: 30px;
    background: var(--bk);
    opacity: 0.45;
}

.ss1-pagination-inner > div + div {
    margin-top: 10px;
}

.ss1-pagination-inner > div.on {
    opacity: 1;
}

.ss1-list {
    margin-top: calc((100vh - 100px) * -1);
}

.ss1-item {
    position: sticky;
    top: 0;
    display: flex;
    column-gap: 120px;
    padding-top: 100px;
    padding-bottom: 50px;
    width: 100%;

    height: 100vh;
}

@media screen and (max-width: 1680px) {
    .ss1-item {
        column-gap: 60px;

        height: auto;
    }
}

.ss1-video {
    width: auto;
    min-width: 700px;
    height: calc(100vh - (100px + 100px + 50px));
}

@media screen and (max-width: 1680px) {
    .ss1-video {
        min-width: 560px;
    }
}

@media screen and (max-width: 1024px) {
    .ss1-item-wrapper {
        padding-right: 36px;
        min-height: auto;
    }

    .ss1-pagination-inner > div {
        width: 2px;
    }

    .s1-swiper .swiper-slide {
        overflow-y: auto;
    }

    .ss1-list {
        margin-top: calc((100vh - 30px - 45px - 55px) * -1);
    }

    .ss1-item {
        position: static;
        flex-direction: column;
        column-gap: 0;
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .ss1-item.ss1-item--r {
        /*flex-direction: column-reverse;*/
    }

    .ss1-video {
        width: auto;
        min-width: auto;
        height: 380px;
    }
}

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

.ss1-text-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ss1-title {
    margin: 0 0 8px;
    letter-spacing: 6.3px;
}

.ss1-title--m,
.ss1-subtitle--m {
    display: none;
}

.ss1-desc {
    margin: auto 0 0;
    padding-bottom: 45px;
    line-height: 150%;
}

.ss1-desc--m:not(.ss1-desc) {
    display: none;
}

@media screen and (max-width: 1024px) {
    .ss1-title--m {
        margin-bottom: 10px;
        font-size: var(--fz-title-s);
        letter-spacing: 3.6px;
    }

    .ss1-subtitle--m {
        margin-bottom: 30px;
    }

    .ss1-title,
    .ss1-subtitle {
        display: none;
    }

    .ss1-title--m,
    .ss1-subtitle--m {
        display: block;
    }

    .ss1-desc {
        display: none;
    }

    .ss1-desc--m,
    .ss1-desc--m:not(.ss1-desc) {
        display: block;
        margin: auto 0 0;
        padding-top: 5px;
        padding-bottom: 45px;
        line-height: 150%;
    }
}

/*add :: fz*/
html[lang="ko"] .sec--2 .ss1-desc {
    line-height: 170%;
}

@media screen and (max-width: 1680px) {
    .sec--2 .sec-title {
        font-size: 32px;
        letter-spacing: 4.8px;
    }

    .sec--2 .sec-subtitle {
        font-size: 20px;
    }

    .sec--2 .ss1-desc {
        font-size: 12px;
    }

    html[lang="ko"] .sec--2 .sec-title {
        font-size: 30px;
        letter-spacing: 0.6px;
    }

    html[lang="ko"] .sec--2 .sec-subtitle {
        font-size: 20px;
    }

    html[lang="ko"] .sec--2 .ss1-desc {
        font-size: 12px;
    }
}

@media screen and (max-width: 1024px) {
    .sec--2 .sec-title {
        font-size: var(--fz-title);
        letter-spacing: 5.4px;
    }

    .sec--2 .sec-subtitle {
        font-size: var(--fz-subtitle);
    }

    .sec--2 .ss1-desc {
        font-size: var(--fz);
    }

    html[lang="ko"] .sec--2 .sec-title {
        font-size: 24px;
        line-height: 130%;
        letter-spacing: 0.48px;
    }

    html[lang="ko"] .sec--2 .sec-subtitle {
        font-size: 16px;
    }

    html[lang="ko"] .sec--2 .ss1-desc {
        font-size: 12px;
        line-height: 170%;
    }
}

/*sec 3*/
.sec--3 > .sec-inner {
    height: 150vh;
}

.ss2-item {
    display: grid;
    justify-content: center;
    grid-template: 1.25fr min-content 162px 1fr / none;
    overflow: hidden;
    height: 100%;
    background: var(--wh);
}

.ss2-item:before,
.ss2-item:after {
    content: '';
    display: block;
}

.ss2-desc {
    margin-top: 32px;
    max-width: 980px;
    line-height: 150%;
}

.ss2-title {
    font-feature-settings: 'liga' off;
    letter-spacing: 5.4px;
}

.ss2-title,
.ss2-subtitle {
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .sec--3 > .sec-inner {
        padding: 50px 15px 45px;
    }

    .ss2-item {
        padding: 0 0;
        grid-template: 1fr min-content 1fr 45px / none;
    }

    .ss2-title-wrapper {
        margin: auto;
        max-width: 260px;
    }

    .ss2-title {
        height: 60px;
        letter-spacing: 3.6px;

        display: flex;
        flex-direction: column-reverse;
    }

    .ss2-subtitle {
        margin-top: 10px;
        height: 40px;
    }

    .ss2-desc {
        margin: 0;
        padding-bottom: 0;

        display: flex;
        flex-direction: column-reverse;
    }
}

@media screen and (min-width: 1025px) {
    .ss2-title {
        height: 53px;
    }

    .ss2-subtitle {
        height: 36px;
    }
}

/*swiper*/
.s-swiper {
    position: sticky;
    top: 50px;
    width: 100%;
    height: calc(100vh - 100px);
}

@media screen and (max-width: 1024px) {
    .s-swiper {
        top: 15px;
        height: calc(100vh - 80px);
    }
}

.s-swiper .s2-swiper-pagination {
    top: initial;
    bottom: 0;
    height: 3px;
}

.s-swiper .s2-swiper-pagination .swiper-pagination-progressbar-fill {
    background: var(--bk);
}

.s-swiper .s2-btn {
    z-index: 1;
    top: 50%;
    margin-top: -56px;
    transform: translateY(-50%);
    background: transparent !important;
    width: 16px;
    height: 28px;
}

.s-swiper .s2-btn > svg {
    display: block;
    width: auto;
    height: 100%;
}

.s-swiper .s2-btn:before,
.s-swiper .s2-btn:after {
    display: none;
}

@media screen and (max-width: 1024px) {
    .s-swiper .s2-swiper-pagination {
        top: initial;
        height: 1px;
    }

    .s-swiper .s2-btn {
        margin-top: -26px;
        background: transparent !important;
        width: 11px;
        height: 20px;
    }

    .s-swiper .s2-btn.s2-btn--prev {
        left: 0;
        right: initial;
    }

    .s-swiper .s2-btn.s2-btn--next {
        left: initial;
        right: 0;
    }
}

/*add :: fz*/
html[lang="ko"] .sec--3 .ss2-desc {
    line-height: 170%;
}

@media screen and (max-width: 1680px) {
    .sec--3 .sec-title--s {
        font-size: 26px;
        letter-spacing: 3.9px;
    }

    .sec--3 .sec-subtitle--s {
        font-size: 16px;
    }

    .sec--3 .ss2-desc {
        font-size: 12px;
    }

    html[lang="ko"] .sec--3 .sec-title--s {
        font-size: 26px;
        letter-spacing: 1.3px;
    }

    html[lang="ko"] .sec--3 .sec-subtitle--s {
        font-size: 16px;
    }

    html[lang="ko"] .sec--3 .ss2-desc {
        font-size: 12px;
    }
}

@media screen and (max-width: 1024px) {
    .sec--3 .sec-title--s {
        font-size: var(--fz-title-s);
        letter-spacing: 3.6px;
    }

    .sec--3 .sec-subtitle--s {
        font-size: var(--fz-subtitle-s);
    }

    .sec--3 .ss2-desc {
        font-size: var(--fz);
    }

    html[lang="ko"] .sec--3 .sec-title--s {
        font-size: 24px;
        line-height: 130%;
        letter-spacing: 0.48px;
    }

    html[lang="ko"] .sec--3 .sec-subtitle--s {
        font-size: 16px;
    }

    html[lang="ko"] .sec--3 .ss2-desc {
        font-size: 12px;
        line-height: 170%;
    }
}

/*profile*/
.sec--profile {
    background: var(--bg-f-1);
}

.profile-wrapper {
    display: flex;
    column-gap: 120px;
    padding-top: 80px;
    padding-bottom: 20px;
    width: 100%;
}

@media screen and (max-width: 1680px) {
    .profile-wrapper {
        column-gap: 60px;
    }
}

@media screen and (max-width: 1024px) {
    .profile-wrapper {
        display: block;
        column-gap: 0;
        padding-top: 100px;
        padding-bottom: 0;
    }
}

.profile-img {
    width: auto;
    min-width: 580px;
    height: calc(100vh - (80px + 100px + 20px));
}

@media screen and (max-width: 1024px) {
    .profile-img {
        width: 100%;
        min-width: auto;
        max-width: 308px;
        height: auto;
    }
}

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

.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.profile-title {
    margin: auto;
    max-width: 850px;
    font-size: 32px;
    letter-spacing: 1.6px;
}

.profile-title--m {
    display: none;
}

.profile-detail > .name {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.profile-detail > .name > div:first-child {
    font-size: 30px;
    letter-spacing: 4.5px;
    padding-right: 15px;
}

.profile-detail > .name > div:last-child {
    position: relative;
    padding-left: 15px;
    letter-spacing: 1.2px;
}

.profile-detail > .name > div:last-child:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: -0.75px;
    width: 1.5px;
    height: 15px;
    background: var(--bk);

    transform: translateY(-50%);
}

.bio {
    line-height: 150%;
    white-space: pre-wrap;
    font-size: 16px;
}

@media screen and (max-width: 1024px) {
    .profile-title {
        display: none;
    }

    .profile-title--m {
        display: block;
        margin-bottom: 85px;
        padding: 0 15px;
        text-align: center;
        letter-spacing: 3.6px;
    }

    .profile-detail {
        margin-top: 28px;
    }

    .profile-detail > .name {
        display: block;
        margin-bottom: 20px;
    }

    .profile-detail > .name > div:first-child {
        font-size: 22px;
        letter-spacing: 3.3px;
        line-height: 160%;
    }

    .profile-detail > .name > div:last-child {
        line-height: 160%;
    }

    .bio {
        padding-bottom: 12px;
    }
}

/*add :: fz*/
html[lang="ko"] .sec--profile .bio {
    line-height: 170%;
}

@media screen and (max-width: 1680px) {
    .profile-title.sec-title--s {
        font-size: 22px;
        line-height: 150%;
        letter-spacing: 1.1px;
    }

    .sec--profile .profile-detail > .name > div:first-child {
        font-size: 20px;
        line-height: 150%;
        letter-spacing: 3px;
    }

    .sec--profile .profile-detail > .name > div:last-child {
        font-size: 18px;
        line-height: 150%;
        letter-spacing: 0.9px;
    }

    .sec--profile .bio {
        font-size: 10px;
        line-height: 150%;
    }

    html[lang="ko"] .profile-title.sec-title--s {
        font-size: 22px;
        line-height: 150%;
        letter-spacing: 1.1px;
    }

    html[lang="ko"] .sec--profile .profile-detail > .name > div:first-child {
        font-size: 20px;
        line-height: 150%;
        letter-spacing: 3px;
    }

    html[lang="ko"] .sec--profile .profile-detail > .name > div:last-child {
        font-size: 18px;
        letter-spacing: 0.36px;
    }

    html[lang="ko"] .sec--profile .bio {
        font-size: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .profile-title.sec-title--s {
        font-size: 24px;
        letter-spacing: 1.2px;
    }

    .sec--profile .profile-detail > .name > div:first-child {
        font-size: 22px;
        line-height: 160%;
        letter-spacing: 3.3px;
    }

    .sec--profile .profile-detail > .name > div:last-child {
        font-size: 16px;
        line-height: 160%;
    }

    .sec--profile .bio {
        font-size: 10px;
    }

    html[lang="ko"] .profile-title.sec-title--s {
        font-size: 24px;
        line-height: 150%;
        letter-spacing: 1.2px;
    }

    html[lang="ko"] .sec--profile .profile-detail > .name > div:first-child {
        font-size: 22px;
        line-height: 160%;
        letter-spacing: 3.3px;
    }

    html[lang="ko"] .sec--profile .profile-detail > .name > div:last-child {
        font-size: 16px;
        line-height: 160%;
    }

    html[lang="ko"] .sec--profile .bio {
        font-size: 10px;
    }
}

/*info*/
.sec--info {
    background: var(--bg-f-2);
}

.info-wrapper {
    display: flex;
    column-gap: 120px;
    padding-top: 80px;
    padding-bottom: 30px;
    width: 100%;
}

@media screen and (max-width: 1680px) {
    .info-wrapper {
        column-gap: 60px;
    }
}

.info-col:first-child {
    width: auto;
    min-width: 580px;
}

.info-col:last-child {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
}

.map iframe {
    width: 100%;
    min-width: 580px;
}

@media screen and (max-width: 1024px) {
    .info-wrapper {
        display: block;
        column-gap: 0;
        padding-top: 90px;
        padding-bottom: 0;
        margin-bottom: 60px;
    }

    .info-col:first-child {
        min-width: auto;
    }

    .map iframe {
        /*width: calc(100% - 30px);*/
        height: 100vw;

        min-width: auto;
    }

    .info-col + .info-col {
        margin-top: 60px;
    }
}

.info-cont-title {
    margin-bottom: 60px;
    letter-spacing: 4.2px;
}

.contact-list {
    display: flex;
    column-gap: 36px;
    width: 100%;
}

@media screen and (max-width: 1680px) {
    .contact-list {
        column-gap: 24px;
    }
}

@media screen and (max-width: 1024px) {
    .contact-list {
        column-gap: 20px;
    }
}

.contact-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-item > span {
    display: block;
    text-align: center;
    height: fit-content;
    pointer-events: none;
}

.contact-item > .contact-title {
    font-size: var(--fz);
    line-height: 150%;
    letter-spacing: 1.1px;
}

.contact-item > .contact-id {
    color: rgba(51, 31, 26, 0.60);
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 1.8px;
}

.contact-item > .contact-id:before {
    content: 'ID: ';
}

.bh-list {
    padding-bottom: 26px;
}

.bh-item {
    display: grid;
    grid-template-columns: 176px 1fr;
    gap: 0 30px;
}

.address {
    margin-top: 20px;
}

@media screen and (max-width: 1024px) {
    .info-cont + .info-cont {
        margin-top: 60px;
    }

    .info-cont-title {
        margin-bottom: 36px;
    }

    .contact-list {
        display: block;
    }

    .contact-item + .contact-item {
        margin-top: 10px;
    }

    .bh-item {
        grid-template-columns: 70px 1fr;
        gap: 0 49px;
    }

    .address {
        margin-top: 10px;
    }
}

.bh-item > div {
    line-height: 150%;
}

.call-info {
    margin-top: 20px;
    font-size: var(--fz-s);
}

/*add :: fz && size*/
@media screen and (max-width: 1680px) {
    .info-cont-title.sec-subtitle {
        font-size: 22px;
        letter-spacing: 3.3px;
    }

    .contact-item > .contact-title {
        font-size: 14px;
        letter-spacing: 0.7px;
    }

    .contact-item > .contact-id {
        font-size: 9px;
        line-height: 150%;
        letter-spacing: 1.35px;
    }

    .call-info {
        margin-top: 12px;
        font-size: 12px;
        line-height: 150%;
    }

    .bh-item {
        grid-template-columns: 110px 1fr;
        gap: 0 30px;
    }

    .bh-item > div {
        font-size: 14px;
    }

    html[lang="ko"] .address {
        font-size: 14px;
    }

    .map iframe {
        min-width: 460px;
    }
}

@media screen and (max-width: 1024px) {
    .sec--2 .sec-title {
        font-size: var(--fz-title);
        letter-spacing: 5.4px;
    }

    .sec--2 .sec-subtitle {
        font-size: var(--fz-subtitle);
    }

    .sec--2 .ss1-desc {
        font-size: var(--fz);
    }

    html[lang="ko"] .sec--2 .sec-title {
        font-size: 24px;
        line-height: 130%;
        letter-spacing: 0.48px;
    }

    html[lang="ko"] .sec--2 .sec-subtitle {
        font-size: 16px;
    }

    html[lang="ko"] .sec--2 .ss1-desc {
        font-size: 12px;
        line-height: 170%;
    }
}

/*interaction*/
.interaction-sec > div {
    opacity: 0;
    transform: translateY(10px);
    transition: all 800ms 300ms ease;
}

.interaction-sec > div.in-view {
    opacity: 1;
    transform: translateY(0);
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: rgba(240, 238, 229, 0.80);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: difference;

    transition: transform 300ms ease-in-out;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.8);
}

@media screen and (max-width: 1024px) {
    .custom-cursor {
        display: none !important;
    }
}

/*loading*/
#loading-overlay {
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--wh);
    transition: opacity 500ms ease;
}

#loading-overlay.loaded {
    opacity: 0;
    pointer-events: none;
}

.overlay-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

#progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    overflow: hidden;
}

#progress-fill {
    width: 0%;
    height: 100%;
    background: var(--bk);
    transition: width 200ms ease;
}

.loading-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1440px) {
    #loading-overlay {
        height: calc(var(--vh, 1vh) * 100);
    }
}
