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

html, body {
    width: 100%;
    height: 100vh;
    background: #ffffff;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    color: #000000;
    overflow: hidden;
}

body {
    opacity: 0;
}

body.is-loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.logo {
    width: 100%;
    padding: 25px 0 0;
    text-align: center;
}

.logo__image {
    height: 34px;
    width: auto;
    display: inline-block;
    transform: translateX(8%);
}

.categories {
    position: absolute;
    top: 190px;
    left: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.category {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 26px;
    color: #000000;
    text-decoration: none;
    padding: 1px 8px;
    line-height: 1.05;
    display: inline-block;
    cursor: pointer;
    transition: padding-left 0.45s cubic-bezier(0.22, 1, 0.36, 1), padding-right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.category--shop {
    background: rgb(232, 26, 41);
    position: relative;
    overflow: hidden;
}

.stripe {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ffffff;
    left: calc(70px + var(--i) * 12px);
    transform: translateY(-110%);
    transition: transform 0.25s ease-in;
    pointer-events: none;
}


.category--look {
    background: rgb(224, 255, 237);
    position: relative;
    overflow: hidden;
}

.dot {
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgb(236, 86, 105);
    left: calc(70px + var(--i) * 60px);
    transform: translate(0, -300%);
    transition: transform 0.25s ease-in;
    pointer-events: none;
}


.category--about {
    background: rgb(184, 135, 196);
}

.hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero__image {
    width: 559px;
    max-width: 37.26vw;
    height: auto;
    display: block;
    border: 5px solid #000000;
}

.headline {
    position: absolute;
    bottom: 58px;
    left: 0;
    width: 100%;
    padding: 0 40px;
    z-index: 2;
}

.headline__line {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(96px, 11vw, 220px);
    line-height: 0.78;
    letter-spacing: -0.01em;
    white-space: nowrap;
    text-align: center;
}

.headline__char {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.category__char {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.about-page__char {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.headline__line + .headline__line {
    margin-top: 0;
}

.logo {
    position: relative;
    z-index: 100;
    pointer-events: none;
}

.logo__link {
    pointer-events: auto;
    display: inline-block;
}

.is-look-active .hero,
.is-look-active .headline,
.is-about-active .hero,
.is-about-active .headline,
.is-shop-active .hero,
.is-shop-active .headline {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.175s ease;
}

.is-look-active .category--look,
.is-about-active .category--about,
.is-shop-active .category--shop {
    pointer-events: none;
}

.categories {
    z-index: 45;
}

.categories {
    transition: opacity 1.05s ease;
}

body.is-categories-out .categories {
    opacity: 0;
    transition: none;
}

@keyframes categoriesFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background: rgb(224, 255, 237);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
}

.transition-overlay-text {
    position: fixed;
    z-index: 51;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 26px;
    color: #000000;
    line-height: 1.05;
    box-sizing: border-box;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
}

.transition-overlay-text.is-visible {
    opacity: 1;
}

.transition-overlay__char {
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .transition-overlay-text {
        position: absolute;
        font-size: 20px;
        padding: 0 6px;
    }
}

.transition-overlay--about {
    background: rgb(184, 135, 196);
}

.transition-overlay--shop {
    background: rgb(232, 26, 41);
}

.transition-overlay--shop.is-sliding-out {
    transform: translateY(100%);
}

.transition-overlay.is-active {
    opacity: 1;
    transition: left 0.56s ease-in-out, width 0.56s ease-in-out,
                top 0.56s ease-in-out, height 0.56s ease-in-out,
                opacity 0.21s ease,
                transform 0.7s ease-in;
}

.look-page {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgb(224, 255, 237);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.175s ease;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    touch-action: manipulation;
}

.look-page .marquee__img,
.look-page .look-vertical__img,
.marquee__img,
.look-vertical__img,
.look-lightbox {
    touch-action: manipulation;
}

.look-page::-webkit-scrollbar {
    display: none;
}

.scroll-spacer {
    height: 2400vh;
    pointer-events: none;
}

.is-look-active .look-page {
    opacity: 1;
    pointer-events: auto;
}

.marquee {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 66.6667vh;
    overflow: hidden;
    z-index: 41;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.175s ease;
}

.is-look-active .marquee {
    opacity: 1;
}

.is-look-active .marquee__img,
.is-look-active .look-vertical__img {
    pointer-events: auto;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><circle cx='12' cy='12' r='8' fill='black' fill-opacity='0.4'/></svg>") 12 12, pointer;
}

.about-page {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgb(184, 135, 196);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.175s ease;
}

.is-about-active .about-page {
    opacity: 1;
    pointer-events: auto;
}

.about-page__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-page__image {
    width: 540px;
    max-width: 36vw;
    height: auto;
    display: block;
}

.about-page__signature {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -33.3333%);
    width: 90px;
    height: auto;
    display: block;
}

.about-page__text {
    margin-top: 56px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: #000000;
    text-align: center;
}

.marquee__track {
    display: flex;
    align-items: flex-end;
    height: 100%;
    width: max-content;
    transform: translateX(0);
    will-change: transform;
}

.marquee__img {
    width: auto;
    display: block;
    flex: 0 0 auto;
    margin-left: -0.33px;
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center center;
    position: relative;
}

@media (hover: hover) {
    .is-look-active .marquee__img:hover {
        transform: translateY(-20px);
        z-index: 2;
        box-shadow: 0 22px 36px rgba(0, 0, 0, 0.2);
    }
}

.look-vertical {
    display: none;
}

@media (hover: none) {
    .category:hover {
        padding-right: 8px;
        transition: padding-right 0.4s ease-out;
    }
    .category--shop:hover .stripe {
        transform: translateY(-110%);
        transition: transform 0.25s ease-in;
        transition-delay: 0s;
    }
    .category--look:hover .dot {
        transform: translate(0, -300%);
        transition: transform 0.25s ease-in;
        transition-delay: 0s;
    }
}

@media (max-width: 768px) {
    html, body {
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .look-page,
    .about-page {
        position: static;
        opacity: 1;
        pointer-events: auto;
        overflow: visible;
        background: transparent;
        display: none;
        transition: none;
    }

    body.is-look-active .look-page,
    body.is-about-active .about-page {
        display: block;
    }

    body.is-look-active {
        background: rgb(224, 255, 237);
    }

    body.is-about-active {
        background: rgb(184, 135, 196);
    }

    body.is-shop-active {
        background: rgb(232, 26, 41);
    }

    body.is-look-active .hero,
    body.is-about-active .hero,
    body.is-shop-active .hero,
    body.is-look-active .headline,
    body.is-about-active .headline,
    body.is-shop-active .headline {
        display: none;
    }

    .about-page__inner {
        position: static;
        transform: none;
        padding: 120px 16px 60px;
    }

    .about-page__signature {
        position: static;
        transform: none;
        margin: 32px auto 60px;
    }

    .logo {
        padding: 28px 0 0;
    }

    .logo__image {
        height: 28px;
    }

    .categories {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 40px auto 0;
        padding: 0 12px;
        max-width: 520px;
    }

    .category {
        font-size: 20px;
        padding: 1px 6px;
    }

    .category--shop { order: 1; }
    .category--about { order: 2; }
    .category--look { order: 3; }

    .category:hover {
        padding-right: 6px;
        transition: none;
    }

    .stripe,
    .dot {
        display: none;
    }

    .hero {
        position: static;
        transform: none;
        margin: 130px auto 0;
        text-align: center;
        z-index: auto;
    }

    .hero__image {
        width: 70vw;
        max-width: none;
        margin: 0 auto;
        border-width: 3px;
    }

    .headline {
        position: static;
        margin-top: -40px;
        padding: 0 16px 60px;
        z-index: auto;
    }

    .headline__line {
        font-size: 96px;
        line-height: 0.7;
        white-space: normal;
        text-align: center;
    }

    .headline__word {
        display: block;
    }

    .marquee {
        display: none;
    }

    .scroll-spacer {
        display: none;
    }

    .look-vertical {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 80px 0 60px;
        gap: 0;
        position: relative;
    }

    .look-vertical::before {
        content: '2026.6 spring';
        display: block;
        position: absolute;
        top: 30px;
        right: 16px;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 400;
        font-style: italic;
        font-size: 14px;
        line-height: 1.05;
        color: #000000;
        text-decoration: underline;
        text-underline-offset: 3px;
        text-decoration-thickness: 1px;
        pointer-events: none;
    }

    .look-vertical__img {
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .about-page__image {
        width: 70vw;
        max-width: 520px;
    }

    .about-page__text {
        font-size: 15px;
        margin-top: 40px;
    }
}


/* === MUTE TOGGLE + 사운드 언락 힌트 =========== */
.mute-toggle {
    position: fixed;
    top: 30px;
    right: 40px;
    z-index: 120;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: #000000;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    opacity: 0;
    transition: opacity 0.5s ease;
}
body.is-loaded .mute-toggle {
    opacity: 1;
}

.mute-toggle__icon {
    display: block;
}
/* 기본(소리 켜짐): on 아이콘 표시, off 숨김 */
.mute-toggle__icon--off { display: none; }
/* 음소거 상태: off 아이콘 표시 */
body.is-muted .mute-toggle__icon--on { display: none; }
body.is-muted .mute-toggle__icon--off { display: block; }

/* look 페이지에선 사진에 묻히지 않게 블렌드 */
body.is-look-active .mute-toggle {
    color: #ffffff;
    mix-blend-mode: difference;
}

@media (max-width: 768px) {
    .mute-toggle {
        display: none;   /* 모바일에서는 mute 토글 숨김 */
    }
}

/* === LOOK PAGE LABEL — "2026.6 spring" =========== */
.look-label {
    position: fixed;
    top: 196px;
    right: 40px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 18px;
    line-height: 1.05;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    z-index: 46;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    cursor: default;
}

body.is-look-active .look-label {
    opacity: 1;
    pointer-events: auto;
}

.look-label__char {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

@media (max-width: 768px) {
    .look-label {
        display: none;
    }
}

/* === LOOK LIGHTBOX =========== */
.look-lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'><g fill='none' stroke='white' stroke-opacity='0.6' stroke-width='1' stroke-linecap='round'><line x1='6' y1='6' x2='14' y2='14'/><line x1='14' y1='6' x2='6' y2='14'/></g></svg>") 10 10, zoom-out;
}

.look-lightbox.is-open {
    pointer-events: auto;
    opacity: 1;
}

.look-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.look-lightbox__stage {
    position: relative;
    width: 70vw;
    height: 86vh;
    transform: scale(0.92);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.look-lightbox.is-open .look-lightbox__stage {
    transform: scale(1);
}

/* 두 이미지 모두 stage 안에서 정중앙에 겹침, 비율 유지 */
.look-lightbox__image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 70vw;
    max-height: 86vh;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.32s ease;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.look-lightbox.is-open .look-lightbox__image.is-current {
    opacity: 1;
}

.marquee__img,
.look-vertical__img {
    cursor: zoom-in;
}

/* 라이트박스 좌우 네비게이션 — 미니멀 */
.look-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 16px;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.look-lightbox__nav svg {
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
    .look-lightbox__nav:hover svg {
        transform: scale(1.25);
    }
}

.look-lightbox__nav svg {
    display: block;
}

.look-lightbox__nav--prev {
    left: 24px;
}

.look-lightbox__nav--next {
    right: 24px;
}

@media (max-width: 768px) {
    .look-lightbox__stage {
        width: 92vw;
        height: 80vh;
    }
    .look-lightbox__image {
        max-width: 92vw;
        max-height: 80vh;
    }
    .look-lightbox__nav {
        padding: 10px;
    }
    .look-lightbox__nav--prev { left: 6px; }
    .look-lightbox__nav--next { right: 6px; }
    .look-lightbox__nav svg {
        width: 24px;
        height: 24px;
        stroke-width: 1;
    }
}
