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

:root {
    --cream: #F5F0E8;
    --sand: #D4C5A9;
    --earth: #694939;
    --deep: #2A2218;
    --forest: #39592E;
    --mist: #B8C4BB;
    --gold: #C98B4A;
    --white: #FDFAF5;
}

html {
    scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

body {
    background: var(--deep);
    color: var(--cream);
    overflow-x: clip;
}

body.page-main {
    cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 169, 110, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body:hover .cursor-ring {
    opacity: 1;
}

body:not(.page-main) .cursor,
body:not(.page-main) .cursor-ring {
    display: none !important;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: normal;
}

nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(42, 34, 24, 0.7) 0%, transparent 100%);
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.site-nav {
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.site-nav.is-scrolled {

    background: rgba(61, 83, 55, 0.85);
    backdrop-filter: blur(20px);
}

.site-nav.is-scrolled::before {
    opacity: 0;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--cream);
    text-decoration: none;
    position: relative;
    display: block;
    width: 65px;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-logo span {
    font-style: italic;
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 38px;
    list-style: none;
    position: relative;
}

.nav-links a {
    font-family: 'Montserrat', serif;
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    color: var(--cream);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

@keyframes navIntroDown {
    from {
        opacity: 0;
        transform: translate3d(0, -14px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.page-main .nav-logo {
    animation: navIntroDown 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-main .nav-links li {
    animation: navIntroDown 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-main .nav-links li:nth-child(1) {
    animation-delay: 0.14s;
}

.page-main .nav-links li:nth-child(2) {
    animation-delay: 0.22s;
}

.page-main .nav-links li:nth-child(3) {
    animation-delay: 0.3s;
}

.page-main .nav-links li:nth-child(4) {
    animation-delay: 0.38s;
}

.page-main .nav-links li:nth-child(5) {
    animation-delay: 0.46s;
}

.page-main .nav-links li:nth-child(6) {
    animation-delay: 0.54s;
}

.page-main .nav-toggle {
    animation: navIntroDown 0.72s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.nav-toggle {
    display: none;
    position: relative;
    z-index: 140;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    overflow: visible;
}

.nav-toggle-box {
    position: relative;
    display: block;
    width: 22px;
    height: 16px;
    margin: 0 auto;
}

.nav-toggle-bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    margin: 0;
    background: var(--cream);
    transform-origin: center;
    transition: transform 0.32s ease, opacity 0.2s ease, top 0.32s ease, bottom 0.32s ease;
}

.nav-toggle-bar:nth-child(1) {
    top: 0;
}

.nav-toggle-bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.nav-toggle-bar:nth-child(3) {
    bottom: 0;
}

.nav-overlay {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: -20%;
    background:
        linear-gradient(135deg, rgba(61, 74, 58, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 60%, rgba(42, 34, 24, 0.5) 0%, transparent 50%),
        linear-gradient(to bottom, rgba(42, 34, 24, 0.2) 0%, rgba(42, 34, 24, 0.85) 100%);
    will-change: transform;
}

.hero-bg-img {
    position: absolute;
    inset: -20%;
    background:
        url('../img/visual03.jpg?v=1') center/cover no-repeat;
    will-change: transform;
    filter: brightness(0.45) saturate(0.8);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    will-change: transform, opacity;
}

.hero-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(72px, 10vw, 140px);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hero-sub {
    font-family: 'Noto Serif KR', serif;
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 4px;
    color: var(--sand);
    margin-bottom: 64px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 8px;
    transition: color 0.3s, gap 0.3s;
}

.hero-cta:hover {
    color: var(--gold);
    gap: 24px;
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

.scroll-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--sand);
    writing-mode: vertical-rl;
}

/* INTRO */
.intro {
    position: relative;
    padding: 160px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    background: var(--deep);
    overflow: hidden;
}

.intro::before {
    content: '海';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 400px;
    color: rgba(201, 169, 110, 0.04);
    pointer-events: none;
    line-height: 1;
}

.intro-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.intro-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.intro-heading {
    font-family: 'Noto Sans KR', serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.intro-heading em {
    font-style: normal;
    color: var(--gold);
}

.intro-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    color: var(--sand);
    margin-bottom: 0;
}

.intro-img-wrap {
    position: relative;
    height: 600px;
}

.intro-img-inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 2px;
}

.intro-img {
    position: absolute;
    left: 0;
    right: 0;
    top: -8%;
    height: 116%;
    background: url('../img/intro01.jpg') center/cover no-repeat;
}

.intro-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 34, 24, 0.2) 0%, transparent 60%);
}

.intro-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    border: 1px solid var(--gold);
    border-radius: 2px;
    z-index: -1;
}

.stats-row {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(212, 197, 169, 0.15);
}

.stat {
    text-align: left;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.stat-num span {
    font-family: 'Montserrat', sans-serif;
}

.stat-label {

    font-size: 10px;
    letter-spacing: 2px;
    color: var(--sand);
    margin-top: 8px;
}

/* ROOMS SHOWCASE */
.rooms-showcase-section {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 620px;
    padding: 0;
    background: var(--deep);
    color: var(--cream);
    overflow: hidden;
}

.rooms-showcase-section .rooms-showcase {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    transform-origin: center center;
    transform: translate3d(0, 0, 0) scale(0.1);
    backface-visibility: hidden;
    border-radius: 10px;
    contain: layout paint;
    transition:
        transform 1.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-radius 1.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, border-radius;
}

.rooms-showcase-section.is-rooms-expanded .rooms-showcase {
    transform: translate3d(0, 0, 0) scale(1);
    border-radius: 0;
}

.rooms-showcase-top {
    position: absolute;
    top: clamp(126px, 12svh, 152px);
    left: 60px;
    right: 60px;
    z-index: 4;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
}

.rooms-showcase-section.is-rooms-expanded.is-rooms-ready .rooms-showcase-top,
.rooms-showcase-section.is-rooms-expanded.is-rooms-ready .rooms-showcase-controls {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.rooms-showcase-section.is-rooms-expanded.is-rooms-ready .rooms-showcase-controls {
    pointer-events: auto;
}

.rooms-showcase-section:not(.is-rooms-ready) .rooms-showcase-num,
.rooms-showcase-section:not(.is-rooms-ready) .rooms-showcase-title,
.rooms-showcase-section:not(.is-rooms-ready) .rooms-showcase-desc {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
}

.rooms-showcase-label {
    color: var(--gold);
    margin-bottom: 16px;
}

.rooms-showcase-label::before {
    background: var(--gold);
}

.rooms-showcase-heading {
    font-family: 'Montserrat', serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.14;
    color: var(--cream);
}

.rooms-showcase-heading em {
    font-family: 'Noto Sans KR', serif;
    font-style: normal;
    font-weight: 500;
    color: var(--gold);
}

.rooms-showcase-viewport {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    touch-action: pan-y;
    cursor: grab;
}

.rooms-showcase-viewport.is-dragging {
    cursor: grabbing;
}

.rooms-showcase-track {
    position: relative;
    display: block;
    height: 100%;
}

.rooms-showcase-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1.05s ease;
    will-change: opacity;
}

.rooms-showcase-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.rooms-showcase-slide.is-leaving {
    opacity: 0;
    z-index: 1;
}

.rooms-showcase-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, 0, 0) scale(1.095);
    backface-visibility: hidden;
    transition: transform 4.8s ease;
    user-select: none;
    -webkit-user-drag: none;
    user-drag: none;
    will-change: transform;
}

.rooms-showcase-slide.is-active .rooms-showcase-img {
    transform: translate3d(0, 0, 0) scale(1);
}

.rooms-showcase-shade {
    position: absolute;
    inset: 0;
    /* background:
        linear-gradient(to top, rgba(18, 14, 10, 0.78) 0%, rgba(18, 14, 10, 0.25) 42%, rgba(18, 14, 10, 0.12) 100%),
        linear-gradient(to right, rgba(18, 14, 10, 0.45) 0%, transparent 55%); */
    pointer-events: none;
}

.rooms-showcase-info {
    position: absolute;
    left: 60px;
    bottom: 86px;
    z-index: 2;
    max-width: min(560px, 78vw);
    padding-right: 24px;
}

.rooms-showcase-num,
.rooms-showcase-title,
.rooms-showcase-desc {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.rooms-showcase-slide.is-active .rooms-showcase-num {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.15s;
}

.rooms-showcase-slide.is-active .rooms-showcase-title {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.3s;
}

.rooms-showcase-slide.is-active .rooms-showcase-desc {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition-delay: 0.45s;
}

.rooms-showcase-slide.is-leaving .rooms-showcase-num,
.rooms-showcase-slide.is-leaving .rooms-showcase-title,
.rooms-showcase-slide.is-leaving .rooms-showcase-desc {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
    transition-duration: 0.35s;
    transition-delay: 0s;
}

.rooms-showcase-num {
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    color: var(--gold);
}

.rooms-showcase-title {
    margin-bottom: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 400;
    line-height: 1;
    color: var(--cream);
}

.rooms-showcase-title em {
    font-style: italic;
    /* color: var(--gold); */
}

.rooms-showcase-title span {
    font-size: 20px;
}

.rooms-showcase-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(245, 240, 232, 0.82);
    white-space: nowrap;
}

.rooms-showcase-controls {
    position: absolute;
    right: 60px;
    bottom: 86px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition: opacity 0.45s ease 0.12s, transform 0.45s ease 0.12s;
    pointer-events: none;
}

.rooms-showcase-progress {
    position: relative;
    display: block;
    width: clamp(80px, 8vw, 132px);
    height: 1px;
    margin: 0 6px;
    overflow: hidden;
    background: rgba(245, 240, 232, 16);
}

.rooms-showcase-progress-bar {
    position: absolute;
    inset: 0;
    display: block;
    transform: scaleX(0);
    transform-origin: left center;
    background: var(--gold);
}

.rooms-showcase-progress-bar.is-running {
    animation: roomsProgressFill var(--rooms-progress-duration, 3800ms) linear forwards;
}

@keyframes roomsProgressFill {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.rooms-showcase-btn {
    border-color: rgba(245, 240, 232, 0.28);
    color: var(--cream);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.rooms-showcase-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--deep);
    transform: translateY(-2px);
}

.rooms-showcase-count {
    min-width: 72px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-align: center;
    color: rgba(245, 240, 232, 0.72);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.rooms-showcase-count.is-changing {
    animation: roomsCountPulse 0.36s ease;
}

@keyframes roomsCountPulse {
    0% {
        opacity: 0;
        transform: translate3d(0, 8px, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* ROOMS (legacy gallery) */
.rooms {
    padding: 160px 0;
    background: var(--white);
    color: var(--deep);
    overflow: hidden;
}

.rooms-header {
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--earth);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--earth);
}

.rooms-title {
    font-family: 'Noto Sans KR', serif;
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 300;
    line-height: 1.3;
    color: var(--deep);
}

.rooms-title em {
    font-style: normal;
    color: var(--earth);
}

.rooms-nav-btn {
    display: flex;
    gap: 12px;
}

.btn-arrow {
    width: 52px;
    height: 52px;
    border: 1px solid var(--sand);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    transition: all 0.3s;
    color: #fff;
}

.btn-arrow:hover {
    background: var(--deep);
    color: var(--cream);
    border-color: var(--deep);
}

.rooms-track {
    display: flex;
    gap: 24px;
    padding: 0 60px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.rooms-track::-webkit-scrollbar {
    display: none;
}

.room-card {
    flex-shrink: 0;
    width: 400px;
    scroll-snap-align: start;
}

.room-img {
    height: 500px;
    overflow: hidden;
    position: relative;
    margin-bottom: 28px;
}

.room-gallery-trigger {
    cursor: none;
    border: none;
    padding: 0;
    background: none;
    width: 100%;
    text-align: left;
}

.room-gallery-trigger:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}

.room-img-zoom {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 3;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(42, 34, 24, 0.65);
    padding: 10px 14px;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s, transform 0.35s;
    pointer-events: none;
}

.room-gallery-trigger:hover .room-img-zoom,
.room-gallery-trigger:focus-visible .room-img-zoom {
    opacity: 1;
    transform: translateY(0);
}

.room-gallery-trigger::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(42, 34, 24, 0);
    transition: background 0.35s;
    z-index: 2;
    pointer-events: none;
}

.room-gallery-trigger:hover::after,
.room-gallery-trigger:focus-visible::after {
    background: rgba(42, 34, 24, 0.18);
}

/* ROOM LIGHTBOX */
.room-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.room-lightbox[hidden] {
    display: none !important;
}

.room-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 21, 14, 0.92);
    backdrop-filter: blur(12px);
}

.room-lightbox-panel {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
}

.room-lightbox-close,
.room-lightbox-nav {
    position: absolute;
    z-index: 4;
    border: 1px solid rgba(212, 197, 169, 0.25);
    background: rgba(42, 34, 24, 0.75);
    color: var(--cream);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.room-lightbox-close:hover,
.room-lightbox-nav:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.room-lightbox-close {
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    font-size: 28px;
    line-height: 1;
}

.room-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 18px;
}

.room-lightbox-prev {
    left: -26px;
}

.room-lightbox-next {
    right: -26px;
}

.room-lightbox-figure {
    margin: 0;
}

.room-lightbox-img-wrap {
    overflow: hidden;
    border: 1px solid rgba(212, 197, 169, 0.12);
    background: var(--deep);
}

.room-lightbox-img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 180px);
    object-fit: contain;
    margin: 0 auto;
}

.room-lightbox-caption {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding-top: 24px;
}

.room-lightbox-count {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--gold);
    letter-spacing: 2px;
    flex-shrink: 0;
}

.room-lightbox-title {
    font-family: 'Noto Sans KR', serif;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: -1px;
}

body.room-lightbox-open {
    overflow: hidden;
    cursor: auto;
}

body.room-lightbox-open .cursor,
body.room-lightbox-open .cursor-ring {
    display: none !important;
}

.room-lightbox,
.room-lightbox-panel,
.room-lightbox-figure,
.room-lightbox-img-wrap,
.room-lightbox-caption {
    cursor: auto;
}

.room-lightbox-close,
.room-lightbox-nav,
.room-lightbox-backdrop {
    cursor: pointer;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.parallax-img {
    width: 100%;
    height: 115%;
    will-change: transform;
}

.parallax-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.room-card:hover .parallax-img img {
    transform: scale(1.06);
}

.room-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
    background: rgba(42, 34, 24, 0.6);
    padding: 8px 14px;
    backdrop-filter: blur(10px);
}

.room-info {
    padding: 0 4px;
    display: none;
}

.room-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--earth);
    margin-bottom: 8px;
}

.room-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--deep);
    margin-bottom: 8px;
}

.room-name em {
    font-style: italic;
}

.room-desc {
    font-size: 13px;
    font-weight: 200;
    color: var(--earth);
    line-height: 1.8;
    margin-bottom: 24px;
}

.room-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--deep);
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.room-price span {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--earth);
    font-weight: 300;
}

/* PARALLAX SCENE */
.parallax-scene {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg-layer {
    position: absolute;
    inset: -30%;
    background: url('../img/amenities02.jpg') center/cover no-repeat;
    filter: brightness(0.5) saturate(0.8);
    will-change: transform;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    /* max-width: 800px; */
    padding: 0 40px;
    will-change: transform;
}

.parallax-quote {
    font-family: 'Noto Sans KR', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    /* font-style: italic; */
    line-height: 1.5;
    letter-spacing: -4.5px;
    color: var(--cream);
    margin-bottom: 40px;
    white-space: nowrap;
}

.parallax-quote p {
    margin: 0;
    overflow: hidden;
}

.parallax-quote p span {
    display: block;
    will-change: transform, opacity;
}

.parallax-attr {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    backface-visibility: hidden;
    will-change: transform, opacity;
}

/* AMENITIES */
.amenities {
    padding: 160px 60px;
    background: #1f261e;
    /* background: var(--forest); */
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    /* border-radius: 50% 0 0% 50%; */
    background: url('../img/visual01.jpg') center/cover no-repeat;
    opacity: 0.35;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    max-width: 1200px;
}

.amenities-list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.amenity-item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(212, 197, 169, 0.12);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.amenity-icon {
    font-size: 20px;
    color: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.amenity-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 4px;
}

.amenity-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--mist);
    font-weight: 300;
}

.amenities-right {
    position: relative;
}

.amenities-img-stack {
    position: relative;
    height: 500px;
}

.a-img-1,
.a-img-2 {
    position: absolute;
    border-radius: 2px;
    overflow: hidden;
    background: center/cover no-repeat;
}

.a-img-1 {
    top: 0;
    left: 0;
    right: 60px;
    bottom: 80px;
    background-image: url('https://images.unsplash.com/photo-1571003123894-1f0594d2b5d9?w=800&q=80');
    filter: brightness(0.7);
}

.a-img-2 {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 50%;
    background-image: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=800&q=80');
    border: 4px solid var(--forest);
    filter: brightness(0.7);
}

/* GALLERY STRIP */
.gallery-strip {
    display: flex;
    flex-direction: column;
    height: calc((100vw / 5) * 3);
    overflow: hidden;
    gap: 5px;
    --gallery-columns: 5;
    --gallery-gap: 5px;
    --gallery-portrait-width: calc((100vw - (var(--gallery-gap) * (var(--gallery-columns) - 1))) / var(--gallery-columns));
    --gallery-row-height: calc(var(--gallery-portrait-width) * 3 / 2);
    --gallery-landscape-width: calc(var(--gallery-row-height) * 3 / 2);
}

.gallery-strip-row {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    min-height: 0;
    min-width: 0;
    gap: var(--gallery-gap);
}

.gallery-strip-item {
    height: 100%;
    flex: 0 1 var(--gallery-portrait-width);
    min-width: 0;
    max-width: var(--gallery-portrait-width);
    background: center/cover no-repeat;
    position: relative;
    overflow: hidden;
    cursor: none;
    transition: flex-basis 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), max-width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background-size: cover;
    will-change: flex-basis, max-width, background-position;
}

.gallery-strip-item:hover {
    flex-basis: var(--gallery-landscape-width);
    max-width: var(--gallery-landscape-width);
}

.gallery-strip-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 34, 24, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-strip-item:hover::after {
    opacity: 1;
}

.gallery-strip-label {
    position: absolute;
    bottom: 32px;
    left: 32px;
    font-family: 'Noto Sans KR', serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    color: var(--cream);
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.1s;
}

.gallery-strip-item:hover .gallery-strip-label {
    opacity: 1;
    transform: translateY(0);
}

/* LOCATION */
.location {
    padding: 160px 60px;
    background: var(--white);
    color: var(--deep);
    overflow: hidden;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.location .intro-text {
    color: var(--earth);
}

.location-info {
    margin-top: 48px;
    display: grid;
    gap: 28px;
}

.location-item {
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(42, 34, 24, 0.08);
}

.location-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.location-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.location-item p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--deep);
}

.location-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.location-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 12px 18px;
    border: 1px solid rgba(42, 34, 24, 0.15);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--deep);
    text-decoration: none;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.location-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
}

.location-map-wrap {
    position: relative;
    border: 1px solid rgba(42, 34, 24, 0.08);
    overflow: hidden;
    background: var(--cream);
    contain: layout paint;
}

.location-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* FOOD MAP */
.page-food-map .site-nav {
    background: rgba(61, 83, 55, 0.9);
    backdrop-filter: blur(20px);
}

.food-map-page {
    min-height: 100vh;
    padding: 97px 0 0;
    background: var(--white);
    color: var(--deep);
}

.food-map-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    max-width: 1240px;
    margin: 0 auto 48px;
}

.food-map-header h1 {
    margin-top: 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 7vw, 92px);
    font-weight: 300;
    line-height: 0.95;
    color: var(--deep);
}

.food-map-admin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(42, 34, 24, 0.16);
    font-size: 13px;
    color: var(--deep);
}

.food-map-sheet-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.food-map-sheet-actions .food-map-admin {
    min-height: 34px;
    padding: 0 12px;
    border-color: rgba(42, 34, 24, 0.18);
    background: var(--deep);
    color: var(--cream);
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
}

.food-map-layout {
    display: grid;
    grid-template-columns: minmax(320px, 390px) minmax(0, 1fr);
    gap: 0;
    width: 100%;
    min-height: calc(100vh - 97px);
    min-height: calc(100dvh - 97px);
    margin: 0;
}

.food-map-panel {
    position: relative;
    z-index: 2;
    height: calc(100vh - 97px);
    height: calc(100dvh - 97px);
    padding: 22px 18px;
    border: 0;
    border-right: 1px solid rgba(42, 34, 24, 0.12);
    background: #fff;
    box-shadow: 12px 0 28px rgba(42, 34, 24, 0.08);
    overflow: hidden;
}

.food-map-sheet-handle,
.food-map-sheet-title,
.food-map-sheet-count {
    display: none;
}

.food-map-sheet-head {
    margin-bottom: 18px;
}

.food-map-copy {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--earth);
}

.food-map-list {
    display: grid;
    gap: 10px;
    max-height: calc(100vh - 97px - 92px);
    max-height: calc(100dvh - 97px - 92px);
    overflow: auto;
    padding-right: 4px;
}

.food-map-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 12px;
    align-items: start;
    width: 100%;
    min-height: 68px;
    padding: 12px;
    border: none;
    /* border: 1px solid rgba(42, 34, 24, 0.08); */
    background: transparent;
    color: var(--deep);
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.food-map-item:hover,
.food-map-item.is-active {
    border-color: rgb(63 69 51);
    background: rgba(245, 240, 232, 0.58);
}

.food-map-item.is-active {
    border: 1px solid rgb(63 69 51);
    /* box-shadow: 0 10px 24px rgba(42, 34, 24, 0.08); */
}

.food-map-item-thumb {
    width: 52px;
    height: 52px;
    background-position: center;
    background-size: cover;
    border: 1px solid rgba(42, 34, 24, 0.12);
}

.food-map-item-body {
    display: block;
    min-width: 0;
}

.food-map-item-category {
    display: inline-flex;
    align-items: center;
    min-height: 19px;
    margin-bottom: 5px;
    padding: 0 7px;
    background: var(--deep);
    color: #fff;
    font-size: 10px;
    border-radius: 14px;
    line-height: 1;
}

.food-map-item strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    word-break: keep-all;
}

.food-map-item em {
    display: block;
    margin-top: 4px;
    font-style: normal;
    font-size: 12px;
    line-height: 1.5;
    color: var(--earth);
}

.food-map-item-desc {
    display: none;
    margin-top: 9px;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(42, 34, 24, 0.82);
    word-break: keep-all;
}

.food-map-item-link {
    display: none;
    margin-top: 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--deep);
}

.food-map-item.is-active .food-map-item-desc,
.food-map-item.is-active .food-map-item-link {
    display: block;
}

.food-map-empty {
    padding: 24px;
    border: 1px solid rgba(42, 34, 24, 0.08);
    color: var(--earth);
    font-size: 14px;
    line-height: 1.8;
}

.food-map-canvas-wrap {
    height: calc(100vh - 97px);
    min-height: calc(100vh - 97px);
    height: calc(100dvh - 97px);
    min-height: calc(100dvh - 97px);
    border: 0;
    overflow: hidden;
    background: var(--cream);
}

.food-map-canvas {
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 97px);
    min-height: calc(100dvh - 97px);
}

.food-map-marker {
    display: block;
    position: relative;
    width: 54px;
    height: 64px;
    filter: drop-shadow(0 10px 22px rgba(42, 34, 24, 0.22));
}

.food-map-marker-img {
    display: block;
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    border: 3px solid #fff;
    border-radius: 50%;
    background-color: #fff;
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
    overflow: hidden;
}

.food-map-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 44px;
    z-index: 0;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
}

.food-map-info {
    position: relative;
    width: min(300px, calc(100vw - 48px));
    padding-bottom: 4px;
    font-family: 'Noto Sans KR', sans-serif;
    pointer-events: auto;
}

.food-map-info-card {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(42, 34, 24, 0.1);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 18px 42px rgba(42, 34, 24, 0.16);
    border-radius: 6px;
    backdrop-filter: blur(10px);
}

/* .food-map-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(201, 139, 74, 0.2));
} */

.food-map-info-thumb {
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 1px solid rgba(42, 34, 24, 0.08);
    background: var(--cream);
}

.food-map-info-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.food-map-info-body {
    min-width: 0;
    padding-top: 2px;
}

.food-map-info-label {
    display: block;
    margin-bottom: 6px;
    /* font-family: 'Montserrat', sans-serif; */
    font-size: 9px;
    font-weight: 500;
    /* letter-spacing: 2.5px; */
    text-transform: uppercase;
    color: var(--gold);
}

.food-map-info-title {
    display: block;
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 19px;
    font-weight: 500;
    line-height: 1.15;
    color: var(--deep);
    word-break: keep-all;
}

.food-map-info-desc {
    display: -webkit-box;
    margin: 8px 0 0;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 12px;
    line-height: 1.55;
    color: var(--earth);
    word-break: keep-all;
}

.food-map-info-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* margin-top: 12px; */
    /* font-family: 'Montserrat', sans-serif; */
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--deep);
    text-decoration: none;
    transition: color .2s ease;
}

.food-map-info-link i {
    font-style: normal;
    color: var(--gold);
    transition: transform .2s ease;
}

.food-map-info-link:hover {
    color: var(--gold);
}

.food-map-info-link:hover i {
    transform: translateX(3px);
}

.food-map-info-tail {
    position: absolute;
    left: 50%;
    bottom: -1px;
    z-index: 0;
    width: 12px;
    height: 12px;
    border-right: 1px solid rgba(42, 34, 24, 0.1);
    border-bottom: 1px solid rgba(42, 34, 24, 0.1);
    background: rgba(255, 255, 255, 0.97);
    transform: translateX(-50%) rotate(45deg);
    /* box-shadow: 4px 4px 12px rgba(42, 34, 24, 0.08); */
}

/* BOOKING CTA */
.booking {
    padding: 160px 60px;
    background: var(--deep);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.booking::after {
    content: 'INQUIRY';
    position: absolute;
    bottom: -40px;
    left: -10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 180px;
    font-weight: 300;
    color: rgba(201, 169, 110, 0.04);
    letter-spacing: -5px;
    pointer-events: none;
    white-space: nowrap;
}

.booking-form {
    background: rgba(212, 197, 169, 0.05);
    border: 1px solid rgba(212, 197, 169, 0.12);
    padding: 56px;
}

.form-title {
    font-family: 'Noto Sans KR', serif;
    font-size: 28px;
    font-weight: 300;
    font-style: normal;
    letter-spacing: -2px;
    margin-bottom: 40px;
    color: var(--gold);
}

.form-row {
    margin-bottom: 28px;
}

.form-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--sand);
    display: block;
    margin-bottom: 10px;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 197, 169, 0.25);
    padding: 12px 0;
    font-family: 'Noto Sans KR', serif;
    font-size: 15px;
    font-weight: 200;
    color: var(--cream);
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--gold);
}

.form-input::placeholder {
    color: rgba(212, 197, 169, 0.35);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-btn {
    width: 100%;
    padding: 20px;
    background: var(--gold);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--deep);
    cursor: none;
    margin-top: 12px;
    transition: background 0.3s, transform 0.2s;
}

.form-btn:hover {
    background: var(--cream);
    transform: translateY(-1px);
}

/* FOOTER */
footer {
    padding: 80px 60px 48px;
    background: #1A150E;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    border-top: 1px solid rgba(212, 197, 169, 0.08);
}

.footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.footer-brand em {
    font-style: italic;
    color: var(--gold);
}

.footer-tagline {
    font-size: 13px;
    font-weight: 200;
    color: var(--sand);
    line-height: 2;
    margin-bottom: 40px;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 197, 169, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    color: var(--sand);
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 200;
    color: var(--sand);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-bottom {
    grid-column: 1 / -1;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 197, 169, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(212, 197, 169, 0.4);
}

/* REVEAL ANIMATIONS */
.parallax-item {
    will-change: transform;
}

.reveal {
    opacity: 1;
}

.reveal-delay-1 {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.3s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}

.reveal-delay-4 {
    transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {

    .parallax-item,
    .hero-content,
    .hero-bg-img,
    .intro-img,
    .parallax-bg-layer,
    .parallax-img,
    .gallery-strip-item {
        transform: none !important;
        will-change: auto;
    }

    .hero-content,
    .scroll-indicator {
        opacity: 1 !important;
    }

    .gallery-strip-item {
        background-position: center !important;
    }

    .rooms-showcase-section .rooms-showcase {
        transform: none !important;
        border-radius: 0 !important;
        transition: none !important;
        will-change: auto;
    }

    .rooms-showcase-num,
    .rooms-showcase-title,
    .rooms-showcase-desc {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .parallax-quote p,
    .parallax-quote p span,
    .parallax-content .divider,
    .parallax-attr {
        opacity: 1 !important;
        transform: none !important;
    }

    .page-main .nav-logo,
    .page-main .nav-links li,
    .page-main .nav-toggle {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.1);
    }
}

/* DIVIDER */
.divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
}

select.form-input {
    appearance: none;
    cursor: none;
}

/* INDEX LAYOUT */
#wrapper,
#container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    float: none;
}

#container {
    min-height: 0;
}

.root_daum_roughmap {
    width: 100% !important;
}

.root_daum_roughmap .cont,
.root_daum_roughmap .wrap_controllers {
    display: none;
}


/* RESPONSIVE */
@media (max-width: 1200px) {
    nav {
        padding: 28px 40px;
    }

    .intro {
        gap: 80px;
        padding: 120px 40px;
    }

    .rooms-header {
        padding: 0 40px;
    }

    .rooms-track {
        padding: 0 40px;
    }

    .amenities {
        padding: 120px 40px;
    }

    .location {
        padding: 120px 40px;
    }

    .amenities-grid {
        gap: 60px;
    }

    .booking {
        gap: 80px;
        padding: 120px 40px;
    }

    footer {
        padding: 72px 40px 40px;
        gap: 48px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 28px;
    }

    .nav-links a {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .intro {
        grid-template-columns: 1fr;
        gap: 64px;
        padding: 100px 32px;
    }

    .intro::before {
        font-size: 280px;
        right: -30px;
    }

    .intro-img-wrap {
        height: 480px;
        max-width: 640px;
        width: 100%;
        margin: 0 auto;
    }

    .stats-row {
        gap: 32px;
    }

    .rooms-header {
        padding: 0 32px;
        margin-bottom: 56px;
    }

    .rooms-track {
        padding: 0 32px;
    }

    .room-card {
        width: min(360px, 78vw);
    }

    .room-img {
        height: 420px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .amenities-right {
        display: none;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .booking {
        grid-template-columns: 1fr;
        gap: 64px;
        padding: 100px 32px;
    }

    .food-map-page {
        padding: 68px 0 0;
    }

    .food-map-layout {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(220px, 36vh) minmax(360px, 1fr);
        min-height: calc(100vh - 97px);
    }

    .food-map-panel {
        height: auto;
        max-height: 36vh;
        border-right: 0;
        border-bottom: 1px solid rgba(42, 34, 24, 0.12);
        box-shadow: 0 10px 24px rgba(42, 34, 24, 0.08);
    }

    .food-map-list {
        max-height: calc(36vh - 88px);
    }

    .food-map-canvas-wrap,
    .food-map-canvas {
        height: auto;
        min-height: calc(64vh - 97px);
    }

    footer {
        grid-template-columns: 1fr 1fr;
        padding: 64px 32px 36px;
    }

    footer>div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none !important;
    }

    .food-map-page {
        padding: 68px 0 0;
        height: 100dvh;
        min-height: 100dvh;
        overflow: hidden;
    }

    .page-food-map #wrapper,
    .page-food-map #container {
        height: 100%;
    }

    .page-food-map footer,
    .page-food-map hr {
        display: none;
    }

    .food-map-layout {
        position: relative;
        display: block;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        height: calc(100dvh - 68px);
        min-height: calc(100dvh - 68px);
    }

    .food-map-canvas-wrap {
        position: absolute;
        inset: 0;
        height: 100%;
        min-height: 100%;
        z-index: 1;
    }

    .food-map-canvas {
        width: 100%;
        height: 100%;
        min-height: 100%;
    }

    .food-map-panel.food-map-sheet {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 5;
        display: flex;
        flex-direction: column;
        height: calc(100dvh - 68px - 8px);
        max-height: calc(100dvh - 68px - 8px);
        padding: 0;
        border: 0;
        border-radius: 18px 18px 0 0;
        background: #fff;
        box-shadow: 0 -10px 36px rgba(42, 34, 24, 0.14);
        overflow: hidden;
        transform: translate3d(0, calc(100% - 168px), 0);
        transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
        will-change: transform;
    }

    .food-map-panel.food-map-sheet.is-dragging {
        transition: none;
    }

    .food-map-sheet-body {
        flex: 1;
        min-height: 0;
        overflow: hidden;
        touch-action: pan-y;
    }

    .food-map-sheet-handle {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        height: 36px;
        padding: 12px 0 8px;
        cursor: grab;
        touch-action: none;
        user-select: none;
        -webkit-user-select: none;
    }

    .food-map-panel.food-map-sheet.is-dragging .food-map-sheet-handle {
        cursor: grabbing;
    }

    .food-map-sheet-handle span {
        display: block;
        width: 44px;
        height: 5px;
        border-radius: 999px;
        background: rgba(42, 34, 24, 0.16);
    }

    .food-map-sheet-head {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 0;
        padding: 4px 18px 14px;
        border-bottom: 1px solid rgba(42, 34, 24, 0.08);
        cursor: grab;
        touch-action: none;
        user-select: none;
        -webkit-user-select: none;
    }

    .food-map-sheet-title {
        display: block;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: -0.03em;
        color: var(--deep);
    }

    .food-map-sheet-head-copy .food-map-copy {
        display: none;
        margin: 0;
    }

    .food-map-panel.is-half .food-map-sheet-head-copy .food-map-copy,
    .food-map-panel.is-expanded .food-map-sheet-head-copy .food-map-copy {
        display: block;
        margin-top: 6px;
        font-size: 13px;
        line-height: 1.55;
        color: rgba(42, 34, 24, 0.58);
    }

    .food-map-sheet-count {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 42px;
        height: 28px;
        padding: 0 10px;
        border-radius: 999px;
        background: rgba(201, 139, 74, 0.12);
        font-size: 12px;
        font-weight: 700;
        color: var(--gold);
        white-space: nowrap;
    }

    .food-map-sheet-actions {
        align-items: center;
        gap: 6px;
    }

    .food-map-sheet-actions .food-map-admin {
        min-height: 28px;
        padding: 0 10px;
        font-size: 11px;
    }

    .food-map-list {
        display: block;
        max-height: none;
        height: 100%;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0;
        scroll-behavior: auto;
        -webkit-overflow-scrolling: touch;
    }

    .food-map-item {
        grid-template-columns: 56px 1fr;
        gap: 14px;
        min-height: 0;
        padding: 16px 18px;
        border: 0;
        border-bottom: 1px solid rgba(42, 34, 24, 0.08);
        border-radius: 0;
        background: #fff;
    }

    .food-map-item:last-child {
        border-bottom: 0;
    }

    .food-map-item:hover,
    .food-map-item.is-active {
        border-color: rgba(42, 34, 24, 0.08);
        background: rgba(245, 240, 232, 0.72);
        box-shadow: none;
    }

    .food-map-item.is-active {
        /* box-shadow: inset 3px 0 0 var(--gold); */
        border-left: 0;
    }

    .food-map-item-thumb {
        width: 56px;
        height: 56px;
        border-radius: 12px;
    }

    .food-map-item strong {
        font-size: 16px;
        font-weight: 700;
    }

    .food-map-item em {
        margin-top: 5px;
        font-size: 13px;
        color: rgba(42, 34, 24, 0.52);
    }

    .food-map-item-desc {
        display: -webkit-box;
        margin-top: 8px;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 13px;
        line-height: 1.55;
        color: rgba(42, 34, 24, 0.72);
    }

    .food-map-item-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-top: 10px;
        font-size: 13px;
        font-weight: 600;
        color: var(--gold);
    }



    .food-map-item.is-active .food-map-item-desc,
    .food-map-item.is-active .food-map-item-link {
        display: block;
    }

    .food-map-info {
        width: min(280px, calc(100vw - 32px));
    }

    .food-map-info-card {
        border-radius: 14px;
    }

    .food-map-empty {
        margin: 18px;
    }

    nav {
        overflow: visible;
        padding: 16px 20px;
        padding-right: max(20px, calc(env(safe-area-inset-right, 0px) + 12px));
    }

    .nav-logo {
        width: 48px;
        font-size: 22px;
        letter-spacing: 1px;
        z-index: 120;
        position: relative;
        transition: width 0.35s ease;
    }

    .site-nav.is-scrolled .nav-logo {
        width: 48px;
    }

    nav.site-nav {
        padding: 10px 20px;
        transition: padding 0.35s ease, background 0.4s ease, backdrop-filter 0.4s ease;
    }

    nav.site-nav.is-scrolled {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: max(10px, env(safe-area-inset-top, 0px));
        right: max(0px, calc(env(safe-area-inset-right, 0px) + 16px));
        z-index: 140;
    }

    .wrap_map {
        height: 40vh !important;
    }

    body.nav-open .nav-toggle-bar:nth-child(1) {
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }

    body.nav-open .nav-toggle-bar:nth-child(2) {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
    }

    body.nav-open .nav-toggle-bar:nth-child(3) {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%) rotate(-45deg);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 105;
        background: rgba(18, 14, 10, 0.72);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    body.nav-open .nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 110;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: min(320px, 85vw);
        height: 100dvh;
        margin: 0;
        padding: 96px 32px 40px;
        background: var(--deep);
        border-left: 1px solid rgba(201, 169, 110, 0.15);
        box-shadow: -24px 0 48px rgba(0, 0, 0, 0.35);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.4s ease;
        overflow-y: auto;
    }

    body.nav-open .nav-links {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 18px 0;
        font-size: 15px;
        letter-spacing: 2px;
        opacity: 1;
    }

    .hero {
        min-height: 100svh;
        height: auto;
        padding: 120px 20px 100px;
    }

    .hero-content {
        width: 100%;
        max-width: 520px;
    }

    .hero-eyebrow {
        letter-spacing: 4px;
        margin-bottom: 24px;
    }

    .hero-title {
        font-size: clamp(52px, 16vw, 88px);
        margin-bottom: 28px;
    }

    .hero-sub {
        font-size: 14px;
        letter-spacing: 2px;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .scroll-indicator {
        bottom: 28px;
    }

    .scroll-line {
        height: 44px;
    }

    .intro {
        padding: 80px 20px;
        gap: 48px;
    }

    .intro::before {
        display: none;
    }

    .intro-heading {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 28px;
    }

    .intro-text {
        font-size: 14px;
        line-height: 1.9;
    }

    .intro-img-wrap {
        height: 360px;
    }

    .intro-img-accent {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: -10px;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 24px 32px;
        margin-top: 32px;
        padding-top: 32px;
    }

    .stat {
        flex: 1 1 calc(50% - 16px);
        min-width: 120px;
    }

    .stat-num {
        font-size: 40px;
    }

    .rooms {
        padding: 80px 0;
    }

    .rooms-showcase-section {
        min-height: 520px;
        max-height: none;
        height: 100svh;
    }

    .rooms-showcase-top {
        top: 104px;
        left: 20px;
        right: 20px;
    }

    .rooms-showcase-heading {
        font-size: clamp(28px, 8vw, 40px);
    }

    .rooms-showcase-info {
        left: 20px;
        right: 20px;
        bottom: 96px;
        max-width: none;
        padding-right: 0;
    }

    .rooms-showcase-title {
        font-size: clamp(34px, 10vw, 48px);
        margin-bottom: 10px;
    }

    .rooms-showcase-desc {
        font-size: 14px;
        line-height: 1.75;
    }

    .rooms-showcase-controls {
        left: 20px;
        right: 20px;
        bottom: 28px;
        flex-wrap: wrap;
    }

    .rooms-showcase-progress {
        flex: 1 1 88px;
        width: auto;
        min-width: 72px;
    }

    .rooms-showcase-count {
        margin-left: auto;
    }

    .rooms-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .rooms-title {
        font-size: clamp(32px, 9vw, 48px);
    }

    .rooms-track {
        padding: 0 20px;
        gap: 16px;
    }

    .room-card {
        width: min(320px, 84vw);
    }

    .room-img {
        height: 360px;
        margin-bottom: 0;
    }

    .amenities::before {
        display: none;
    }

    .parallax-scene {
        height: 60vh;
        min-height: 360px;
    }

    .parallax-content {
        padding: 0 20px;
    }

    .parallax-quote {
        font-size: clamp(22px, 6vw, 32px);
        margin-bottom: 28px;
    }

    .amenities {
        padding: 80px 20px;
    }

    .amenities-list {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .amenity-item {
        padding: 24px 0;
    }

    .gallery-strip {
        display: flex;
        height: auto;
        --gallery-columns: 2;
    }

    .gallery-strip-row {
        flex: none;
        display: flex;
        flex-wrap: nowrap;
        height: auto;
        gap: var(--gallery-gap);
        overflow: hidden;
    }

    .gallery-strip-item {
        flex: 0 0 auto;
        flex-basis: auto;
        width: calc((100% - var(--gallery-gap)) / 2);
        height: var(--gallery-row-height);
        min-width: 0;
        max-width: none;
        background-color: var(--deep);
        transform: translateZ(0);
        backface-visibility: hidden;
        transition:
            width 0.56s cubic-bezier(0.22, 1, 0.36, 1),
            filter 0.56s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: width;
    }

    .gallery-strip-item:hover {
        flex-basis: auto;
        width: calc((100% - var(--gallery-gap)) / 2);
        max-width: none;
    }

    .gallery-strip-item.is-touch-active {
        flex-basis: auto;
        width: calc((100% - var(--gallery-gap)) * 0.9);
        max-width: none;
        z-index: 2;
    }

    .gallery-strip-item.is-touch-active:hover {
        flex-basis: auto;
        width: calc((100% - var(--gallery-gap)) * 0.9);
        max-width: none;
    }

    .gallery-strip-row:has(.gallery-strip-item.is-touch-active) .gallery-strip-item:not(.is-touch-active),
    .gallery-strip-item.is-touch-compressed {
        flex-basis: auto;
        width: calc((100% - var(--gallery-gap)) * 0.1);
        max-width: none;
    }

    .gallery-strip-item::after {
        opacity: 1;
    }

    .gallery-strip-label {
        opacity: 1;
        transform: none;
        bottom: 20px;
        left: 20px;
        font-size: 18px;
    }

    .location {
        padding: 80px 20px;
    }

    .location-info {
        margin-top: 32px;
        gap: 20px;
    }

    .location-item {
        padding-bottom: 20px;
    }

    .location-links {
        margin-top: 28px;
    }

    .location-links a {
        min-width: auto;
        flex: 1 1 calc(50% - 6px);
    }


    .booking {
        padding: 80px 20px;
    }

    .booking::after {
        font-size: 96px;
        bottom: -20px;
        left: -6px;
    }

    .booking-form {
        padding: 32px 24px;
    }

    .form-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

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

    .form-btn,
    .btn-arrow,
    .room-gallery-trigger,
    .location-links a,
    select.form-input {
        cursor: pointer;
    }

    .room-lightbox-prev {
        left: 8px;
    }

    .room-lightbox-next {
        right: 8px;
    }

    .room-lightbox-nav {
        width: 44px;
        height: 44px;
    }

    .room-lightbox-caption {
        flex-direction: column;
        gap: 8px;
    }

    .room-img-zoom {
        opacity: 1;
        transform: none;
    }

    footer {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 56px 20px 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-brand {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: min(300px, 88vw);
        padding: 88px 24px 32px;
    }

    .nav-links a {
        font-size: 14px;
        padding: 16px 0;
    }

    .hero-eyebrow {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .hero-sub {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .intro-img-wrap {
        height: 280px;
    }

    .stat {
        flex: 1 1 100%;
    }

    .room-card {
        width: 88vw;
    }

    .room-img {
        height: 300px;
    }

    .btn-arrow {
        width: 44px;
        height: 44px;
    }

    .booking-form {
        padding: 24px 18px;
    }

    .form-input {
        font-size: 16px;
    }
}

@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }

    .cursor,
    .cursor-ring {
        display: none !important;
    }

    .room-card:hover .parallax-img img {
        transform: none;
    }

    .gallery-strip-item:hover {
        flex-basis: auto;
        width: calc((100% - var(--gallery-gap)) / 2);
        max-width: none;
    }

    .gallery-strip-item.is-touch-active:hover {
        flex-basis: auto;
        width: calc((100% - var(--gallery-gap)) * 0.9);
        max-width: none;
    }

    .form-btn,
    .btn-arrow,
    .nav-toggle,
    .room-gallery-trigger,
    .location-links a,
    select.form-input,
    .gallery-strip-item,
    .room-lightbox-close,
    .room-lightbox-nav {
        cursor: pointer;
    }
}

/* USAGE GUIDE */
.page-usage-guide .site-nav {
    background: rgba(42, 34, 24, 0.92);
    backdrop-filter: blur(20px);
}

.usage-guide-page {
    min-height: 100vh;
    padding: 108px 24px 80px;
    background: var(--white);
    color: var(--deep);
}

.usage-guide-inner {
    max-width: 1320px;
    margin: 0 auto;
    margin-top: 80px;
}

.usage-guide-header {
    margin-bottom: 34px;
    text-align: left;
}

.usage-guide-label {
    margin-bottom: 10px;
    color: rgba(42, 34, 24, 0.52);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.usage-guide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 5vw, 50px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--deep);
}

.usage-guide-lead {
    max-width: 520px;
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(42, 34, 24, 0.62);
}

.usage-guide-shell {
    background: #fff;
    border: 1px solid rgba(42, 34, 24, 0.12);
    /* border-radius: 6px; */
    box-shadow: none;
    overflow: visible;
}

.usage-tab-bar {
    position: relative;
    display: flex;
    gap: 0;
    padding: 0;
    background: #fff;
    border-bottom: 1px solid rgba(42, 34, 24, 0.12);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.usage-tab-bar::-webkit-scrollbar {
    display: none;
}

.usage-tab {
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 4px;
    min-width: 120px;
    padding: 21px 20px 21px;
    border: 0;
    border-right: 1px solid rgba(42, 34, 24, 0.08);
    border-radius: 0;
    background: transparent;
    color: rgba(42, 34, 24, 0.56);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.usage-tab:hover {
    background: rgba(245, 240, 232, 0.58);
    color: rgba(42, 34, 24, 0.78);
}

.usage-tab:last-of-type {
    border-right: 0;
}

.usage-tab i {
    font-size: 21px;
    /* margin-bottom: 1px; */
    margin-right: 10px;
}

.usage-tab-ko {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
}

.usage-tab-en {
    font-size: 11px;
    opacity: 0.7;
}

.usage-tab-zh {
    font-size: 11px;
    opacity: 0.7;
}

.usage-tab.is-active {
    color: #fff;
    background: var(--forest);
}

.usage-tab-indicator {
    display: none;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--earth);
    transition: transform 0.24s ease, width 0.24s ease;
    pointer-events: none;
}

.usage-panels {
    padding: 0;
    background: #fff;
}

.usage-panel {
    display: none;
    animation: usageFadeIn 0.35s ease;
}

.usage-panel.is-active {
    display: block;
}

@keyframes usageFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.usage-panel-grid {
    display: grid;
    grid-template-columns: minmax(360px, 400px) minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.usage-video-zone,
.usage-guide-zone {
    padding: 30px;
}

.usage-video-zone {
    align-self: stretch;
    background: #fff;
    border-right: 1px solid rgba(42, 34, 24, 0.1);
}

.usage-guide-zone {
    background: rgba(245, 240, 232, 0.34);
}

.usage-section-head {
    display: flex;
    align-items: center;
    gap: 14px;
    /* margin-bottom: 20px; */
    padding-bottom: 16px;
    /* border-bottom: 1px solid rgba(42, 34, 24, 0.1); */
}

.usage-section-num {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--deep);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.usage-guide-zone .usage-section-num {
    background: var(--earth);
    color: var(--cream);
}

.usage-section-title {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--deep);
}

.usage-section-sub {
    margin-top: 2px;
    font-size: 12px;
    color: rgba(42, 34, 24, 0.45);
}

.usage-video-card {
    position: sticky;
    top: 116px;
    z-index: 1;
}

.usage-video-frame {
    /* padding: 10px;
    border-radius: 6px;
    background: rgba(42, 34, 24, 0.035);
    border: 1px solid rgba(42, 34, 24, 0.1); */
}

.usage-video-wrap {
    aspect-ratio: 9 / 16;
    /* max-width: 280px; */
    margin: 0 auto;
    border-radius: 4px;
    overflow: hidden;
    background: #0f0d0a;
    box-shadow: none;
}

.usage-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.usage-video-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    text-align: center;
}

.usage-video-caption strong {
    font-size: 15px;
    font-weight: 400;
    color: var(--deep);
}

.usage-video-caption span {
    font-size: 12px;
    color: rgba(42, 34, 24, 0.45);
}

.usage-copy-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.usage-copy-card {
    padding: 24px;
    /* border-radius: 6px; */
    background: #fff;
    border: 1px solid rgba(42, 34, 24, 0.12);
    box-shadow: none;
}

.usage-copy-card--ko {
    border-top: 2px solid var(--deep);
}

.usage-copy-card--en {
    margin-top: 20px;
    border-top: 2px solid var(--earth);
}

.usage-copy-card--zh {
    margin-top: 20px;
    border-top: 2px solid var(--earth);
}

.usage-lang-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 20px 0;
    color: rgba(42, 34, 24, 0.38);
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.usage-lang-divider::before,
.usage-lang-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(42, 34, 24, 0.1);
}

.usage-copy-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.usage-copy-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 24px;
    padding: 0 8px;
    border-radius: 3px;
    background: transparent;
    border: 1px solid rgba(42, 34, 24, 0.22);
    color: rgba(42, 34, 24, 0.72);
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.usage-copy-card--en .usage-copy-badge {
    background: transparent;
    color: rgba(42, 34, 24, 0.72);
}

.usage-copy-head h2 {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.2;
}

.usage-empty-guide {
    min-height: 156px;
    display: flex;
    align-items: center;
    padding: 22px 20px;
    border-top: 1px solid rgba(42, 34, 24, 0.1);
    color: rgba(42, 34, 24, 0.58);
    font-size: 15px;
    line-height: 1.7;
}

.usage-copy-lang {
    margin-top: 4px;
    font-size: 12px;
    color: rgba(42, 34, 24, 0.42);
}

.usage-copy-summary-box {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 4px;
    background: rgba(245, 240, 232, 0.48);
    border: 1px solid rgba(42, 34, 24, 0.1);
}

.usage-copy-summary {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(42, 34, 24, 0.78);
}

.usage-step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.usage-step-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 16px;
    border-radius: 4px;
    /* background: rgba(245, 240, 232, 0.42); */
    border: 1px solid rgba(42, 34, 24, 0.1);
}

.usage-copy-card--en .usage-step-list li {
    background: rgba(245, 240, 232, 0.42);
}

.usage-step-num {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--deep);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
    box-shadow: none;
}

.usage-copy-card--ko .usage-step-num {
    color: #fff;
}

.usage-step-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(42, 34, 24, 0.88);
}

.usage-copy-tip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 10px 16px;
    border-radius: 4px;
    background: rgba(245, 240, 232, 0.48);
    border: 1px solid rgba(42, 34, 24, 0.1);
    color: rgba(42, 34, 24, 0.78);
    font-size: 14px;
    line-height: 1.6;
}

.usage-copy-tip i {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 18px;
}

.page-usage-guide #wrapper,
.page-usage-guide #container {
    overflow: visible;
}

@media (max-width: 960px) {
    .usage-panel-grid {
        grid-template-columns: 1fr;
    }

    .usage-video-zone {
        position: static;
        border-right: 0;
        border-bottom: 1px solid rgba(42, 34, 24, 0.1);
    }

    .usage-video-card {
        position: static;
    }

    .usage-video-wrap {
        max-width: min(380px, 92vw);
    }
}

@media (max-width: 640px) {
    .usage-guide-page {
        padding: 68px 0 64px;
    }

    .usage-guide-header {
        display: none;
    }

    .usage-guide-inner {
        margin-top: 0;
    }

    .usage-guide-shell {
        /* border-radius: 6px; */
        border: 0;
    }

    .usage-video-zone,
    .usage-guide-zone {
        padding: 20px 16px;
    }

    .usage-tab {
        min-width: 100px;
        padding: 14px 12px;
    }

    .usage-tab:first-of-type {
        border-left: 0;
    }

    .usage-tab-ko {
        font-size: 14px;
    }

    .usage-copy-card {
        padding: 20px 16px;
        /* border-radius: 6px; */
    }

    .usage-step-list li {
        padding: 10px 12px;
        gap: 8px;
        letter-spacing: -0.03em
    }

    .usage-step-num {
        width: 20px;
        height: 20px;
        line-height: 20px;
        flex: 0 0 20px;
        font-size: 11px;
        margin-right: 0;
    }

    .usage-copy-head h2 {
        font-size: 21px;
    }

    .usage-step-text {
        font-size: 12px;
    }

    .usage-copy-tip {
        font-size: 12px;
        padding: 10px 12px;
        gap: 8px;
    }
}