/* ==========================================================================
   MUKJUNG (묵정 / 墨井) — REVISED LIGHT & SOFT STYLE SYSTEM
   Cinematic, Minimal, Editorial, Architectural, Monochromatic Light
   ========================================================================== */

/* Preload and Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Noto+Sans+KR:wght@200;300;400;500;600&family=Noto+Serif+KR:ital,wght@0,300;0,400;0,500;1,300&display=swap');

:root {
    /* Revised Soft Color Palette */
    --muk-black: #000000;
    --charcoal: #242937; /* Used sparingly as a secondary tone */
    --la-yellow: #ffd417; /* Strictly for hover states, links, and small CTA accents */
    --hanji-white: #f3f3eb; /* Primary Background */
    --natural-sand: #dfdad2; /* Secondary Background */
    
    /* Clean Minimalist Typography Tokens */
    --font-serif: 'Cormorant Garamond', 'Noto Serif KR', serif; /* Used ONLY sparingly for massive editorial headings */
    --font-sans: 'Noto Sans KR', sans-serif; /* Dominant font for all body, nav, bios, and copy */
    
    /* Animation Tokens */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-medium: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & SMOOTH SCROLL BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: initial;
    overflow-x: hidden;
    background-color: var(--hanji-white);
}

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: hidden;
}

/* BODY OVERFLOW BACKUP — uncomment to revert
body {
    background-color: var(--hanji-white);
    color: var(--muk-black);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.015em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
*/
body {
    background-color: var(--hanji-white);
    background-color: #e8e3da;
    color: var(--muk-black);
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.65;
    letter-spacing: -0.015em;
    overflow-x: hidden;
    overflow-y: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   BILINGUAL SYSTEM RULES
   ========================================================================== */
.en-text, .ko-text {
    transition: opacity var(--transition-medium);
}

body[data-lang="en"] .ko-text {
    display: none !important;
}

body[data-lang="ko"] .en-text {
    display: none !important;
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 400;
    color: var(--muk-black);
}

p {
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.8);
}

.section-label {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--charcoal);
}

/* Large Editorial Headlines (Sparse Serif Accent) */
.editorial-title {
    font-family: var(--font-serif);
    font-size: 5.5vw;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -0.02em;
    color: var(--muk-black);
}

.editorial-title em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 768px) {
    .editorial-title {
        font-size: 9.5vw;
    }
}

/* ==========================================================================
   BUTTONS & ACCENTS (NO LARGE YELLOW BLOCKS)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.25);
    color: var(--muk-black);
    padding: 13px 26px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: border-color var(--transition-medium), color var(--transition-medium);
}

/* Elegant fill animation with soft yellow */
.btn::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--la-yellow);
    z-index: 1;
    transition: top var(--transition-medium) var(--ease-out-expo);
}

.btn > span {
    position: relative;
    z-index: 2;
    transition: color var(--transition-medium);
}

.btn:hover {
    border-color: var(--la-yellow);
}

.btn:hover > span {
    color: var(--muk-black);
}

.btn:hover::before {
    top: 0;
}

/* Secondary Button with subtle yellow accent */
.btn-yellow {
    border-color: var(--la-yellow);
}

/* Back-to-Top Button */
.btn-minimal {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--muk-black);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-minimal::before {
    display: none;
}

.btn-minimal:hover {
    border-color: var(--la-yellow);
    color: var(--la-yellow);
}

/* ==========================================================================
   FIXED NAVIGATION (LIGHT BLURRED TRANSLUCENT)
   ========================================================================== */
/* NAVBAR STACKING BACKUP — uncomment to revert
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 45px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background-color var(--transition-medium), padding var(--transition-medium), backdrop-filter var(--transition-medium);
    border: none !important;
    border-bottom: none !important;
    background-color: transparent !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}
*/
/* NAVBAR BACKGROUND MASK BACKUP — uncomment to revert
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 45px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: background-color var(--transition-medium), padding var(--transition-medium), backdrop-filter var(--transition-medium);
    border: none !important;
    border-bottom: none !important;
    background-color: transparent !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.navbar.scrolled {
    background-color: transparent !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 35px 4% !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
*/
/* NAVBAR HERO BACKGROUND MASK BACKUP — uncomment to revert
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 0;
    width: 100%;
    padding: 45px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: background-color var(--transition-medium), padding var(--transition-medium), backdrop-filter var(--transition-medium);
    border: none !important;
    border-bottom: none !important;
    background-color: transparent !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.navbar::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent !important;
    background-color: transparent !important;
    z-index: -1;
}

.navbar.scrolled {
    background-color: transparent !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 35px 4% !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
*/
/* NAVBAR HERO TRANSITION BACKUP — uncomment to revert
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 0;
    width: 100%;
    padding: 45px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: background-color var(--transition-medium), padding var(--transition-medium), backdrop-filter var(--transition-medium);
    border: none !important;
    border-bottom: none !important;
    background-color: transparent !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.navbar::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent !important;
    background-color: transparent !important;
    z-index: -1;
    transition: background-color var(--transition-medium);
}

.navbar.scrolled::before {
    background-color: transparent !important;
    background: transparent !important;
}

.navbar.scrolled {
    background-color: transparent !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 35px 4% !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    margin-top: 0;
    width: 100%;
    padding: 45px 4%; /* Spacious vertical padding to beautifully frame the dramatically oversized floating logo */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: background-color var(--transition-medium), padding var(--transition-medium), backdrop-filter var(--transition-medium);
    border: none !important;
    border-bottom: none !important;
    background-color: transparent !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

/* NAVBAR SCROLLED SHADOW BACKUP — uncomment to revert
.navbar.scrolled {
    background-color: transparent !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 35px 4% !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}
*/
.navbar.scrolled {
    background-color: transparent !important;
    background: transparent !important;
    backdrop-filter: none !important; /* Remove any visible background containers, banners, or blurs */
    -webkit-backdrop-filter: none !important;
    padding: 35px 4% !important; /* Elevated padding to elegantly frame the massive oversized floating logo when scrolled */
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* Nav Links Left */
.nav-menu {
    display: flex;
    gap: 32px;
}

/* NAV LINKS COLOR BACKUP — uncomment to revert
.navbar:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.72) !important;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease, opacity 0.25s ease;
    mix-blend-mode: difference;
    opacity: 0.8;
}
.navbar:not(.scrolled) .nav-link:hover {
    color: var(--la-yellow) !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
}
.navbar.scrolled .nav-link {
    color: var(--muk-black) !important;
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease, opacity 0.25s ease;
    mix-blend-mode: normal !important;
    opacity: 0.7;
}
.navbar.scrolled .nav-link:hover {
    color: var(--la-yellow) !important;
    opacity: 1 !important;
}
*/
/* Nav Links Left - Default (on Hero) */
.navbar:not(.scrolled) .nav-link,
.navbar:not(.scrolled) .nav-instagram-link {
    color: rgba(255, 255, 255, 0.72) !important;
}
.navbar:not(.scrolled) .nav-link {
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease, opacity 0.25s ease;
    mix-blend-mode: difference;
    opacity: 0.8;
}

.navbar:not(.scrolled) .nav-link::after {
    display: none !important; /* Remove underline completely */
}

.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-instagram-link:hover {
    color: var(--la-yellow) !important; /* LA Sunshine Yellow: #ffd417 */
    opacity: 1 !important;
    mix-blend-mode: normal !important; /* Disable difference blend mode to show pure yellow */
}

/* Nav Links Left - Scrolled (off Hero) */
.navbar.scrolled .nav-link,
.navbar.scrolled .nav-instagram-link {
    color: var(--muk-black) !important;
}
.navbar.scrolled .nav-link {
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease, opacity 0.25s ease;
    mix-blend-mode: normal !important;
    opacity: 0.7;
}

.navbar.scrolled .nav-link::after {
    display: none !important; /* Remove underline completely */
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-instagram-link:hover {
    color: var(--la-yellow) !important; /* LA Sunshine Yellow: #ffd417 */
    opacity: 1 !important;
}

/* Nav Logo Center - Default (on Hero) */
/* NAV LOGO HERO BACKUP — uncomment to revert
.navbar:not(.scrolled) .nav-logo-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform var(--transition-slow);
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: difference;
}
*/
.navbar:not(.scrolled) .nav-logo-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform var(--transition-slow);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 88px;
    clip-path: inset(0px 0px 0px 0px);
    overflow: hidden;
}

.navbar:not(.scrolled) .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.navbar:not(.scrolled) .nav-logo-img {
    max-width: 580px; /* Intentionally oversized luxury fashion-brand width (desktop target 520px-720px) */
    height: 116px; /* Proportionally scaled locked height (aspect lock: 0.2) to cleanly crop brand emblem bumps */
    object-fit: contain;
    object-position: bottom center;
    display: block;
    background: transparent;
    border: none;
    outline: none;
    
    /* Dynamically invert & fade the dark wide logo to white so difference blending works perfectly */
    filter: invert(1) opacity(0.96); /* High-contrast opacity for striking clarity and luxury brand definition */
    mix-blend-mode: normal;
}

/* Nav Logo Center - Scrolled (off Hero) */
/* NAV LOGO SCROLLED BACKUP — uncomment to revert
.navbar.scrolled .nav-logo-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -46%);
    cursor: pointer;
    transition: transform var(--transition-slow);
    display: flex;
    justify-content: center;
    align-items: center;
    mix-blend-mode: normal !important;
}
*/
.navbar.scrolled .nav-logo-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -46%);
    cursor: pointer;
    transition: transform var(--transition-slow);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    mix-blend-mode: normal !important;
    height: 88px;
    clip-path: inset(0px 0px 0px 0px);
    overflow: hidden;
}

.navbar.scrolled .nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.navbar.scrolled .nav-logo-img {
    max-width: 580px; /* Intentionally oversized luxury fashion-brand width (desktop target 520px-720px) */
    height: 116px; /* Proportionally scaled locked height (aspect lock: 0.2) to cleanly crop brand emblem bumps */
    object-fit: contain;
    object-position: bottom center;
    display: block;
    background: transparent;
    border: none;
    outline: none;
    filter: none !important;
}

@media (max-width: 768px) {
    .navbar:not(.scrolled) .nav-logo-img,
    .navbar.scrolled .nav-logo-img {
        max-width: 320px; /* Intentionally oversized mobile width (mobile target 280px-360px) to match desktop bold scale */
        height: 64px; /* Proportional mobile locked height (aspect lock: 0.2) to cleanly crop brand emblem bumps */
    }
}

/* Nav Controls Right - Blend Control */
.navbar:not(.scrolled) .nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    mix-blend-mode: difference;
}

.navbar.scrolled .nav-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    mix-blend-mode: normal !important;
}

/* Language Switcher - Default (on Hero) */
.navbar:not(.scrolled) .lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    mix-blend-mode: difference;
}

.navbar:not(.scrolled) .lang-btn {
    background: transparent;
    border: none !important;
    color: rgba(255, 255, 255, 0.72) !important;
    opacity: 0.35;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity var(--transition-medium);
    padding: 4px;
    border-bottom: none !important;
    outline: none;
    mix-blend-mode: difference;
}

.navbar:not(.scrolled) .lang-btn.active {
    opacity: 1 !important;
    border-bottom: none !important;
    color: rgba(255, 255, 255, 0.72) !important;
}

.navbar:not(.scrolled) .lang-separator {
    color: rgba(255, 255, 255, 0.72) !important;
    opacity: 0.35;
    font-size: 12px;
    mix-blend-mode: difference;
}

/* Language Switcher - Scrolled (off Hero) */
.navbar.scrolled .lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    mix-blend-mode: normal !important;
}

.navbar.scrolled .lang-btn {
    background: transparent;
    border: none !important;
    color: var(--muk-black) !important;
    opacity: 0.35;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity var(--transition-medium);
    padding: 4px;
    border-bottom: none !important;
    outline: none;
    mix-blend-mode: normal !important;
}

.navbar.scrolled .lang-btn.active {
    opacity: 1 !important;
    border-bottom: none !important;
    color: var(--muk-black) !important;
}

.navbar.scrolled .lang-separator {
    color: rgba(0, 0, 0, 0.15) !important;
    opacity: 1;
    font-size: 12px;
    mix-blend-mode: normal !important;
}

/* Reserve Button Sizing & General Settings */
.navbar .btn-nav {
    padding: 7px 16px;
    font-size: 11px;
    background: transparent;
    border-radius: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease !important;
}

.navbar .btn-nav::before {
    display: none !important; /* Disable standard sliding hover overlay inside nav context */
}

/* Reserve Button - Default (on Hero) */
.navbar:not(.scrolled) .btn-nav {
    border-color: rgba(255, 255, 255, 0.72) !important;
    color: rgba(255, 255, 255, 0.72) !important;
    mix-blend-mode: difference;
}

/* Reserve Button - Scrolled (off Hero) */
.navbar.scrolled .btn-nav {
    border-color: rgba(0, 0, 0, 0.25) !important;
    color: var(--muk-black) !important;
    mix-blend-mode: normal !important;
}

/* Dynamic Yellow Hover Overrides (For both Scrolled and Default state) */
.navbar .btn-nav:hover {
    background-color: #ffd417 !important;
    border-color: #ffd417 !important;
    color: #000000 !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
}

/* Hamburger Menu Mobile */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    width: 30px;
    height: 20px;
    position: relative;
    justify-content: space-between;
    flex-direction: column;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--muk-black);
    transition: transform var(--transition-medium), opacity var(--transition-fast), background-color var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--charcoal);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    background-color: var(--charcoal);
}

/* Fullscreen Menu Mobile */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hanji-white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform var(--transition-slow);
    padding: 10% 8%;
    visibility: hidden;
}

.mobile-nav-overlay.active {
    visibility: visible;
}

.mobile-nav-overlay.active {
    transform: translateY(0);
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.mobile-nav-link {
    font-family: var(--font-sans);
    font-size: 7vw;
    color: var(--muk-black);
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: color var(--transition-fast), transform var(--transition-medium);
}

.mobile-nav-link:hover {
    color: var(--la-yellow);
    transform: scale(1.05);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .navbar .btn-nav {
        display: none;
    }
    .nav-instagram-link {
        display: none !important;
    }
    .navbar {
        padding: 28px 5% !important;
    }
    .navbar .nav-actions {
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        align-items: center;
        gap: 16px;
        mix-blend-mode: normal !important;
    }
    .navbar:not(.scrolled) .nav-actions,
    .navbar.scrolled .nav-actions {
        mix-blend-mode: normal !important;
    }
    .hamburger {
        position: absolute;
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
    }
    .hamburger span {
        background-color: var(--muk-black) !important;
    }
    .navbar:not(.scrolled) .hamburger span {
        background-color: rgba(255, 255, 255, 0.85) !important;
    }
}

.mobile-nav-overlay {
    background-image: linear-gradient(rgba(243, 243, 235, 0.92), rgba(243, 243, 235, 0.92)), url('assets/paper_texture_by_freeject_net_8.jpg');
    background-size: cover;
    background-position: center;
}

.mobile-nav-footer {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-instagram-link {
    color: var(--muk-black);
    opacity: 0.55;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-instagram-link:hover {
    opacity: 1;
}

/* ==========================================================================
   HERO SECTION (BRIGHT SOFT OVERLAYS)
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: var(--hanji-white);
    clip-path: inset(0);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.95; /* Keep video vibrant and clear */
    overflow: hidden; /* Guarantee strict absolute clipping bounds */
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06); /* Scale up by 6% to push any top camera lens vignettes or coding lines completely out of screen */
    transform-origin: center center;
}

/* Hide native browser controls and play button shapes */
video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-start-playback-button {
    display: none !important;
}
video::-webkit-media-controls-panel {
    display: none !important;
}
video::-webkit-media-controls-play-button {
    display: none !important;
}

/* Subtle Dark Overlay to let the white logo stand out */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.38);
    z-index: 2;
}

/* Leftover hero branding blocks completely removed for a sleek borderless top layout */

/* Scroll Indicator (Light) */
/* Bottom Architectural Hero Reservation Button */
/* HERO RESERVE BUTTON BACKUP — uncomment to revert
.hero-reserve-btn {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    padding: 13px 32px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82) !important;
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    mix-blend-mode: difference;
    opacity: 0; /* Animated fade-in via GSAP in main.js */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease !important;
}

.hero-reserve-btn:hover {
    background-color: #ffd417 !important;
    border-color: #ffd417 !important;
    color: #000000 !important;
    mix-blend-mode: normal !important;
    transform: translateX(-50%) scale(1.02);
}
*/
/* HERO RESERVE BUTTON BACKUP — uncomment to revert
.hero-reserve-btn {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 10;
    padding: 14px 40px !important;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff !important;
    background-color: transparent !important;
    border: 1px solid #ffffff !important;
    mix-blend-mode: normal !important;
    opacity: 0; /* Animated fade-in via GSAP in main.js */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease !important;
    margin-top: 12px;
}

.hero-reserve-btn:hover {
    background-color: #ffd417 !important;
    border-color: #ffd417 !important;
    color: #000000 !important;
    mix-blend-mode: normal !important;
    transform: scale(1.02) !important;
}
*/
/* HERO RESERVE BUTTON NEW BACKUP — uncomment to revert
.hero-reserve-btn {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 10;
    display: inline-block !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 1px solid #ffffff !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    text-decoration: none !important;
    padding: 14px 40px !important;
    font-size: 0.8rem !important;
    cursor: pointer !important;
    font-family: var(--font-sans);
    font-weight: 500;
    opacity: 0; /* Animated fade-in via GSAP in main.js */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease !important;
    margin-top: 12px;
}

.hero-reserve-btn:hover {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #1a1610 !important;
    border-color: #ffffff !important;
    transform: scale(1.02) !important;
}
*/
/* HERO RESERVE BUTTON NAVBAR STYLE BACKUP — uncomment to revert */
/*
.hero-reserve-btn {
    display: inline-block !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 0.18em !important;
    text-decoration: none !important;
    padding: 13px 40px !important;
    font-family: var(--font-sans) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    margin-top: 20px !important;
    opacity: 0; /* Animated fade-in via GSAP in main.js */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, opacity 0.3s ease !important;
}

.hero-reserve-btn:hover {
    background: rgba(255,255,255,0.12) !important;
    border-color: #ffffff !important;
}
*/
.hero-reserve-btn {
    display: inline-block !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.72) !important;
    color: rgba(255, 255, 255, 0.72) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.22em !important;
    text-decoration: none !important;
    padding: 7px 16px !important;
    font-family: var(--font-sans) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    margin-top: 16px !important;
    opacity: 1 !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease !important;
}

.hero-reserve-btn:hover {
    background-color: #ffd417 !important;
    border-color: #ffd417 !important;
    color: #000000 !important;
}

@media (max-width: 768px) {
    /* Hero responsive layout updates cleanly preserved */
}

/* ==========================================================================
   SECTION 1 — PHILOSOPHY (CALM NEUTRAL BRIGHT)
   ========================================================================== */
/* PHILOSOPHY_CSS_BACKUP_ORIGINAL
.philosophy-section {
    position: relative;
    padding: 14vh 8% 16vh;
    background-color: var(--hanji-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.philosophy-label-container {
    width: 100%;
    max-width: 1100px;
    margin-bottom: 4vh;
}

.philosophy-hero-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 50vh;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6vh;
}

.philosophy-hero-wrapper .well-svg-container {
    position: absolute;
    width: 440px;
    height: 440px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.88;
    pointer-events: none;
}

.well-svg-outline {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #000000;
    stroke-width: 0.9;
}

.well-svg-center {
    position: absolute;
    width: 280px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.98) 100%);
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.12), 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.heading-sans {
    font-family: "Aktiv Grotesk", "Noto Sans KR", "Inter", sans-serif;
    font-weight: 300;
}

.heading-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
}

.philosophy-title {
    position: relative;
    z-index: 2;
    text-align: center;
    font-size: 58px;
    line-height: 1.2;
    margin: 0;
    padding: 0 40px;
    max-width: 900px;
    opacity: 0;
    transform: translateY(40px);
    color: #ffffff !important;
    mix-blend-mode: difference !important;
}

.philosophy-title .heading-sans {
    color: inherit;
    text-shadow: none;
}

.philosophy-title .heading-serif {
    color: inherit;
    text-shadow: none;
}

.philosophy-title .ko-text {
    color: inherit;
    text-shadow: none;
}

.philosophy-title .ko-text em {
    color: inherit;
    font-style: normal;
    text-shadow: none;
}

.philosophy-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    width: 100%;
    max-width: 1100px;
    margin-top: 0px;
}

.philosophy-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.philosophy-column.left-col {
    padding-right: 4%;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.philosophy-column.right-col {
    padding-left: 4%;
}

.philosophy-text {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 300;
    line-height: 2.0;
    color: rgba(0, 0, 0, 0.75);
    text-align: justify;
    opacity: 0;
    transform: translateY(30px);
}

.philosophy-concept-tag {
    font-family: var(--font-sans);
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal);
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 768px) {
    .philosophy-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .philosophy-column.left-col {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 40px;
    }
    .philosophy-column.right-col {
        padding-left: 0;
    }
    .philosophy-text {
        font-size: 16px;
    }
}

.philosophy-grid-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin-top: 20px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
}

.philosophy-image-item {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--charcoal);
}

.philosophy-grid-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    transition: transform var(--transition-slow);
    display: block;
}

.philosophy-image-item:hover .philosophy-grid-img {
    transform: scale(1.04);
}

@media (max-width: 1024px) {
    .philosophy-hero-wrapper {
        height: 40vh;
        min-height: 320px;
        margin-bottom: 4vh;
    }
    .philosophy-hero-wrapper .well-svg-container {
        width: 360px;
        height: 360px;
    }
    .well-svg-center {
        width: 220px;
        height: 140px;
    }
    .philosophy-title {
        font-size: 42px;
        padding: 0 20px;
    }
    .philosophy-grid-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 20px;
        margin-bottom: 60px;
    }
    .philosophy-grid-img {
        height: 340px;
    }
}

@media (max-width: 576px) {
    .philosophy-hero-wrapper {
        height: 35vh;
        min-height: 280px;
        margin-bottom: 3vh;
    }
    .philosophy-hero-wrapper .well-svg-container {
        width: 280px;
        height: 280px;
    }
    .well-svg-center {
        width: 170px;
        height: 110px;
    }
    .philosophy-title {
        font-size: 30px;
        padding: 0 10px;
    }
    .philosophy-grid-images {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 10px;
        margin-bottom: 40px;
    }
    .philosophy-grid-img {
        height: 280px;
    }
}
PHILOSOPHY_CSS_BACKUP_ORIGINAL */

/* ==========================================================================
   SECTION 1 — PHILOSOPHY (REVERTED SIMPLER VERSION WITH PAPER TEXTURE)
   ========================================================================== */
.philosophy-section {
    position: relative;
    padding: 16vh 8% 18vh;
    background-image: linear-gradient(rgba(243, 243, 235, 0.93), rgba(243, 243, 235, 0.93)), url('assets/paper_texture_by_freeject_net_8.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    
    /* Enabled 3D context for slow perspective-shift scroll animations */
    perspective: 1200px;
}

.philosophy-label-container {
    width: 100%;
    max-width: 1100px;
    margin-bottom: 6vh;
    position: relative;
    z-index: 2;
}

/* The Well Oval Symbol — Light Architectural Styling (Smaller, Delicately Positioned Above Headline) */
.well-svg-container {
    width: 220px;
    height: 220px;
    margin-bottom: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    
    /* 3D and blur properties for cinematic emerge scroll-animation fallback */
    opacity: 0.2;
    transform: translateY(100px) scale(0.85) rotateX(70deg);
    filter: blur(8px);
    transform-style: preserve-3d;
}

.well-svg-outline {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #000000;
    stroke-width: 0.9; /* Thin, minimal lines */
}

.well-svg-center {
    position: absolute;
    width: 176px;
    height: 52px;
    border-radius: 50%;
    
    /* Glossy 3D Surface: subtle gradient lighting from top-left to bottom-right */
    background: linear-gradient(135deg, #181818 0%, #000000 65%, #0d0d0d 100%);
    
    /* Complex layered highlights and shadows representing realistic glossy depth */
    box-shadow: 
        /* Deep soft shadow underneath the plate */
        0 15px 35px rgba(0, 0, 0, 0.35),
        /* Sharp border silhouette contrast */
        0 2px 10px rgba(0, 0, 0, 0.55),
        /* Sleek top edge rim highlight */
        inset 0 1px 3px rgba(255, 255, 255, 0.28),
        /* Bottom interior deep shadow for well depth */
        inset 0 -2px 14px rgba(0, 0, 0, 0.92),
        /* Subtle global reflection overlay */
        inset 0 0 20px rgba(255, 255, 255, 0.03);
        
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

/* Semi-transparent diagonal glare/highlight reflection for absolute glossy finish */
.well-svg-center::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
}

.philosophy-title {
    text-align: center;
    font-size: 52px;
    line-height: 1.25;
    margin: 0 0 8vh 0;
    padding: 0 40px;
    max-width: 900px;
    color: #000000; /* Rich Muk Black main text */
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
}

.philosophy-title .heading-sans {
    font-family: "Noto Sans KR", "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.philosophy-title .heading-serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
}

.philosophy-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 2;
}

.philosophy-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.philosophy-column.left-col {
    padding-right: 4%;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.philosophy-column.right-col {
    padding-left: 4%;
}

.philosophy-text {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    line-height: 2.2;
    color: rgba(0, 0, 0, 0.75);
    text-align: justify;
    opacity: 0;
    transform: translateY(30px);
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.philosophy-concept-tag {
    font-family: "Noto Sans KR", sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal);
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
}

@media (max-width: 768px) {
    .philosophy-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .philosophy-column.left-col {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 40px;
    }
    .philosophy-column.right-col {
        padding-left: 0;
    }
    .philosophy-text {
        font-size: 13px;
    }
    .philosophy-title {
        font-size: 38px;
        padding: 0 10px;
        margin-bottom: 6vh;
    }
    .well-svg-container {
        width: 160px;
        height: 160px;
        margin-bottom: 30px;
    }
    .well-svg-center {
        width: 128px;
        height: 38px;
    }
}

/* ==========================================================================
   SECTION 2 — CHEF SECTION (NATURAL SAND CONTRAST)
   ========================================================================== */
.chef-section {
    position: relative;
    padding: 16vh 8%;
    background-color: var(--natural-sand); /* Sand creates soft architectural divider */
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.chef-grid {
    display: grid;
    grid-template-columns: 4.5fr 5.5fr;
    gap: 8%;
    width: 100%;
    max-width: 1200px;
    align-items: center;
}

.chef-image-wrap {
    width: 100%;
    overflow: visible;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    will-change: transform;
}

.chef-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(243, 243, 235, 0.15) 0%, rgba(243, 243, 235, 0) 50%);
    pointer-events: none;
}

.chef-image {
    width: 100%;
    height: 65vh;
    object-fit: cover;
    filter: brightness(1.02) contrast(0.98) grayscale(0.2); /* Muted bright styling */
    transform: scale(1.1);
    transition: transform var(--transition-slow);
}

.chef-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chef-title-block {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 24px;
}

.chef-name {
    font-family: var(--font-sans);
    font-size: 4vw;
    line-height: 1.1;
    font-weight: 500;
    color: var(--muk-black);
}

.chef-name span {
    font-size: 18px;
    color: var(--charcoal);
    font-family: var(--font-sans);
    margin-left: 10px;
    letter-spacing: 0.05em;
    font-weight: 400;
}

.chef-role {
    font-family: var(--font-sans);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    font-weight: 400;
}

.chef-bio {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.95;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 35px;
}

/* Accolades styled cleanly */
.chef-accolades {
    border-left: 1px solid var(--charcoal);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accolade-item {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}



@media (max-width: 1024px) {
    .chef-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .chef-name {
        font-size: 34px;
    }
    .chef-image {
        height: 50vh;
    }
}

/* ==========================================================================
   SECTION 3 — PHOTO MARQUEE (SOFT NEUTRAL BRIGHT)
   ========================================================================== */
.marquee-section {
    position: relative;
    padding: 10vh 0;
    background-color: var(--hanji-white);
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.marquee-container {
    width: 100%;
    display: flex;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 30px;
    padding: 0 15px;
    will-change: transform;
}

.marquee-item {
    flex-shrink: 0;
    width: 400px;
    height: 270px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.marquee-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) contrast(0.98) brightness(0.98); /* Soft desaturated marquee */
    transition: transform var(--transition-slow), filter var(--transition-medium);
}

.marquee-item:hover .marquee-img {
    transform: scale(1.06);
    filter: grayscale(0) contrast(1) brightness(1.0);
}

/* Lighter, softer captions */
.marquee-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(360deg, rgba(243, 243, 235, 0.95) 0%, rgba(243, 243, 235, 0) 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
    pointer-events: none;
}

.marquee-item:hover .marquee-caption {
    opacity: 1;
    transform: translateY(0);
}

.marquee-caption-title {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    font-weight: 500;
}

.marquee-caption-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--muk-black);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .marquee-item {
        width: 280px;
        height: 200px;
    }
}

/* ==========================================================================
   SECTION 4 — MENU (CLEAN LIGHT NEUTRAL)
   ========================================================================== */
.menu-section {
    position: relative;
    padding: 20vh 8%;
    background-color: var(--hanji-white);
    color: var(--muk-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.menu-header {
    text-align: center;
    margin-bottom: 70px;
}

.menu-title {
    font-family: var(--font-serif);
    font-size: 4.8vw;
    line-height: 1.2;
    color: var(--muk-black);
}

/* Minimalist Clean Tab Swap (No Decorative Serif in buttons) */
.menu-tabs {
    display: flex;
    gap: 40px;
    margin-bottom: 70px;
    position: relative;
}

.menu-tab-btn {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.35);
    cursor: pointer;
    position: relative;
    padding: 8px 16px;
    transition: color var(--transition-fast);
    letter-spacing: 0.05em;
}

.menu-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 1px;
    background-color: var(--muk-black);
    transition: width var(--transition-medium) var(--ease-out-expo), left var(--transition-medium) var(--ease-out-expo);
}

.menu-tab-btn.active {
    color: var(--muk-black);
    font-weight: 500;
}

.menu-tab-btn.active::after {
    width: 100%;
    left: 0;
}

/* Tab Panels Content */
.menu-panels {
    width: 100%;
    max-width: 1000px;
    position: relative;
}

.menu-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.menu-panel.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 80px;
    opacity: 1;
    transform: translateY(0);
}

/* Modern clean item layout */
.menu-item {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 24px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 12px;
}

.menu-item-title {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 500;
    color: var(--muk-black);
}

.menu-item-title span {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.5);
    margin-left: 8px;
    display: inline-block;
}

/* Clean, minimal yellow highlight border */
.menu-item-price {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    color: var(--charcoal);
    border: 1px solid var(--la-yellow);
    padding: 3px 8px;
    border-radius: 2px;
}

.menu-item-desc {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.75;
    color: rgba(0, 0, 0, 0.65);
}

.menu-pdf-notice {
    margin-top: 70px;
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .menu-panel.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .menu-title {
        font-size: 32px;
    }
    .menu-tab-btn {
        font-size: 18px;
    }
}

/* ==========================================================================
   SECTION 5 — MASONRY GALLERY WITH LIGHT BOX
   ========================================================================== */
.gallery-section {
    position: relative;
    padding: 18vh 8%;
    background-color: var(--hanji-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title {
    font-family: var(--font-serif);
    font-size: 4.8vw;
    line-height: 1.2;
}

/* Clean Filter Toggles */
.gallery-filters {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.gallery-filter-btn {
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 0.4);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    padding: 6px 4px;
    transition: color var(--transition-fast);
}

.gallery-filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 1px;
    background-color: var(--la-yellow);
    transition: width var(--transition-medium), left var(--transition-medium);
}

.gallery-filter-btn.active {
    color: var(--muk-black);
    font-weight: 600;
}

.gallery-filter-btn.active::after {
    width: 100%;
    left: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    aspect-ratio: 1 / 1;
    cursor: pointer;
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.gallery-item.tall {
    aspect-ratio: 3 / 4;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.gallery-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(0.98) brightness(1.0);
    transition: transform var(--transition-slow), filter var(--transition-medium);
}

.gallery-item:hover .gallery-item-img {
    transform: scale(1.04);
    filter: grayscale(0) contrast(1.0) brightness(1.0);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(243, 243, 235, 0.6); /* Soft light overlay on hover */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-expand-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--muk-black);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--muk-black);
    font-size: 20px;
    transform: scale(0.8);
    transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-expand-icon {
    transform: scale(1);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.wide {
        grid-column: span 1;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-title {
        font-size: 32px;
    }
    .gallery-filters {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .gallery-item.tall {
        aspect-ratio: 1 / 1;
    }
}

/* Fullscreen Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(243, 243, 235, 0.96); /* Soft Hanji White Light Box */
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content-wrap {
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(0,0,0,0.06);
    transform: scale(0.95);
    transition: transform var(--transition-medium);
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--muk-black);
    font-size: 32px;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--la-yellow);
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--muk-black);
    font-size: 38px;
    cursor: pointer;
    padding: 20px;
    transition: color var(--transition-fast);
}

.lightbox-arrow:hover {
    color: var(--la-yellow);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
    }
    .lightbox-arrow {
        padding: 10px;
    }
    .lightbox-prev {
        left: 5px;
    }
    .lightbox-next {
        right: 5px;
    }
}

/* ==========================================================================
   SECTION 6 — RESERVATION & CONTACT (SOFT NEUTRAL SAND GRID)
   ========================================================================== */
/* CONTACT SECTION 1 OVERFLOW BACKUP — uncomment to revert
.contact-section {
    position: relative;
    padding: 18vh 8%;
    background-color: var(--natural-sand); 
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
*/
.contact-section {
    position: relative;
    overflow: hidden;
    padding: 18vh 8%;
    background-color: var(--natural-sand); /* Natural sand coordinates with lighter brand tone */
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    width: 100%;
    max-width: 1100px;
}

.contact-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* CONTACT TITLE BACKUP — uncomment to revert
.contact-title {
    font-family: var(--font-serif);
    font-size: 4.8vw;
    line-height: 1.1;
    margin-bottom: 30px;
}
*/
/* CONTACT TITLE CLAMP BACKUP — uncomment to revert
.contact-title {
    font-family: var(--font-serif);
    font-size: 4.8vw;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
*/
.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4.8vw, 64px);
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.contact-desc {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
    max-width: 480px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-buttons .btn {
    min-width: 180px;
}

.contact-meta-group {
    margin-bottom: 30px;
}

.contact-meta-label {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-meta-val {
    font-family: var(--font-sans);
    font-size: 15px;
    color: rgba(0, 0, 0, 0.85);
}

.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Beautiful Warm Gray-scaled Maps Blend */
.map-container {
    width: 100%;
    height: 380px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    /* Soft Warm Grayscale to match natural sand/hanji themes */
    filter: grayscale(0.85) contrast(1.05) brightness(1.02) sepia(0.08);
    opacity: 0.85;
    transition: opacity var(--transition-medium), filter var(--transition-medium);
}

.map-container:hover iframe {
    opacity: 1;
    filter: grayscale(0.65) contrast(1.0) brightness(1.0) sepia(0.04);
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .contact-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .contact-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   FOOTER (CLEAN SPARCE JOURNAL FINALE)
   ========================================================================== */
.footer-section {
    padding: 12vh 8% 6vh;
    background-color: var(--hanji-white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top-row {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 50px;
    margin-bottom: 40px;
}

.footer-logo-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo-placeholder {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--muk-black);
    text-transform: uppercase;
}

.footer-tagline {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    font-weight: 400;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav-link {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.footer-nav-link:hover {
    color: var(--la-yellow);
}

.footer-bottom-row {
    width: 100%;
    max-width: 1100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.footer-socials {
    display: flex;
    gap: 24px;
}

.footer-social-link {
    color: rgba(0, 0, 0, 0.4);
    text-decoration: none;
    font-size: 18px;
    transition: color var(--transition-fast);
}

.footer-social-link:hover {
    color: var(--la-yellow);
}

@media (max-width: 768px) {
    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .footer-nav {
        flex-direction: column;
        gap: 16px;
    }
    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

/* ==========================================================================
   NAVBAR INSTAGRAM ICON
   ========================================================================== */
/* INSTAGRAM LINK TRANSITION BACKUP — uncomment to revert
.nav-instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: 0.75;
    transition: opacity 0.3s ease;
    margin-right: 20px;
    text-decoration: none;
}
.nav-instagram-link:hover { opacity: 1; }
.nav-instagram-icon { width: 17px; height: 17px; display: block; }
*/
.nav-instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    opacity: 0.75;
    transition: color 0.25s ease, opacity 0.3s ease;
    margin-right: 20px;
    text-decoration: none;
}
.nav-instagram-link:hover { opacity: 1; }
.nav-instagram-icon { width: 17px; height: 17px; display: block; }

/* ==========================================================================
   HERO ACCOLADES
   ========================================================================== */
/* HERO CTA WRAPPER BACKUP — uncomment to revert
.hero-cta-wrapper {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
*/
/* HERO CTA WRAPPER NEW BACKUP — uncomment to revert
.hero-cta-wrapper {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 10;
}
.hero-accolades {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}
.michelin-logo {
    max-height: 48px !important;
    height: auto !important;
    width: auto !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    filter: none !important;
    transform: none !important;
    border-radius: 0 !important;
}
.blueribbon-logo {
    max-height: 48px !important;
    height: auto !important;
    width: auto !important;
    opacity: 1 !important;
    mix-blend-mode: normal !important;
    filter: none !important;
    transform: none !important;
    border-radius: 0 !important;
}
.accolade-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.25); }
*/
.hero-cta-wrapper {
    position: absolute !important;
    bottom: 80px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: max-content !important;
    z-index: 10 !important;
}

/* HERO ACCOLADES ALIGNMENT BACKUP — uncomment to revert */
/*
.hero-accolades {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    margin-bottom: 16px !important;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}

.accolade-item { display: flex; align-items: center; justify-content: center; }

.michelin-logo,
.blueribbon-logo {
    height: 44px !important;
    width: auto !important;
    max-height: 44px !important;
    object-fit: contain !important;
    display: block !important;
}

.blueribbon-logo {
    height: 90px !important;
    max-height: 90px !important;
    width: auto !important;
}

.accolade-divider {
    width: 1px !important;
    height: 28px !important;
    background: rgba(255, 255, 255, 0.35) !important;
    display: block !important;
    flex-shrink: 0 !important;
}
*/
/* HERO ACCOLADES V1 ALIGNMENT BACKUP — uncomment to revert */
/*
.hero-accolades {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    margin-bottom: 16px !important;
}

.accolade-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 72px !important;
}

.accolade-divider {
    width: 1px !important;
    height: 32px !important;
    background: rgba(255, 255, 255, 0.35) !important;
    display: block !important;
    flex-shrink: 0 !important;
    margin: 0 12px !important;
}

.michelin-logo {
    height: 40px !important;
    width: auto !important;
    max-height: 40px !important;
    object-fit: contain !important;
    display: block !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.blueribbon-logo {
    height: 40px !important;
    width: auto !important;
    max-height: 40px !important;
    object-fit: contain !important;
    display: block !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}
*/
.hero-accolades {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    margin-bottom: 16px !important;
}

.hero-accolades.is-visible { opacity: 1; transform: translateY(0); }

.accolade-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 80px !important;
    height: auto !important;
    overflow: visible !important;
}
.accolade-item a { display: inline-flex; align-items: center; justify-content: center; opacity: 1; transition: opacity 0.3s ease; }
.accolade-item a:hover { opacity: 0.75; }

.accolade-divider {
    display: block !important;
    width: 1px !important;
    height: 36px !important;
    background: rgba(255,255,255,0.4) !important;
    flex-shrink: 0 !important;
    margin: 0 12px !important;
    align-self: center !important;
}

.michelin-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 60px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

.blueribbon-logo {
    height: 56px !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* ==========================================================================
   PAPER TEXTURE BACKGROUND (ALL SECTIONS)
   ========================================================================== */
.paper-texture-section {
    position: relative;
    background-image: url('assets/paper_texture_by_freeject_net_8.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    isolation: isolate;
}
.paper-texture-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(223, 218, 210, 0.75);
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}
.paper-texture-section > * { position: relative; z-index: 1; }

/* ==========================================================================
   TAPE PIECES
   ========================================================================== */
.tape {
    position: absolute;
    width: 48px;
    height: 22px;
    background: rgba(245, 240, 225, 0.82);
    border: 1px solid rgba(200, 192, 170, 0.35);
    z-index: 10;
    pointer-events: none;
}
.tape-tl { top: -10px; left: 10px; transform: rotate(-35deg); }
.tape-tr { top: -10px; right: 10px; transform: rotate(35deg); }
.tape-bl { bottom: -10px; left: 10px; transform: rotate(35deg); }
.tape-br { bottom: -10px; right: 10px; transform: rotate(-35deg); }

/* PHILOSOPHY REDESIGN BACKUP — uncomment to revert
/* ==========================================================================
   PHILOSOPHY SECTION
   ========================================================================== * /
.philosophy-section {
    padding: 100px 6%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
}
.philosophy-label-container { margin-bottom: 40px; }
.philosophy-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    flex: 1;
}
.philosophy-left { display: flex; flex-direction: column; gap: 32px; }
.well-symbol-wrap {
    display: block;
    width: 120px;
    height: 80px;
    margin-top: -45px;
    margin-bottom: 32px;
    position: relative;
    top: -50px;
    opacity: 0;
    transform: translateY(32px);
    will-change: transform;
}
.well-svg { display: block; overflow: visible; }
.well-disc { transform-origin: 60px 40px; }

@keyframes rotateForwardOuter {
    from { transform: perspective(200px) rotateX(0deg); }
    to { transform: perspective(200px) rotateX(360deg); }
}

@keyframes rotateForwardInner {
    from { transform: perspective(200px) rotateX(0deg); }
    to { transform: perspective(200px) rotateX(-360deg); }
}

.well-ring-outer {
    animation: rotateForwardOuter 6s linear infinite;
    transform-origin: center center;
    will-change: transform;
}
.well-ring-inner {
    animation: rotateForwardInner 4s linear infinite;
    transform-origin: center center;
    will-change: transform;
}
.philosophy-headline {
    font-family: var(--font-serif);
    font-size: 2.8vw;
    font-weight: 300;
    line-height: 1.1;
    color: #1a1610;
    mix-blend-mode: multiply;
}
.heading-sans { font-family: var(--font-sans); font-size: 0.65em; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; display: block; }
.heading-serif { font-family: var(--font-serif); font-style: italic; }
.philosophy-body-text {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 2;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 0.78;
    mix-blend-mode: multiply;
}
.philosophy-photos {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}
.philosophy-photo-wrap {
    position: absolute;
    overflow: visible;
}
.philosophy-photo-main {
    width: 280px;
    left: 0;
    top: 0;
    z-index: 2;
    transform: rotate(-1deg);
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    mix-blend-mode: multiply;
}
.philosophy-photo-secondary {
    width: 240px;
    right: 0;
    bottom: 0;
    z-index: 3;
    transform: rotate(1.5deg);
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
    mix-blend-mode: multiply;
}
.philosophy-photo-img { width: 100%; height: auto; display: block; }
.philosophy-right { display: flex; flex-direction: column; gap: 16px; }
.philosophy-right-rule { font-size: 13px; opacity: 0.5; color: #1a1610; }
.philosophy-right-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    color: #1a1610;
    mix-blend-mode: multiply;
}
.philosophy-right-text {
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 2;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 0.75;
    mix-blend-mode: multiply;
}
*/

/* ==========================================================================
   PHILOSOPHY SECTION REDESIGN
   ========================================================================== */
.philosophy-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 8%;
    box-sizing: border-box;
    overflow: hidden;
    perspective: 800px;
}
.philosophy-layout {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px; /* Explicit height matching the photo for vertical distribution */
}
.philosophy-left-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    width: 25%;
    min-width: 240px;
    max-width: 280px;
}
.philosophy-text-left {
    width: 100%;
    max-width: 280px;
    margin-top: auto; /* Push paragraph 1 to the bottom */
}
.philosophy-center-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    min-width: 300px;
    max-width: 400px;
}
.philosophy-right-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    height: 100%;
    width: 25%;
    min-width: 240px;
    max-width: 280px;
}
.philosophy-right-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 60px; /* Position title in the upper-middle area */
}
.philosophy-right-rule {
    width: 40px;
    height: 1px;
    background-color: rgba(26, 22, 16, 0.25);
    margin: 16px 0;
}
.philosophy-text-right {
    width: 100%;
    max-width: 280px;
    margin-top: auto; /* Push paragraph 2 to the bottom */
}
.philosophy-label {
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 1; /* Darker, full opacity label text */
}
.philosophy-title,
.philosophy-right-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    color: #1a1610;
    mix-blend-mode: multiply;
    margin: 0;
    white-space: nowrap;
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-indent: 0 !important;
}
.philosophy-text {
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.08em;
    line-height: 2;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 0.78;
    mix-blend-mode: multiply;
    margin: 0;
    text-align: justify;
}
.philosophy-photos-stack {
    position: relative;
    width: 400px;
    height: 560px;
}

.philosophy-photo-wrap {
    position: absolute;
    overflow: visible;
    background: #f5f2eb;
    padding: 10px 10px 36px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.06);
    will-change: transform;
}

.philosophy-photo-main {
    width: 260px;
    top: 0;
    left: 0;
    transform: rotate(-2deg);
    z-index: 2;
}

.philosophy-photo-secondary {
    width: 240px;
    bottom: 0;
    right: 0;
    transform: rotate(1.5deg);
    z-index: 3;
}

.philosophy-photo-img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%) contrast(1.1);
    mix-blend-mode: multiply;
}


/* ==========================================================================
   CHEF SECTION
   ========================================================================== */
/* CHEF UPDATE BACKUP — uncomment to revert
.chef-section { padding: 100px 6%; }
.chef-label {
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 0.55;
    margin-bottom: 16px;
}
.chef-bio {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 2;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 0.75;
}
*/

.chef-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 6%;
    box-sizing: border-box;
}
.chef-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; align-items: center; max-width: 1200px; margin: 0 auto; }
.chef-image-wrap {
    position: relative;
    overflow: visible;
    width: 100%;
    max-width: 420px;
    will-change: transform;
    background: #f5f2eb;
    padding: 10px 10px 36px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.06);
}
.chef-image { width: 100%; height: auto; display: block; object-fit: cover; transform: none; }

.chef-image-wrap .tape-tl {
    position: absolute;
    width: 72px;
    height: 22px;
    background: rgba(243, 237, 218, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(190, 180, 155, 0.35);
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    mix-blend-mode: multiply;
    top: -4px;
    left: -4px;
    transform: rotate(-45deg);
    transform-origin: center center;
    z-index: 10;
    pointer-events: none;
}

.chef-image-wrap .tape-br {
    position: absolute;
    width: 72px;
    height: 22px;
    background: rgba(243, 237, 218, 0.62);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(190, 180, 155, 0.35);
    box-shadow: 0 1px 3px rgba(0,0,0,0.07);
    mix-blend-mode: multiply;
    bottom: -4px;
    right: -4px;
    transform: rotate(-45deg);
    transform-origin: center center;
    z-index: 10;
    pointer-events: none;
}
.chef-label {
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 0.78;
    margin-bottom: 16px;
}
.chef-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    color: #1a1610;
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}
.chef-name .ko-text:first-child { font-family: 'Noto Serif KR', serif; }
.chef-name-secondary { font-size: 18px; font-family: var(--font-sans); font-weight: 300; color: rgba(26,22,16,0.6); }
.chef-bio {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 2;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 1;
    font-weight: 500;
}


.chef-name > .en-text,
.chef-name-secondary > .ko-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: normal;
}
.chef-name > .en-text {
    font-size: 28px;
}
.chef-name > .ko-text {
    font-size: 18px;
}

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu-section {
    padding: 100px 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
}
.menu-plate-frame {
    position: relative;
    width: 560px;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.menu-plate-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    opacity: 0.88;
    filter: drop-shadow(0px 12px 28px rgba(0,0,0,0.12));
}
.menu-plate-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
    width: 65%;
}
.menu-plate-label {
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu-plate-title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    color: #1a1610;
    margin: 0;
}
.menu-plate-btn {
    display: inline-block;
    border: 1px solid rgba(26,22,16,0.35);
    padding: 10px 22px;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1a1610;
    text-decoration: none;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.menu-plate-btn:hover { background-color: #ffd417; border-color: #ffd417; color: #1a1610; }
.menu-photo-wrap {
    position: absolute;
    width: 200px;
    overflow: visible;
}
.menu-photo-left { left: 6%; top: 50%; transform: translateY(-50%) rotate(-1.5deg); }
.menu-photo-right { right: 6%; top: 50%; transform: translateY(-50%) rotate(1.5deg); }
.menu-photo-img { width: 100%; height: auto; display: block; }

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
/* CONTACT SECTION 2 OVERFLOW BACKUP — uncomment to revert
.contact-section {
    padding: 80px 6%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
*/
.contact-section {
    padding: 80px 6%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8%;
    width: 100%;
    max-width: 1100px;
    align-items: center;
}
.contact-left-col { display: flex; flex-direction: column; justify-content: center; }
/* CONTACT LABEL BACKUP — uncomment to revert
.contact-label {
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 0.55;
    margin-bottom: 20px;
}
*/
.contact-label {
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
/* CONTACT HEADLINE BACKUP — uncomment to revert
.contact-headline {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    color: #1a1610;
    margin-bottom: 16px;
}
*/
.contact-headline {
    font-family: var(--font-serif);
    font-size: 32px;
    line-height: 1.2;
    font-weight: 400;
    color: #1a1610;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.contact-subtext {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    line-height: 2;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 0.78;
    margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 0.78;
}
.form-field input, .form-field textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(26,22,16,0.2);
    padding: 8px 0;
    font-family: var(--font-sans);
    font-size: 13px;
    color: #1a1610;
    outline: none;
    resize: none;
    width: 100%;
}
.form-field input:focus, .form-field textarea:focus { border-bottom-color: rgba(26,22,16,0.6); }
.contact-submit-btn {
    align-self: flex-start;
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 1;
    cursor: pointer;
    padding: 0;
    border-bottom: 1px solid rgba(26,22,16,0.3);
    padding-bottom: 4px;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.contact-submit-btn:hover { border-color: #ffd417; color: #ffd417; }
.contact-right-col { display: flex; align-items: center; justify-content: center; }
.contact-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    overflow: visible;
    background: #f5f2eb;
    padding: 10px 10px 36px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.06);
}
.contact-photo-img { width: 100%; height: auto; display: block; }
.copyright-line {
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 0.40;
}

/* ==========================================================================
   WELL SYMBOL SCROLL-DRIVEN ROTATION
   ========================================================================== */
@keyframes spinForwardOuter {
    from { transform: perspective(200px) rotateX(0deg); }
    to { transform: perspective(200px) rotateX(360deg); }
}
@keyframes spinForwardInner {
    from { transform: perspective(200px) rotateX(0deg); }
    to { transform: perspective(200px) rotateX(-360deg); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    /* PHILOSOPHY REDESIGN BACKUP — uncomment to revert
    .philosophy-layout { grid-template-columns: 1fr; }
    .philosophy-photos { height: 300px; }
    */
    .philosophy-layout {
        flex-direction: column;
        gap: 48px;
        align-items: center;
        height: auto; /* Reset desktop explicit height */
    }
    .philosophy-left-col {
        width: 100%;
        max-width: 100%;
        height: auto;
        gap: 20px;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }
    .philosophy-text-left {
        width: 100%;
        max-width: 450px;
        margin-top: 0; /* Reset desktop auto margin */
    }
    .philosophy-center-col {
        width: 100%;
        max-width: 400px;
        order: 3;
    }
    .philosophy-right-col {
        width: 100%;
        max-width: 100%;
        height: auto;
        align-items: center;
        text-align: center;
        order: 2;
    }
    .philosophy-right-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 0; /* Reset desktop upper-middle offset */
    }
    .philosophy-text-right {
        width: 100%;
        max-width: 450px;
        margin-top: 0; /* Reset desktop auto margin */
    }
    .philosophy-label {
        justify-content: center;
    }
    .philosophy-text {
        text-align: center;
    }
    .chef-grid { grid-template-columns: 1fr; }
    .contact-inner { grid-template-columns: 1fr; }
    .menu-photo-wrap { display: none; }
    .menu-plate-frame { width: 340px; height: 340px; }
}
@media (max-width: 768px) {
    .hero-accolades { flex-direction: column; gap: 16px; }
    .accolade-divider { width: 32px; height: 1px; }
    /* PHILOSOPHY REDESIGN BACKUP — uncomment to revert
    .philosophy-headline { font-size: 7vw; }
    */
}

.philosophy-section, .chef-section, .menu-section, .contact-section {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* ==========================================================================
   PARALLAX CONTINUOUS WALLPAPER (PHILOSOPHY ONWARD)
   ========================================================================== */
.parallax-wallpaper {
    position: fixed;
    inset: -10vh 0;
    height: 120vh;
    background-image: url('assets/paper_texture_by_freeject_net_8.jpg');
    background-size: cover;
    background-position: center center;
    z-index: 0;
    pointer-events: none;
}
.parallax-wallpaper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(223, 218, 210, 0.75);
    mix-blend-mode: multiply;
}

.philosophy-section.paper-texture-section,
.chef-section,
.menu-section,
.contact-section {
    background: transparent !important;
    background-image: none !important;
}

.paper-texture-section::before {
    display: none;
}

/* Mobile menu open state — make navbar logo and lang toggle visible on light overlay */
@media (max-width: 1024px) {
    .navbar:has(.hamburger.active) .nav-logo-img {
        filter: none !important;
    }
    .navbar:has(.hamburger.active) .lang-btn,
    .navbar:has(.hamburger.active) .lang-separator {
        color: var(--muk-black) !important;
        mix-blend-mode: normal !important;
    }
    .navbar:has(.hamburger.active) .lang-toggle {
        mix-blend-mode: normal !important;
    }
    .navbar:has(.hamburger.active) .nav-logo-wrap {
        mix-blend-mode: normal !important;
    }
}

@media (max-width: 1024px) {
    .chef-section {
        padding-top: 80px;
    }
    .chef-image-wrap {
        margin-top: 24px;
    }
}

@media (max-width: 1024px) {
    .contact-inner {
        display: flex;
        flex-direction: column;
    }
    .contact-right-col {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 1024px) {
    .contact-right-col {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .contact-right-col .contact-label {
        margin-bottom: 20px;
        position: static;
        overflow: visible;
    }
    .contact-right-col .contact-photo-wrap {
        align-self: center;
    }
}

/* Mobile-only section labels */
.contact-label-mobile,
.chef-label-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .contact-label-mobile,
    .chef-label-mobile {
        display: flex;
    }
    /* Hide the desktop labels on mobile to avoid duplicates */
    .contact-left-col > .contact-label {
        display: none;
    }
    .chef-details > .chef-label {
        display: none;
    }
}

@media (max-width: 1024px) {
    .contact-label-mobile {
        position: relative;
        z-index: 5;
        margin-bottom: 16px;
        will-change: unset !important;
        transform: none !important;
    }
    .contact-right-col {
        overflow: visible;
    }
}

@media (max-width: 1024px) {
    .hamburger.active span {
        background-color: var(--muk-black) !important;
    }
}

/* ==========================================================================
   IPAD / TABLET ONLY (768px – 1024px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {

    /* Navbar: lower the logo to align with hamburger and EN/KO */
    .navbar:not(.scrolled) .nav-logo-wrap,
    .navbar.scrolled .nav-logo-wrap {
        top: 50%;
        transform: translate(-50%, -50%);
        align-items: center;
        height: auto;
    }

    /* Contact: center the label above the photo */
    .contact-right-col {
        align-items: center;
    }
    .contact-right-col .contact-label-mobile {
        justify-content: center;
        align-self: center;
    }

    /* Chef: center label, photo, and details */
    .chef-grid {
        justify-items: center;
        text-align: center;
    }
    .chef-label-mobile {
        justify-content: center;
    }
    .chef-image-wrap {
        margin-left: auto;
        margin-right: auto;
    }
    .chef-details {
        align-items: center;
        text-align: center;
    }
    .chef-name {
        justify-content: center;
    }

    /* Philosophy: balance vertical spacing of photo stack */
    .philosophy-section {
        min-height: auto;
        padding-bottom: 100px;
    }
    .philosophy-photos-stack {
        margin: 0 auto;
    }
    .philosophy-center-col {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

.gallery-label {
    display: flex;
    align-items: center;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a1610;
    opacity: 1;
    margin-bottom: 40px;
}

/* Gallery page — force dark navbar text since background is light */
.gallery-page .navbar:not(.scrolled) .nav-link,
.gallery-page .navbar:not(.scrolled) .nav-instagram-link,
.gallery-page .navbar:not(.scrolled) .lang-btn,
.gallery-page .navbar:not(.scrolled) .lang-separator {
    color: var(--muk-black) !important;
    mix-blend-mode: normal !important;
    opacity: 0.7;
}
.gallery-page .navbar:not(.scrolled) .nav-link:hover,
.gallery-page .navbar:not(.scrolled) .nav-instagram-link:hover {
    color: var(--la-yellow) !important;
    opacity: 1 !important;
}
.gallery-page .navbar:not(.scrolled) .btn-nav {
    border-color: rgba(0,0,0,0.25) !important;
    color: var(--muk-black) !important;
    mix-blend-mode: normal !important;
}
.gallery-page .navbar:not(.scrolled) .hamburger span {
    background-color: var(--muk-black) !important;
}
.gallery-page .navbar:not(.scrolled) .nav-logo-img {
    filter: none !important;
    mix-blend-mode: normal !important;
}
.gallery-page .navbar:not(.scrolled) .nav-logo-wrap {
    mix-blend-mode: normal !important;
}

/* ==========================================================================
   GALLERY PAGE — developed print frames + tape (gallery page only)
   ========================================================================== */
.gallery-page .gallery-grid {
    grid-auto-flow: dense;
    gap: 32px;
    padding: 40px 0;
    overflow: visible;
    max-width: 820px;
    margin: 0 auto;
    transform: translateX(-12%);
}

.gallery-page .gallery-item {
    background: #f5f2eb;
    padding: 10px 10px 36px 10px;
    box-shadow: 0 10px 28px rgba(26, 22, 16, 0.16), 0 2px 6px rgba(26, 22, 16, 0.10);
    overflow: visible;
    position: relative;
    border: none;
}

.gallery-page .gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Subtle alternating rotation */
.gallery-page .gallery-item:nth-child(odd) {
    transform: rotate(-0.8deg);
}
.gallery-page .gallery-item:nth-child(even) {
    transform: rotate(0.7deg);
}
.gallery-page .gallery-item:nth-child(3n) {
    transform: rotate(-0.4deg);
}

/* Tape pieces */
.gallery-page .gallery-item::before,
.gallery-page .gallery-item::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 22px;
    background: rgba(243, 237, 218, 0.62);
    box-shadow: 0 1px 3px rgba(26, 22, 16, 0.18);
    mix-blend-mode: multiply;
    z-index: 3;
    pointer-events: none;
}
.gallery-page .gallery-item::before {
    top: -8px;
    left: -14px;
    transform: rotate(-45deg);
}
.gallery-page .gallery-item::after {
    bottom: 18px;
    right: -14px;
    transform: rotate(-45deg);
}

/* Hover */
.gallery-page .gallery-item {
    transition: transform 0.35s ease;
}
.gallery-page .gallery-item:hover {
    transform: rotate(0deg) scale(1.015);
}

@media (max-width: 768px) {
    .gallery-page .gallery-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0 5%;
        box-sizing: border-box;
        gap: 40px;
        margin-bottom: 80px;
        transform: none !important;
    }

    .gallery-page .gallery-item,
    .gallery-page .gallery-item.wide,
    .gallery-page .gallery-item.tall {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
    }

    .gallery-page .gallery-section {
        padding-top: 12vh;
        padding-bottom: 300px;
        background: none !important;
    }

    .gallery-page #smooth-content {
        background-attachment: scroll !important;
        background-size: 300% auto !important;
        background-repeat: repeat-y !important;
        background-color: rgba(223, 218, 210, 0.75) !important;
    }
}

@media (max-width: 767px) {
    .gallery-page .navbar .hamburger {
        left: 5%;
        right: auto;
    }
    .gallery-page .navbar .lang-switcher {
        right: 5%;
        left: auto;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .gallery-page .gallery-grid {
        transform: none;
        max-width: 540px;
        margin: 0 auto;
        padding: 40px 0 120px 0;
        gap: 70px;
        grid-template-columns: 1fr;
    }
    .gallery-page .gallery-item.wide,
    .gallery-page .gallery-item.tall,
    .gallery-page .gallery-item {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 1024px) {
    .contact-label-mobile {
        transform: none !important;
        will-change: unset !important;
        position: relative !important;
        z-index: 5;
        margin-bottom: 16px;
    }
}

@media (min-width: 1025px) {
    .philosophy-photos-stack {
        margin-top: 60px;
    }
}

.contact-label span,
.chef-label span,
.contact-label-mobile span,
.chef-label-mobile span,
.menu-plate-label span,
.philosophy-label span {
    font-weight: 600;
}

/* Prevent FOUC on hero reserve button */
a.hero-reserve-btn {
    text-decoration: none !important;
    color: rgba(255, 255, 255, 0.82) !important;
    opacity: 0;
    font-family: var(--font-sans) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase !important;
}

@media (min-width: 1025px) {
    .gallery-page .gallery-section {
        padding-bottom: 400px;
    }
    .gallery-page .gallery-grid {
        margin-bottom: 200px;
        gap: 60px;
    }
    .gallery-page #smooth-content {
        padding-bottom: 500px;
        overflow: visible;
    }
}

.gallery-page body,
.gallery-page #smooth-content {
    background-color: #e8e3da;
}

html.gallery-html {
    background-color: #e0dbd2 !important;
}
html.gallery-html body {
    background-color: #e0dbd2 !important;
}

.gallery-page .gallery-section {
    min-height: 100vh;
    padding-bottom: 400px !important;
}

.gallery-page .gallery-item-overlay {
    display: none !important;
}
.gallery-page .gallery-item-img {
    transition: transform 0.5s ease !important;
}
.gallery-page .gallery-item:hover .gallery-item-img {
    transform: scale(1.02) !important;
    opacity: 1 !important;
}

@media (max-width: 1024px) {
    .gallery-page .gallery-item:hover .gallery-item-img {
        transform: none !important;
    }
}

@media (max-width: 767px) {
    /* Chef section — center align on mobile */
    .chef-label-mobile {
        justify-content: center;
        width: 100%;
    }
    .chef-image-wrap {
        margin-left: auto;
        margin-right: auto;
    }
    .chef-details {
        align-items: center;
        text-align: center;
    }
    .chef-name {
        justify-content: center;
    }

    /* Contact section — center the label on mobile */
    .contact-label-mobile {
        justify-content: center;
        width: 100%;
    }
    .contact-left-col {
        align-items: flex-start;
        text-align: left;
    }
    .contact-headline {
        text-align: left;
    }
    .contact-subtext {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .contact-form {
        width: 100%;
    }
    .contact-form .form-field {
        width: 100%;
    }
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 1024px) {
    .contact-right-col .contact-label-mobile {
        position: relative !important;
        transform: none !important;
        will-change: unset !important;
        z-index: 5;
        margin-bottom: 16px;
    }
    .contact-photo-wrap {
        transform: none !important;
        will-change: unset !important;
    }
}

.nav-new-badge {
    font-family: var(--font-sans);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #e63a3a;
    vertical-align: super;
    margin-left: 3px;
    text-transform: uppercase;
}


