@charset "UTF-8";

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    --primary: #c85012;
    /* Terracotta Accent */
    --primary-light: #f7e8e1;
    --primary-dark: #9e3b08;
    --gold: #d49a37;
    /* Elegant Asian Gold */
    --gold-light: #f3e6cf;

    --bg-dark: #13110f;
    /* Dark Modern Background */
    --bg-dark-card: #1f1b17;
    /* Dark Card Background */
    --bg-light: #f7f4ee;
    /* Warm Beige Background */
    --bg-white: #ffffff;
    --bg-olive: #3b3e2b;
    /* Olive tone for Staff right block */

    --text-dark: #282522;
    /* Main text on light bg */
    --text-muted: #6b645d;
    /* Muted text on light bg */
    --text-light: #f0ede6;
    /* Main text on dark bg */
    --text-light-muted: #a69f95;
    /* Muted text on dark bg */

    --font-base: 'Noto Sans JP', sans-serif;
    --font-num: 'Noto Serif JP', serif;
    --font-heading: 'Shippori Mincho', serif;
    --font-en: 'Cormorant Garamond', serif;

    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

/* 本文フォントサイズ統一: SP 15px */
body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-base);
    font-size: 15px;
    line-height: 1.8;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* 本文フォントサイズ統一: PC 16px */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-pad {
    padding: 80px 0;
}

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold) !important;
}

.text-white {
    color: var(--text-light) !important;
}

.pc-only {
    display: none;
}

.sp-only {
    display: block;
}

@media (min-width: 768px) {
    .pc-only {
        display: block !important;
    }

    .sp-only {
        display: none !important;
    }

    .section-pad {
        padding: 120px 0;
    }
}

/* ==========================================================================
   Typography & Section Titles
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
}

.sec-header {
    margin-bottom: 40px;
}

.sec-en {
    display: block;
    font-family: var(--font-en);
    font-size: 22px;
    font-style: italic;
    color: var(--primary);
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.sec-title {
    font-size: 28px;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

@media (min-width: 768px) {
    .sec-en {
        font-size: 26px;
    }

    .sec-title {
        font-size: 34px;
    }
}

/* Fade in animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Blur reveal animation for target images */
.blur-reveal img {
    opacity: 0;
    filter: blur(6px) brightness(.7);
    transform: scale(1.03);
    transition:
        opacity 1.2s ease,
        filter 1.5s ease,
        transform 1.8s ease;
}

.blur-reveal.is-show img,
.blur-reveal.is-visible img {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: scale(1);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(19, 17, 15, 0.94);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    padding: 10px 0;
    transition: var(--transition);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.header-logo-img {
    height: 36px;
    width: auto;
    margin-right: 10px;
    object-fit: contain;
}

.logo-text {
    color: var(--text-light);
}

.logo-accent {
    color: var(--gold);
    margin-left: 2px;
}

.nav ul {
    display: flex;
    gap: 28px;
}

.nav a {
    color: var(--text-light-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    position: relative;
    padding: 6px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--gold);
}

.nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* 電話予約ボタン */
.tel-btn {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 6px 16px;
    height: 42px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
    box-shadow: 0 4px 12px rgba(200, 80, 18, 0.3);
}

.tel-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

.tel-btn .btn-sub {
    font-size: 10.5px;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.tel-btn .btn-main {
    font-family: var(--font-num);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* ネット予約ボタン */
.net-btn {
    background-color: #2c2613;
    border: 1px solid rgba(212, 154, 55, 0.5);
    color: var(--gold-light);
    padding: 6px 16px;
    height: 42px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.15;
    transition: var(--transition);
    flex-shrink: 0;
}

.net-btn:hover {
    background-color: var(--gold);
    color: #1a1715;
    border-color: var(--gold);
    transform: translateY(-1px);
}

.net-btn .btn-sub {
    font-size: 10.5px;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.net-btn .btn-main {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

@media (min-width: 1025px) {
    .net-btn.pc-only {
        display: flex !important;
    }
}

/* Instagramアイコン大きさ揃え（高さ42pxスクエアボタン） */
.insta-icon-link {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    color: var(--text-light);
    font-size: 20px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

@media (min-width: 1025px) {
    .insta-icon-link.pc-only {
        display: flex !important;
    }
}

.insta-icon-link:hover {
    color: var(--gold);
    background-color: rgba(212, 154, 55, 0.15);
    border-color: var(--gold);
    transform: translateY(-1px);
}

/* Hamburger button */
.hamburger {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1002;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

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

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

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .header .nav.pc-only { display: none !important; }
    .header .hamburger.sp-only { display: flex !important; }
    .header .insta-icon-link.pc-only,
    .header .net-btn.pc-only { display: none !important; }
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(19, 17, 15, 0.98);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 70px 24px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
}

.mobile-nav.is-active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto 0;
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 18px;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
}

.mobile-reserve-btn {
    display: inline-block;
    margin-top: 15px;
    background-color: var(--primary);
    padding: 12px 30px;
    border-radius: 4px;
    color: #fff !important;
    font-size: 16px;
}

/* ==========================================================================
   First View (FV) - Split Layout with Transparent Arch Overlay
   ========================================================================== */
.fv-split-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    background-color: #0c0a09;
    overflow: hidden;
}

/* Background Photo Slider (PC/スマホ共通：背景全体に伸ばす) */
.fv-left-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.fv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease-out;
    transform: scale(1.04);
}

.fv-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Right Content Area */
.fv-right-content {
    position: relative;
    z-index: 3;
    margin-left: auto;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 40px;
    background: transparent;
}

/* FVaaa PNG (<picture> / <img> Arch & Pattern) - PC表示時：左へ飛び出しすぎないよう右側52%に固定 */
.fv-aaa-picture {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 52%;
    max-width: 1000px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.fv-aaa-picture img,
.fv-aaa-bg-deco {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
    filter: drop-shadow(-15px 0 30px rgba(0, 0, 0, 0.8));
}

.fv-content-inner {
    position: relative;
    z-index: 2;
    max-width: 520px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-left: 20px;
    margin-top: -40px;
}

.fv-main-catch {
    font-family: var(--font-heading);
    font-size: 36px;
    line-height: 1.5;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}

.fv-sub-copy {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light-muted);
    letter-spacing: 0.12em;
}

.fv-line {
    display: inline-block;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
}
@media (min-width: 1025px) {
    .fv-line {
        white-space: nowrap;
    }
}

.fv-action-btns {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.fv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: var(--transition);
}

.fv-btn-tel {
    background-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(200, 80, 18, 0.3);
}

.fv-btn-tel:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 80, 18, 0.4);
    color: #ffffff;
}

.fv-btn-menu {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.fv-btn-menu:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    color: #ffffff;
}

@media (min-width: 1025px) {
    .fv-left-slider {
        width: 65%;
        height: 100%;
    }

    .fv-right-content {
        width: 48%;
        min-width: 460px;
        max-width: 600px;
        padding: 80px 24px 30px;
    }

    .fv-content-inner {
        margin-top: -30px;
        padding-left: 20px;
        max-width: 540px;
    }

    .fv-main-catch {
        font-size: clamp(32px, 2.8vw, 44px);
        letter-spacing: 0.14em;
    }

    .fv-sub-copy {
        font-size: clamp(13.5px, 1.1vw, 16px);
        letter-spacing: 0.08em;
    }
}

@media (min-width: 1200px) {
    .fv-left-slider {
        width: 68%;
    }

    .fv-right-content {
        width: 46%;
        padding: 90px 32px 50px;
    }

    .fv-content-inner {
        padding-left: 24px;
    }

    .fv-main-catch {
        font-size: 46px;
        letter-spacing: 0.18em;
    }

    .fv-sub-copy {
        font-size: 16px;
        letter-spacing: 0.12em;
    }
}

@media (min-width: 1400px) {
    .fv-right-content {
        width: 55%;
        padding: 90px 40px 50px 0;
        justify-content: flex-start;
    }

    .fv-content-inner {
        padding-left: 0;
        margin-left: -40px;
    }
}

@media (min-width: 1600px) {
    .fv-left-slider {
        width: 70%;
    }

    .fv-right-content {
        width: 60%;
        padding: 90px 60px 50px 0;
        justify-content: flex-start;
    }

    .fv-content-inner {
        padding-left: 0;
        margin-left: -80px;
    }
}

/* SP & Tablet layout (max-width: 1024px) */
@media (max-width: 1024px) {
    .fv-split-section {
        position: relative;
        height: 100vh;
        height: 100svh;
        min-height: 500px;
        background-color: #100d0a;
        overflow: hidden;
        display: grid;
        grid-template-rows: 60% 40%;
        grid-template-areas: 
            "slider"
            "content";
        padding-bottom: 0;
    }

    .fv-left-slider {
        position: relative;
        grid-area: slider;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .fv-aaa-picture {
        position: relative;
        grid-area: content;
        width: 100%;
        height: 100%;
        z-index: 2;
        pointer-events: none;
        display: flex;
        align-items: flex-end;
    }

    .fv-aaa-picture img,
    .fv-aaa-bg-deco {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center bottom;
    }

    .fv-right-content {
        position: relative;
        grid-area: content;
        width: 100%;
        height: 100%;
        z-index: 3;
        padding: 0 24px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .fv-content-inner {
        width: 100%;
        max-width: 600px;
        margin-top: 0;
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .fv-main-catch {
        font-size: clamp(24px, 5vw, 32px);
    }

    .fv-sub-copy {
        font-size: clamp(13px, 3.2vw, 15px);
    }

    .fv-action-btns {
        display: none !important;
    }
}

/* ==========================================================================
   ① About Section (About1の横幅を大きく調整)
   ========================================================================== */
.about-split-section {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--bg-light);
    min-height: 520px;
}

.split-left {
    padding: 70px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.split-left-inner {
    max-width: 540px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-bg-logo {
    position: absolute;
    bottom: -10px;
    right: -60px;
    width: 180px;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.sec-main-catch {
    font-size: 26px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.about-desc p {
    margin-bottom: 18px;
    color: var(--text-muted);
    line-height: 1.9;
}

.about-desc p:last-child {
    margin-bottom: 0;
}

.split-right-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.about-split-imgs {
    display: flex;
    width: 100%;
    height: 100%;
}

/* About1の横幅を大きく（62% : 38%） */
.about-img-wide {
    width: 62%;
    height: 100%;
}

.about-img-narrow {
    width: 38%;
    height: 100%;
}

.about-img-wide img,
.about-img-narrow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .about-split-section {
        grid-template-columns: 1fr 1fr;
    }

    .split-left {
        padding: 90px 60px;
    }

    .sec-main-catch {
        font-size: 32px;
    }
}

/* ==========================================================================
   ② Service Section (タイトル左寄せ)
   ========================================================================== */
.service {
    position: relative;
    background-color: var(--bg-dark);
}

.bg-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 154, 55, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.service-card {
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 154, 55, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.card-num {
    position: absolute;
    top: 15px;
    left: 20px;
    font-family: var(--font-num);
    font-size: 22px;
    color: var(--gold);
    font-weight: 700;
    z-index: 2;
    background: rgba(19, 17, 15, 0.7);
    padding: 2px 10px;
    border-radius: 2px;
}

.card-img-wrap {
    height: 220px;
    overflow: hidden;
}

.card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-img-wrap img {
    transform: scale(1.05);
}

.card-body {
    padding: 28px 24px;
}

.card-title {
    font-size: 19px;
    color: var(--gold-light);
    margin-bottom: 14px;
    line-height: 1.4;
}

.card-text {
    color: var(--text-light-muted);
    line-height: 1.85;
}

@media (min-width: 768px) {
    .service-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================================================
   ③ Menu Section (menu1〜5 の上下空白スペース拡大)
   ========================================================================== */
.menu-full-section {
    background-color: var(--bg-light);
    padding: 90px 0 0 0;
}

.menu-full-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}

/* タブ切替エリア */
.menu-top-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.menu-cat-sidebar.no-bg {
    background: transparent;
    padding: 10px 0;
    box-shadow: none;
}

.cat-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cat-list li button {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.cat-list li.active button,
.cat-list li button:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
    padding-left: 6px;
}

.menu-tab-notice {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 14px;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.menu-tab-notice i {
    color: var(--primary);
    font-size: 12px;
}

/* Tab Panels Animation */
.menu-tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.menu-tab-panel.active {
    display: block;
    opacity: 1;
}

/* 横一列（4列並び）のカードレイアウト */
.menu-featured-grid.row-single-line {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.menu-featured-grid.row-3items {
    grid-template-columns: repeat(3, 1fr);
}

.featured-item.no-border {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    transition: var(--transition);
}

.featured-item.no-border .f-img {
    height: 200px;
    overflow: hidden;
    margin-bottom: 14px;
    border-radius: 4px;
}

.featured-item.no-border .f-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-item.no-border:hover .f-img img {
    transform: scale(1.04);
}

.featured-item.no-border .f-name {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.featured-item.no-border .f-sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
    line-height: 1.5;
}

/* 価格表記の数字フォント: Noto Serif JP */
.featured-item.no-border .f-price {
    font-family: var(--font-num);
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

@media (min-width: 992px) {
    .menu-top-layout {
        grid-template-columns: 200px 1fr;
        gap: 40px;
    }

    .menu-featured-grid.row-single-line {
        grid-template-columns: repeat(4, 1fr);
    }

    .featured-item.no-border .f-img {
        height: 220px;
    }
}

/* GRAND MENU BANNER SECTION (全幅・背景色#2C2613) */
.grand-menu-fullwidth-wrapper {
    width: 100%;
    background-color: #2C2613;
    color: #ffffff;
    padding: 60px 0;
    margin: 80px 0 0 0;
    position: relative;
    overflow: hidden;
}

.grand-menu-pattern-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: radial-gradient(rgba(212, 154, 55, 0.15) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.7;
}

.grand-menu-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.grand-menu-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.grand-menu-catch {
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.grand-menu-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.05em;
}

.menu-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-img-box {
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.gallery-img-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease;
    border-radius: 0;
}

.gallery-img-box img:hover {
    transform: scale(1.04);
}

.tap-notice {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
    letter-spacing: 0.08em;
}

@media (min-width: 992px) {
    .grand-menu-layout {
        grid-template-columns: 280px 1fr;
        gap: 50px;
    }

    .grand-menu-catch {
        font-size: 24px;
    }

    .menu-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .gallery-img-box img {
        height: 310px;
    }
}

/* LUNCH FULLWIDTH WRAPPER (画面端から端まで完全に100%全幅のオレンジ背景) */
.lunch-fullwidth-wrapper {
    width: 100%;
    background: linear-gradient(135deg, #c85012 0%, #a43a07 100%);
    color: #ffffff;
    margin: 0;
    padding: 70px 0;
    position: relative;
    box-shadow: 0 15px 40px rgba(200, 80, 18, 0.25);
}

.lunch-fullwidth-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

/* 中華風四角コーナー装飾（画面の四隅に配置＆拡大） */
.corner-deco {
    position: absolute;
    width: 50px;
    height: auto;
    pointer-events: none;
    z-index: 2;
}

.corner-deco.top-left {
    top: 12px;
    left: 15px;
}

.corner-deco.top-right {
    top: 12px;
    right: 15px;
}

.corner-deco.bottom-left {
    bottom: 12px;
    left: 15px;
}

.corner-deco.bottom-right {
    bottom: 12px;
    right: 15px;
}

@media (min-width: 768px) {
    .corner-deco {
        width: 75px;
    }

    .corner-deco.top-left {
        top: 15px;
        left: 25px;
    }

    .corner-deco.top-right {
        top: 15px;
        right: 25px;
    }

    .corner-deco.bottom-left {
        bottom: 15px;
        left: 25px;
    }

    .corner-deco.bottom-right {
        bottom: 15px;
        right: 25px;
    }
}

.lunch-banner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.banner-img-col img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.banner-info-col {
    padding-right: 10px;
}

.banner-sec-title {
    font-family: var(--font-en);
    font-size: 26px;
    color: var(--gold-light);
    display: block;
    margin-bottom: 2px;
}

.banner-sub-catch {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
    font-weight: 500;
}

.banner-course-name {
    font-size: 26px;
    margin-bottom: 10px;
    color: #ffffff;
    line-height: 1.3;
}

.course-contents-annotation {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 16px;
    line-height: 1.7;
    letter-spacing: 0.05em;
}

/* 価格数字フォント: Noto Serif JP */
.banner-price-tag {
    font-family: var(--font-num);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.banner-price-tag .tax {
    font-size: 15px;
    font-weight: normal;
    font-family: var(--font-base);
}

.banner-discount-info {
    background: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--gold);
    padding: 12px 16px;
    border-radius: 0 3px 3px 0;
    margin-bottom: 14px;
}

.banner-discount-info p {
    line-height: 1.5;
}

.banner-notices-line p {
    opacity: 0.88;
    line-height: 1.6;
}

@media (min-width: 860px) {
    .lunch-fullwidth-wrapper {
        padding: 80px 0;
    }

    .lunch-banner-grid {
        grid-template-columns: 440px 1fr;
        gap: 50px;
    }

    .banner-img-col img {
        height: 360px;
    }
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
    padding: 20px;
    overflow: auto;
}

.lightbox-modal.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: zoom-in;
    touch-action: manipulation;
}

.lightbox-content.zoomed {
    max-width: 180%;
    max-height: none;
    transform: scale(1.8);
    cursor: zoom-out;
}

.lightbox-zoom-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.65);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    letter-spacing: 0.05em;
    pointer-events: none;
    z-index: 2001;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
}

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

/* ==========================================================================
   Gallery Section (ギャラリー)
   ========================================================================== */
.gallery-section {
    background-color: var(--bg-dark);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 50px;
    }
}

.gallery-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-dark-card);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 154, 55, 0.2);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    cursor: pointer;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img-wrapper img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 17, 15, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.gallery-overlay i {
    color: var(--gold-light);
    font-size: 24px;
    transform: scale(0.8);
    transition: var(--transition);
}

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

.gallery-card:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-btn-wrapper {
    margin-top: 15px;
}

.gallery-insta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 20px rgba(253, 29, 29, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.gallery-insta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fcb045 0%, #fd1d1d 50%, #833ab4 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.gallery-insta-btn > * {
    position: relative;
    z-index: 2;
}

.gallery-insta-btn i.fa-instagram {
    font-size: 22px;
}

.gallery-insta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 28px rgba(253, 29, 29, 0.45);
    color: #ffffff;
}

.gallery-insta-btn:hover::before {
    opacity: 1;
}

/* ==========================================================================
   ④ Customer Voice Section (お客様の声)
   ========================================================================== */
.reviews-section {
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background-color: #ffffff;
    border: 1px solid #e8e2d5;
    border-radius: 8px;
    padding: 24px 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    border-color: var(--gold);
}

.review-stars {
    color: #d49a37;
    font-size: 16px;
    display: flex;
    gap: 4px;
    flex-shrink: 0;
}

.review-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.reviews-btn-wrapper {
    margin-top: 10px;
}

.more-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 14px rgba(200, 80, 18, 0.25);
    transition: var(--transition);
}

.more-reviews-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(200, 80, 18, 0.35);
    color: #ffffff;
}

@media (min-width: 768px) {
    .review-card {
        flex-direction: row;
        align-items: center;
        gap: 30px;
        padding: 24px 36px;
    }

    .review-stars {
        font-size: 18px;
    }

    .review-text {
        font-size: 16px;
    }
}

/* ==========================================================================
   Message Section
   ========================================================================== */
.message-split-section {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--bg-light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    min-height: 480px;
}

.split-right-full-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.split-right-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-title {
    font-size: 26px;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.message-body p {
    margin-bottom: 18px;
    color: var(--text-muted);
    line-height: 1.9;
}

@media (min-width: 768px) {
    .message-split-section {
        grid-template-columns: 1fr 1fr;
    }

    .message-title {
        font-size: 32px;
    }
}

/* ==========================================================================
   ⑤ Staff Section
   ========================================================================== */
.staff-split-section {
    display: grid;
    grid-template-columns: 1fr;
    background-color: var(--bg-dark);
}

.staff-left-content {
    padding: 70px 30px;
}

.staff-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.staff-card {
    background-color: var(--bg-dark-card);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.staff-img {
    height: 240px;
}

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

.staff-info {
    padding: 24px;
}

.staff-role {
    display: inline-block;
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 12px;
}

.staff-bio {
    color: var(--text-light-muted);
    line-height: 1.85;
}

.staff-intro-desc {
    margin-top: -15px;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.9;
}

/* 右側おもてなしエリア */
.staff-right-olive {
    background-color: #2C2613;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.olive-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.staff-bg-deco {
    position: absolute;
    bottom: 30px;
    right: -20px;
    max-height: 220px;
    width: auto;
    object-fit: contain;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 992px) {
    .staff-bg-deco {
        right: -10px;
        bottom: 50px;
        max-height: 260px;
        opacity: 0.45;
    }
}

.horizontal-text {
    writing-mode: horizontal-tb;
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.9;
    color: var(--text-light);
    letter-spacing: 0.15em;
}

@media (min-width: 768px) {
    .staff-cards {
        grid-template-columns: 1fr 1fr;
    }

    .staff-card:first-child .staff-img img {
        object-position: center 35%;
    }
}

@media (min-width: 992px) {
    .staff-split-section {
        grid-template-columns: 1fr 450px;
    }

    .staff-left-content {
        padding: 90px 50px;
    }

    .staff-right-olive {
        padding: 60px 50px;
    }
}

/* ==========================================================================
   ⑥ Access Section
   ========================================================================== */
.access {
    background: linear-gradient(135deg, #c85012 0%, #a43a07 100%);
    color: #ffffff;
}

.access .sec-en {
    color: var(--gold-light) !important;
}

.access .sec-title {
    color: #ffffff !important;
}

.access-simple-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.shop-name {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
}

.access-table {
    width: 100%;
    border-collapse: collapse;
}

.access-table th,
.access-table td {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    text-align: left;
    vertical-align: top;
}

.access-table th {
    width: 100px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.access-table td {
    color: #ffffff;
}

.parking-note {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--gold-light);
    opacity: 0.95;
}

.parking-note .note-mark {
    flex-shrink: 0;
}

.parking-note .note-text {
    flex: 1;
}

.tel-link {
    color: var(--gold-light);
    font-weight: 600;
}

.map-wrapper {
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
}

/* Access SNS & Gourmet Links */
.access-sns-wrapper {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.access-sns-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0;
    transition: var(--transition);
}

.access-sns-btn i {
    font-size: 36px;
    color: var(--gold-light);
    transition: var(--transition);
}

.access-sns-btn .sns-label {
    font-size: 12.5px;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.access-sns-btn:hover {
    transform: translateY(-3px);
}

.access-sns-btn:hover i {
    color: #ffffff;
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .access-simple-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 140px;
    overflow: hidden;
}

.gallery-item {
    height: 100%;
}

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

.gallery-center-logo {
    background-color: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.foot-logo-box {
    text-align: center;
}

.foot-logo-img {
    height: 38px;
    width: auto;
    margin: 0 auto 4px auto;
    object-fit: contain;
}

.foot-brand-name {
    display: block;
    font-family: var(--font-en);
    font-size: 11px;
    color: var(--gold-light);
    letter-spacing: 0.1em;
}

.footer-bottom {
    padding: 40px 24px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    margin-bottom: 24px;
}

.footer-nav a {
    font-size: 13px;
    color: var(--text-light-muted);
}

.footer-nav a:hover {
    color: var(--gold);
}

.copyright {
    text-align: center;
    font-size: 12px;
    color: var(--text-light-muted);
    opacity: 0.6;
}

/* Back to Top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .fv-split-section {
        max-width: 100%;
        overflow: hidden;
    }

    .footer-gallery {
        grid-template-columns: repeat(3, 1fr);
        height: 100px;
    }

    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        display: none;
    }

    /* ① SP Header: Hide Phone and Instagram buttons & style close X button */
    .header .reserve-btn,
    .header .insta-icon-link {
        display: none !important;
    }

    .mobile-nav-close {
        position: absolute;
        top: 20px;
        right: 24px;
        background: transparent;
        border: none;
        color: var(--gold);
        font-size: 34px;
        line-height: 1;
        cursor: pointer;
        z-index: 10;
    }

    /* ② SP About Section: Remove bottom space & shift About2 trimming down */
    .about-split-section {
        padding-bottom: 0 !important;
    }

    .split-right-img {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        min-height: 0 !important;
        height: 280px !important;
    }

    .about-split-imgs {
        position: relative;
        height: 280px;
        width: 100%;
        overflow: hidden;
        display: block;
    }

    .about-img-wide,
    .about-img-narrow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
    }

    .about-img-narrow img {
        object-position: center 85%;
    }

    .about-split-imgs .sp-active {
        opacity: 1;
        z-index: 2;
    }

    /* ③ SP FV Layout is now handled by the max-width: 1024px media query above */

    .horizontal-text {
        font-size: 19.5px;
        line-height: 1.85;
    }

    /* SP Menu Section: Prevent line-breaks & Stack Tab 5 items 1 by 1 */
    .nowrap-sp {
        white-space: nowrap;
        display: inline-block;
        font-size: 12.5px;
        letter-spacing: -0.02em;
        max-width: 100%;
    }

    .menu-featured-grid.row-3items {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    /* SP Gallery Section: 2 items per row */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    /* SP Menu 1-5 Gallery Slider (< > arrows) */
    .menu-gallery-slider-wrapper {
        position: relative;
        padding: 0 44px;
    }

    .menu-gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .menu-gallery-grid::-webkit-scrollbar {
        display: none;
    }

    .gallery-img-box {
        flex: 0 0 100%;
        scroll-snap-align: center;
    }

    .menu-gallery-grid .gallery-img-box img {
        width: 100%;
        height: 340px;
        object-fit: cover;
        border-radius: 0;
    }

    .menu-slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(44, 38, 19, 0.9);
        border: 1px solid rgba(212, 154, 55, 0.6);
        color: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        z-index: 10;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .menu-slider-arrow.prev-arrow {
        left: 0;
    }

    .menu-slider-arrow.next-arrow {
        right: 0;
    }

    /* SP Sticky Bottom Bar & Back to top adjustment */
    body {
        padding-bottom: 56px;
    }

    .back-to-top {
        bottom: 70px;
        right: 20px;
    }

    .sp-sticky-bottom-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 56px;
        background-color: #1a1715;
        border-top: 1px solid rgba(212, 154, 55, 0.3);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 6px 12px;
        gap: 10px;
        z-index: 9999;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.4);
    }

    .sp-bar-btn {
        flex: 1;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
    }

    .sp-bar-tel {
        background-color: var(--primary);
    }

    .sp-bar-net,
    .sp-bar-insta {
        background-color: #2c2613;
        border: 1px solid rgba(212, 154, 55, 0.4);
        color: var(--gold-light);
    }

    .sp-bar-net:hover {
        background-color: var(--gold);
        color: #1a1715;
    }

    .sp-bar-btn i {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .menu-slider-arrow {
        display: none !important;
    }

    .menu-gallery-slider-wrapper {
        padding: 0;
    }

    .sp-sticky-bottom-bar {
        display: none !important;
    }
}