*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #F2EDE8;
    --bg2: #EDE5DC;
    --rose: #C9A89A;
    --rose-light: #E8D5CE;
    --rose-deep: #A07060;
    --sage: #8FA897;
    --sage-light: #C8D8CF;
    --lavender: #A898B8;
    --lav-light: #D8CEEA;
    --champagne: #D4B896;
    --champ-deep: #B09070;
    --ink: #2C2420;
    --ink2: #5A4A42;
    --ink3: #9A8A82;

    --glass-bg: rgba(255, 252, 249, 0.55);
    --glass-bdr: rgba(255, 255, 255, 0.72);
    --glass-shd: 0 8px 40px rgba(100, 60, 40, 0.09);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Noto Sans KR', sans-serif;
    overflow-x: hidden;
    cursor: default;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 65% 55% at 12% 18%, rgba(201, 168, 154, 0.24) 0%, transparent 70%),
        radial-gradient(ellipse 55% 50% at 88% 72%, rgba(168, 152, 184, 0.20) 0%, transparent 70%),
        radial-gradient(ellipse 50% 55% at 50% 105%, rgba(143, 168, 151, 0.16) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Ccircle cx='1' cy='1' r='0.45' fill='rgba(180,140,120,0.07)'/%3E%3Ccircle cx='3' cy='3' r='0.45' fill='rgba(180,140,120,0.07)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3.5rem;
    background: rgba(242, 237, 232, 0.56);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    display: block;
    transform: translateY(4px);
}

.nav-links {
    display: flex;
    gap: 4rem;
    list-style: none;
}

.nav-links a {
    color: var(--ink2);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: color 0.2s;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--rose-deep);
}

.nav-order {
    background: rgba(201, 168, 154, 0.22);
    color: var(--rose-deep);
    border: 1px solid rgba(201, 168, 154, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.56rem 1rem;
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: none;
    cursor: pointer;          /* ← cursor 수정 */
    transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
    flex-shrink: 0;
}

.nav-order:hover {
    background: rgba(201, 168, 154, 0.34);
    border-color: rgba(201, 168, 154, 0.48);
    color: var(--ink);
    transform: translateY(-1px);
}

/* 햄버거 버튼 */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;          /* ← cursor 수정 */
    padding: 4px;
    background: none;
    border: none;
    z-index: 210;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--rose-deep);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

/* 햄버거 → X 전환 애니메이션 */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════════════
   MOBILE MENU OVERLAY  ← 신규
═══════════════════════════════════════════════ */
/* 모바일 메뉴 오버레이 리디자인 */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;

    background:
        radial-gradient(ellipse 70% 58% at 12% 16%, rgba(201, 168, 154, 0.22) 0%, transparent 72%),
        radial-gradient(ellipse 58% 52% at 88% 74%, rgba(168, 152, 184, 0.14) 0%, transparent 72%),
        linear-gradient(
            180deg,
            rgba(242, 237, 232, 0.97) 0%,
            rgba(237, 229, 220, 0.95) 52%,
            rgba(232, 213, 206, 0.92) 100%
        );

    backdrop-filter: blur(26px) saturate(1.45);
    -webkit-backdrop-filter: blur(26px) saturate(1.45);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.45s;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 154, 0.28);
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--ink3);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.22s ease;
}

.mobile-menu-close:hover {
    color: var(--rose-deep);
    border-color: rgba(201, 168, 154, 0.45);
    background: rgba(255, 255, 255, 0.58);
}

.mobile-nav-links {
    list-style: none;
    width: min(88%, 420px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    padding: 0;
}

.mobile-nav-links li {
    width: auto;
}

.mobile-nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 74px;
    min-height: 74px;
    padding: 0 1.2rem;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.42);
    box-shadow:
        0 4px 18px rgba(100, 60, 40, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.42);

    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);

    color: var(--ink2);
    text-decoration: none;
    text-align: center;

    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1.25;

    transition: all 0.22s ease;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.32);
    border-color: rgba(201, 168, 154, 0.34);
    color: var(--rose-deep);
    transform: translateY(-2px);
}

.mobile-order-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 82px;
    min-height: 82px;
    padding: 0 1.35rem;
    margin-top: 1.2rem;

    border-radius: 999px;

    background: rgba(201, 168, 154, 0.28);
    border: 1px solid rgba(201, 168, 154, 0.34);
    box-shadow:
        0 6px 20px rgba(100, 60, 40, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);

    backdrop-filter: blur(14px) saturate(1.2);
    -webkit-backdrop-filter: blur(14px) saturate(1.2);

    color: var(--rose-deep);
    cursor: pointer;

    font-family: 'Noto Sans KR', sans-serif;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.25;
    text-transform: none;

    transition: all 0.22s ease;
}

.mobile-order-btn:hover {
    background: rgba(201, 168, 154, 0.4);
    color: var(--ink);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════ */
.section-header {
    text-align: center;
    margin-bottom: 2.6rem;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-tag {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose-deep);
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--ink);
}

.section-line {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--champagne), transparent);
    margin: 0.9rem auto 0;
}

.section-title .accent {
    color: var(--rose-deep);
}

/* ═══════════════════════════════════════════════
   HERO — 데스크탑
═══════════════════════════════════════════════ */
#video-reel {
    position: relative;
    height: 300vh;
    z-index: 1;
}

.video-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

.hero-scene.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-scene video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-dim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20, 16, 12, 0.18) 0%,
        rgba(20, 16, 12, 0.22) 35%,
        rgba(20, 16, 12, 0.42) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(90%, 760px);
    max-width: 760px;
    text-align: center;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transform: translate(-50%, calc(-50% + 28px));
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content.active {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hero-eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.hero-title {
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    line-height: 1.12;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.25rem;
    text-shadow: 0 6px 28px rgba(0, 0, 0, 0.28);
}

.hero-title em {
    font-style: normal;
    color: var(--champagne);
}

.hero-temp {
    display: inline-flex;
    align-items: baseline;
    gap: 0.2rem;
}

#tempCount {
    font-size: 1.5em;
    font-weight: 500;
}

.temp-unit {
    font-size: 0.7em;
    opacity: 0.8;
}

.hero-desc {
    max-width: 560px;
    margin: 0.8rem auto 0;
    font-size: 1.08rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.84);
}

.hero-dots {
    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 5;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    cursor: pointer;          /* ← cursor 수정 */
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.35);
}

.hero-progress-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.16);
    z-index: 5;
}

.hero-progress {
    width: 33.333%;
    height: 100%;
    background: linear-gradient(90deg, var(--rose), var(--champagne));
    transition: width 0.4s ease;
}

.hero-scroll-hint {
    position: absolute;
    right: 3.5rem;
    bottom: 2rem;
    z-index: 5;
    opacity: 0.5;
}

.hero-scroll-line {
    width: 1px;
    height: 42px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
    animation: heroScroll 2s ease-in-out infinite;
}

@keyframes heroScroll {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════
   EVENT
═══════════════════════════════════════════════ */
#event-section {
    position: relative;
    padding: 8rem 0 4rem;
    z-index: 1;
}

/* ═══════════════════════════════════════════════
   EVENT GRID — 3열 가로 배열
═══════════════════════════════════════════════ */
.event-grid {
   width: min(80%, 1200px);
    max-width: none;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.event-grid-item {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 252, 249, 0.45);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: var(--glass-shd), inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.event-grid-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(100, 60, 40, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.event-grid-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* ═══════════════════════════════════════════════
   MENU SECTION
═══════════════════════════════════════════════ */
#menu {
    background: transparent;
    color: var(--ink);
    padding: 4.5rem 0 4rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 2.2rem;
    font-family: 'Cormorant Garamond', serif;
}

.menu-tab {
    background: none;
    border: none;
    padding: 0 34px;
    font-size: 1rem;
    letter-spacing: 0.12em;
    color: var(--ink3);
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.menu-tab:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: rgba(154, 138, 130, 0.4);
}

.menu-tab:hover,
.menu-tab.active {
    color: var(--ink);
}

.menu-tab.active::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: var(--champagne);
}

.menu-tab-panels { width: 100%; }

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    padding: 0;
    background: var(--ink);
}

.menu-card {
    position: relative;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(180deg,
        rgba(44, 36, 32, 1) 0%,
        rgba(58, 48, 42, 1) 45%,
        rgba(44, 36, 32, 1) 100%
    );
    border: none;
    box-shadow: none;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-card:hover .menu-img {
    transform: scale(1.04);
}

.menu-overlay {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(16px);
    width: 100%;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.45rem;
    padding: 1.6rem;
    background: rgba(242, 237, 232, 0.56);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border-top: 1px solid rgba(255, 255, 255, 0.65);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.menu-card:hover .menu-overlay,
.menu-card.reveal.visible .menu-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.menu-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 4;
    background: rgba(242, 237, 232, 0.56);
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 999px;
}

.menu-name {
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-size: clamp(1.05rem, 1.6vw, 1.05rem);
    font-weight: 400;
    color: var(--ink);
}

.menu-price {
    font-size: 1.15rem;
    color: var(--rose-deep);
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
}

.menu-order-btn {
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    position: relative;
    cursor: pointer;
}

.menu-order-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    background: var(--ink);
}


#menu {
    background: transparent;
    color: var(--ink);
    padding: 4.5rem 0 4rem;
}

/* ═══════════════════════════════════════════════
   YOUTUBE
═══════════════════════════════════════════════ */
#youtube {
    background: transparent;
    padding: 5rem 0 8rem;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.yt-banner-grid {
    width: min(80%, 1200px);
    max-width: none;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.yt-banner-card {
    position: relative;
    width: 100%;
    aspect-ratio: 720 / 1080;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 252, 249, 0.52);
    backdrop-filter: blur(22px) saturate(1.6);
    -webkit-backdrop-filter: blur(22px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--glass-shd), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.yt-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(100, 60, 40, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.yt-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 반응형 */
@media (max-width: 768px) {
    .yt-banner-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   REVIEWS  ← 그라디언트 방향 수정
═══════════════════════════════════════════════ */
#reviews {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: var(--rose);
    z-index: 1;
}

#reviews .section-title { color: var(--bg); }
#reviews .section-tag   { color: var(--ink); }
#reviews .section-line  { background: linear-gradient(to right, transparent, var(--champagne), transparent); }

/* 위쪽 페이드: var(--bg) → 투명 (리뷰 섹션 밖→안 방향) ← 수정 */
#reviews::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, rgba(201, 168, 154, 0) 0%, var(--bg) 100%);
    pointer-events: none;
    z-index: 1;
}

#reviews::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4'%3E%3Ccircle cx='1' cy='1' r='0.45' fill='rgba(180,140,120,0.07)'/%3E%3Ccircle cx='3' cy='3' r='0.45' fill='rgba(180,140,120,0.07)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

#reviews .section-header,
#reviews .review-summary,
#reviews .reviews-grid {
    position: relative;
    z-index: 1;
}

.review-summary {
    max-width: 1300px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.summary-stat {
    padding: 1.8rem;
    text-align: center;
    background: rgba(242, 237, 232, 0.56);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    transition: all 0.35s ease;
}

.summary-stat:hover {
    background: rgba(255, 252, 249, 0.52);
    border-color: rgba(201, 168, 154, 0.45);
    box-shadow: 0 10px 40px rgba(100, 60, 40, 0.12);
    transform: translateY(-6px);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--ink);
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink3);
    display: block;
    margin-top: 0.3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1300px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.review-card {
    padding: 2.2rem 2rem;
    position: relative;
    background: rgba(242, 237, 232, 0.56);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    transition: all 0.35s ease;
}

.review-card:hover {
    background: rgba(255, 252, 249, 0.52);
    border-color: rgba(201, 168, 154, 0.45);
    box-shadow: 0 10px 40px rgba(100, 60, 40, 0.12);
    transform: translateY(-6px);
}

.review-menu-tag {
    position: absolute;
    top: 1.4rem;
    right: 1.4rem;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-deep);
    background: rgba(201, 168, 154, 0.18);
    padding: 0.2rem 0.6rem;
    border: 1px solid rgba(201, 168, 154, 0.35);
    border-radius: 999px;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1rem;
    color: var(--champ-deep);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--ink2);
    margin-bottom: 1.5rem;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-top: 1px solid rgba(201, 168, 154, 0.2);
    padding-top: 1.2rem;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(201, 168, 154, 0.24);
    border: 1px solid rgba(201, 168, 154, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--rose-deep);
    flex-shrink: 0;
}

.review-name {
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-size: 1rem;
    color: var(--ink);
    display: block;
}

.review-date {
    font-size: 0.72rem;
    color: var(--ink3);
    display: block;
    margin-top: 2px;
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════
   MAP
═══════════════════════════════════════════════ */
#map-section {
    background: transparent;
    padding: 8rem 0 8rem;
}

.map-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 600px;
    width: min(80%, 1200px);
    margin: 0 auto;
    gap: 18px;
    padding: 0;
}

.map-sidebar {
    background: rgba(255, 252, 249, 0.52);
    backdrop-filter: blur(22px) saturate(1.6);
    -webkit-backdrop-filter: blur(22px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--glass-shd), inset 0 1px 0 rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-search-box {
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(201, 168, 154, 0.35);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.9rem 1.2rem;
}

.map-search-box input {
    background: none;
    border: none;
    outline: none;
    color: var(--ink);
    font-size: 0.9rem;
    flex: 1;
    cursor: text;
}

.map-search-box input::placeholder { color: var(--ink3); }

.map-search-box button {
    background: rgba(201, 168, 154, 0.24);
    border: 1px solid rgba(201, 168, 154, 0.35);
    color: var(--rose-deep);
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    border-radius: 999px;
    cursor: pointer;
}

.branch-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.branch-item {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(201, 168, 154, 0.2);
    border-radius: 18px;
    padding: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.branch-item:hover,
.branch-item.selected {
    border-color: rgba(201, 168, 154, 0.45);
    background: rgba(201, 168, 154, 0.12);
}

.branch-name {
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.branch-addr {
    font-size: 0.78rem;
    color: var(--ink3);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.branch-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.branch-tag {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0.15rem 0.5rem;
    border: 1px solid rgba(201, 168, 154, 0.35);
    color: var(--rose-deep);
    border-radius: 999px;
    background: rgba(201, 168, 154, 0.14);
}

.map-frame {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 252, 249, 0.52);
    backdrop-filter: blur(22px) saturate(1.6);
    -webkit-backdrop-filter: blur(22px) saturate(1.6);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: var(--glass-shd), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 600px;
    filter: grayscale(20%) contrast(1.02) brightness(0.96);
}

.map-watermark {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(201, 168, 154, 0.28);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1rem;
    font-size: 0.72rem;
    color: var(--rose-deep);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 999px;
}

/* ═══════════════════════════════════════════════
   FOOTER  ← 수정 / 보강
═══════════════════════════════════════════════ */
footer {
    background: rgba(237, 229, 220, 0.62);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(212, 184, 150, 0.22);
    padding: 5rem 3rem 2.4rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto 3rem;
}

.footer-logo {
    font-family: 'Cormorant Garamond', 'Noto Serif KR', serif;
    font-size: 2.1rem;
    font-weight: 300;
    color: var(--ink);
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 0.2em;
}

.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--ink3);
    max-width: 300px;
}

/* 소셜 아이콘 */
.footer-social {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 154, 0.35);
    background: rgba(255, 255, 255, 0.38);
    color: var(--ink3);
    text-decoration: none;
    transition: all 0.22s;
}

.footer-social-link:hover {
    background: rgba(201, 168, 154, 0.22);
    border-color: var(--rose);
    color: var(--rose-deep);
    transform: translateY(-2px);
}

/* 링크 컬럼 */
.footer-col-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(201, 168, 154, 0.2);
}

.footer-col-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-col-list a {
    font-size: 0.82rem;
    color: var(--ink3);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-col-list a:hover {
    color: var(--rose-deep);
}

/* 연락처 */
.footer-contact li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 0.82rem;
    color: var(--ink3);
}

.footer-contact-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 500;
}

/* 법인 정보 */
.footer-legal {
    max-width: 1300px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 168, 154, 0.14);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-legal p {
    font-size: 0.7rem;
    color: var(--ink3);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(201, 168, 154, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright,
.footer-certs {
    font-size: 0.72rem;
    color: var(--ink3);
}

.footer-certs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-certs a {
    color: var(--ink3);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}

.footer-certs a:hover {
    color: var(--rose-deep);
}

/* ═══════════════════════════════════════════════
   PAGE PROGRESS
═══════════════════════════════════════════════ */
.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--rose), var(--champagne));
    z-index: 2000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 0.05s linear;
}

/* ═══════════════════════════════════════════════
   REVEAL
═══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ═══════════════════════════════════════════════
   LOADER
═══════════════════════════════════════════════ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    transition: opacity 0.8s, visibility 0.8s;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--rose-deep);
    animation: pulse 1.5s ease-in-out infinite;
    text-align: center;
    letter-spacing: 0.12em;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}

.loader-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(201, 168, 154, 0.2);
}

.loader-bar {
    height: 100%;
    background: var(--rose);
    width: 0;
    transition: width 1.2s ease;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1400px) {
    .event-slide-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .event-slide img {
        width: 100%;
        height: auto;
        aspect-ratio: 660 / 620;
    }
}

@media (max-width: 1024px) {
    .reviews-grid       { grid-template-columns: repeat(2, 1fr); }
    .review-summary     { grid-template-columns: repeat(2, 1fr); }
    .map-layout         { width: min(92%, 680px); grid-template-columns: 1fr; }
    .map-frame iframe   { min-height: 400px; }
    .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    
    /* nav */
    nav {
        padding: 1.2rem 1.5rem;
    }

    .nav-links  { display: none; }
    .nav-order  { display: none; }   /* 모바일에서 숨기고 오버레이 버튼 사용 */
    .hamburger  { display: flex; }

    /* hero — 모바일 stacked */
    #video-reel {
        height: auto;
    }

    .video-sticky {
        position: relative;
        top: auto;
        height: auto;
        overflow: visible;
    }

    .hero-track {
        height: auto;
        display: block;
    }

    .hero-scene {
        position: relative;
        inset: auto;
        width: 100%;
        height: 72svh;
        min-height: 560px;
        opacity: 1;
        pointer-events: auto;
    }

    .hero-scene video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .hero-dim {
        background: linear-gradient(
            to bottom,
            rgba(20, 16, 12, 0.10) 0%,
            rgba(20, 16, 12, 0.16) 38%,
            rgba(20, 16, 12, 0.30) 100%
        );
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: min(90%, 90vw);
        max-width: none;
        text-align: center;
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    .hero-content.active {
        transform: translate(-50%, -50%);
    }

    .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.08em; }
    .hero-title   { font-size: clamp(1.5rem, 6.5vw, 2.3rem); line-height: 1.15; }
    .hero-desc    { font-size: 0.96rem; line-height: 1.6; max-width: 100%; margin-top: 0.8rem; }

    .hero-dots,
    .hero-progress-wrap,
    .hero-scroll-hint { display: none; }

    /* event grid */
    .event-grid { grid-template-columns: 1fr; padding: 0 16px; gap: 14px; }
    .event-grid-item img { height: 320px; }

    /* menu */
    .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 0; }
    .menu-card { aspect-ratio: 1 / 1.12; }
    .menu-panel .menu-card:nth-child(n+5) { display: block; }
    .menu-overlay {
        left: 50%;
        bottom: 0;
        transform: translateX(-50%) translateY(0);
        width: 100%;
        min-height: 68px;
        padding: 0.85rem 0.95rem 0.8rem;
        gap: 0.12rem;
        opacity: 1;
    }
    .menu-name       { font-size: 0.82rem; line-height: 1.2; }
    .menu-price      { font-size: 0.82rem; line-height: 1.15; }
    .menu-order-btn  { margin-top: 0.15rem; font-size: 0.62rem; letter-spacing: 0.1em; }
    .menu-badge      { top: 0.65rem; left: 0.65rem; font-size: 0.58rem; padding: 0.22rem 0.45rem; }

    /* reviews */
    .reviews-grid   { grid-template-columns: 1fr; }
    .review-summary { grid-template-columns: repeat(2, 1fr); }

    /* map */
    .map-layout { width: calc(100% - 32px); max-width: 100%; margin: 0 auto; padding: 0; gap: 14px; }
    .map-frame iframe { min-height: 340px; }

    /* footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    footer {
        padding: 3.5rem 1.5rem 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        border-top: none;
        padding-top: 1.2rem;
        justify-content: center;
    }
.footer-social {
        justify-content: center;
    }


    .footer-copyright {
        font-size: 0.72rem;
    }
.footer-col,
    .footer-legal,
    .footer-certs {
        display: none;
    }
     .footer-brand {
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    nav { padding: 1rem; }

    .hero-scene    { height: 66svh; min-height: 500px; }
    .hero-eyebrow  { font-size: 0.62rem; letter-spacing: 0.06em; }
    .hero-title    { font-size: clamp(1.35rem, 6vw, 2rem); }
    .hero-desc     { font-size: 0.88rem; line-height: 1.55; }
}
/* 광고 팝업 */
.ad-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;

    background: rgba(44, 36, 32, 0.38);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.ad-popup-overlay.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ad-popup-window {
    width: min(88vw, 560px);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 58% at 12% 16%, rgba(201, 168, 154, 0.16) 0%, transparent 72%),
        radial-gradient(ellipse 58% 52% at 88% 74%, rgba(168, 152, 184, 0.10) 0%, transparent 72%),
        rgba(255, 252, 249, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow:
        0 30px 80px rgba(60, 35, 20, 0.18),
        0 12px 30px rgba(80, 40, 20, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(24px) saturate(1.45);
    -webkit-backdrop-filter: blur(24px) saturate(1.45);

    transform: translateY(12px) scale(0.98);
    transition: transform 0.35s ease;
}

.ad-popup-overlay.open .ad-popup-window {
    transform: translateY(0) scale(1);
}

.ad-popup-bar {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 1rem 0 1.15rem;
    background: rgba(255, 255, 255, 0.32);
    border-bottom: 1px solid rgba(255, 255, 255, 0.58);
}

.ad-popup-title {
    flex: 1;
    text-align: center;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-popup-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 154, 0.28);
    background: rgba(255, 255, 255, 0.34);
    color: var(--ink3);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.22s ease;
}

.ad-popup-close:hover {
    color: var(--rose-deep);
    background: rgba(255, 255, 255, 0.52);
    transform: scale(1.04);
}

.ad-popup-body {
    padding: 14px 14px 16px;
}

.ad-popup-video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.ad-popup-video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.ad-popup-caption {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    color: var(--ink3);
    font-size: 0.82rem;
}

.ad-popup-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 24px;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: rgba(160, 112, 96, 0.86);
    color: #fff;
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .ad-popup-overlay {
        padding: 16px;
    }

    .ad-popup-window {
        width: 100%;
        border-radius: 22px;
    }

    .ad-popup-bar {
        height: 50px;
        padding: 0 0.85rem 0 1rem;
    }

    .ad-popup-title {
        font-size: 0.64rem;
        letter-spacing: 0.08em;
    }

    .ad-popup-close {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .ad-popup-body {
        padding: 14px 14px 16px;
    }

    .ad-popup-caption {
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 0.76rem;
    }
}
