@charset "utf-8";

/* =========================================
   [그누보드 기본 레이아웃 완벽 무력화]
   ========================================= */
html, body { margin: 0 !important; padding: 0 !important; width: 100% !important; overflow-x: hidden !important; }
#wrapper, #wrapper #container_wr, #wrapper #container, .g5_content { width: 100% !important; min-width: 100% !important; max-width: 100% !important; margin: 0 !important; padding: 0 !important; border: none !important; box-shadow: none !important; float: none !important; }
#container_title, hr.dash, hr, #skip_to_container { display: none !important; }

/* =========================================
   [공통] 유틸리티 및 변수
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
ul, li { list-style: none; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: none; }
button { cursor: pointer; border: none; background: none; padding: 0; }

/* PC/Mobile 반응형 제어 클래스 */
.flex { display: flex; align-items: center; }
.sb { justify-content: space-between; }
.pc { display: flex !important; }
.mob { display: none !important; }

:root {
    --c-813-main: #294848;
    --c-813-bg-1: #D3B279;
    --c-813-bg-2: #FFFAF2;
    --c-black:        #000000;
    --c-white:        #ffffff;
    --c-red:          rgb(193, 39, 45);
    --c-orange:       rgb(255, 159, 0);
    --c-cream-lt:     rgb(251, 248, 241);
    --c-cream-dk:     rgb(253, 248, 239);
    --c-gold:         rgb(163, 137, 93);
    --c-tan:          rgb(173, 150, 111);
    --c-gold-text:    rgb(235, 205, 155);
    --c-card-bg:      rgb(242, 223, 193);
    --c-gray-text:    rgb(206, 206, 206);
    --c-divider:      rgb(126, 126, 126);

    --f-montserrat: 'Montserrat', sans-serif;
    --f-pretendard:  'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
    --f-arita:       'Arita Buri KR', 'Noto Serif KR', serif;

    --wrap-width: 1600px;
}

@font-face { font-family: 'Arita Buri KR'; src: local('Arita Buri KR'), local('AritaBuriKR-Bold'); font-weight: 700; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--f-pretendard); background-color: var(--c-white); color: var(--c-black); }

.wrap { max-width: var(--wrap-width); margin: 0 auto; width: 100%; height: 100%; }
.img-placeholder { background-color: #ddd; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: #888; font-size: 14px; object-fit: cover; }


/* =========================================
   [NEW] 반응형 통합 헤더 및 모바일 메뉴
   ========================================= */
#header { background: var(--c-813-main); height: 120px; position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,0.2); }
#header .wrap { height: 100%; }
#header .logo a {height: 80px;}
#header .logo a img {height: 100%;}
#header .gnb { margin: 0; padding: 0; }
#header .gnb li { margin: 0 30px; font-size: 20px; font-weight: 500; font-family: var(--f-montserrat); }
#header .gnb li a { color: var(--c-white); transition: color 0.3s; }
#header .gnb li a:hover { color: var(--c-orange); }
#header .btn-global { background: var(--c-gold); color: var(--c-white); padding: 8px 24px; border-radius: 50px; font-family: var(--f-montserrat); font-size: 16px; font-weight: 500; cursor: pointer; }
#header .logo-ph {max-width: 150px; max-height: 80px;}
.header_utils a:hover { color: var(--c-orange) !important; }

/* 헤더가 fixed이므로 본문이 헤더 밑으로 숨지 않도록 여백 부여 */
main{ padding-top: 120px; }

/* 모바일 햄버거 버튼 디자인 */
.go_menu.mob { flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.go_menu .bar { width: 30px; height: 2px; background: var(--c-white); display: block; transition: 0.3s; }

/* 모바일 전체 메뉴 슬라이드 패널 */
.full_menu { position: fixed; top: 0; left: -100%; width: 100%; height: 100vh; background: var(--c-black); z-index: 2000; transition: left 0.4s ease; padding: 30px; box-sizing: border-box; }
.full_menu.active { left: 0; }
.full_menu .box {width: 100% !important;}
.full_menu .m_menu_top .logo { color: var(--c-white); font-size: 24px; font-weight: 700; font-family: var(--f-pretendard); }
.full_menu .close { width: 30px; height: 30px; position: relative; display: block; cursor: pointer; }
.full_menu .close span { position: absolute; top: 50%; width: 100%; height: 2px; background: var(--c-white); display: block; }
.full_menu .close span:nth-child(1) { transform: rotate(45deg); }
.full_menu .close span:nth-child(2) { transform: rotate(-45deg); }
.m_gnb { margin-top: 60px; }
.m_gnb li { margin-bottom: 35px; }
.m_gnb li a { font-size: 32px; font-weight: 700; color: var(--c-white); font-family: var(--f-montserrat); }
.m_user { margin-top: auto; padding-top: 50px; gap: 20px; font-size: 16px; color: #888; border-top: 1px solid #333; }
.m_user a { color: #888; }

#top_btn {display: none;}

/* 사이드바 빠른 문의 (CTA) */
#mob_cta { position: fixed; right: 20px; bottom: 20px; z-index: 900; background: var(--c-orange); color: var(--c-black); padding: 15px 25px; border-radius: 50px; font-weight: 700; font-family: var(--f-pretendard); font-size: 16px; border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.3); cursor: pointer; }
#cta { position: fixed; right: -400px; top: 0; width: 350px; height: 100vh; background: var(--c-white); z-index: 1100; transition: right 0.4s ease; padding: 40px 25px; color: var(--c-black); box-sizing: border-box; overflow-y: auto; }
#cta.active { right: 0; }
#cta-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,0.7); z-index: 1050; display: none; }
#cta-overlay.active { display: block; }
#cta h3 { font-size: 24px; margin-bottom: 10px; font-family: var(--f-pretendard); font-weight: 700; }
#cta p { margin-bottom: 25px; color: #666; font-size: 14px; }
#cta .form { margin-bottom: 15px; border: none; padding: 0; }
#cta input { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; font-family: var(--f-pretendard); }
#cta button[type="submit"] { width: 100%; padding: 15px; background: var(--c-red); color: var(--c-white); border: none; font-size: 18px; font-weight: 700; margin-top: 20px; border-radius: 5px; cursor: pointer; }
.agree_box { margin-top: 15px; font-size: 13px; display: flex; align-items: center; gap: 8px; }
#cta .tab { margin-top: 30px; gap: 10px; display: flex; }
#cta .tab a { flex: 1; text-align: center; background: #f5f5f5; padding: 15px; border-radius: 5px; font-size: 14px; font-weight: 600; color: var(--c-black); text-decoration: none; }

/* =========================================
   [푸터]
   ========================================= */
footer { background: var(--c-black); color: var(--c-gray-text); padding: 40px 0; }
.f-top { border-bottom: 1px solid var(--c-divider); padding-bottom: 20px; margin-bottom: 20px; }
.f-top ul { display: flex; gap: 50px; justify-content: flex-start; }
.f-top ul li, .f-top ul li a { font-family: var(--f-pretendard); font-weight: 500; font-size: 20px; color: var(--c-white); }
.f-bottom { display: flex; justify-content: space-between; align-items: center; }
.f-logo {width: 200px;}
.f-info { font-family: var(--f-pretendard); font-size: 16px; line-height: 1.4; color: var(--c-white); text-align: right; }
.f-info br + span { font-family: var(--f-montserrat); font-size: 10px; color: var(--c-gray-text); display: block; margin-top: 10px; }

/* =========================================
   [섹션별 스타일 - 기존 내용 유지]
   ========================================= */
.icon-main {width:40px; height:auto; display:inline-block; vertical-align:middle; margin-right:10px;}

.sec-hero { background: var(--c-813-main);}
.sec-hero .wrap { display: flex; min-height: 600px; }
.sec-hero .text-box { width: 40%; color: var(--c-white); display: flex; flex-direction: column; justify-content: center; padding: 50px 0; }
.sec-hero .text-box p:first-child { font-family: var(--f-montserrat); font-size: 20px; color: var(--c-gold-text); margin-bottom: 28px; letter-spacing: 0.15em; }
.sec-hero .text-box h1 { font-family: var(--f-arita); font-weight: 700; font-size: 80px; color: var(--c-gold-text); margin-bottom: 32px; line-height: 1.15; }
.sec-hero .text-box p:last-child { font-family: var(--f-montserrat); font-size: 24px; color: var(--c-white); line-height: 1.5; }
.sec-hero .img-box { width: 60%; }

.sec-signature { padding: 80px 0; background: var(--c-813-bg-1); text-align: center; }
.sec-signature h2 { font-family: var(--f-arita); font-weight: 700; font-size: 80px; color: var(--c-813-main); margin-bottom: 10px; }
.sec-signature > .wrap > p { font-size: 20px; margin-bottom: 40px; }
.sig-grid { display: flex; height: 600px; gap: 0; text-align: left; }
.sig-left { width: 60%; height: 100%; box-sizing: border-box; }
.sig-left .swiper { height: 100%; position: relative; }
.sig-left .swiper-slide { display: flex; flex-direction: column; height: 100%; }
.sig-left .img-box { flex: 1; overflow: hidden; }
.sig-left .text-box { height: 140px; background:#331D20; display: flex; align-items: center; padding: 0 40px; }
.sig-left .text-info h3 { font-family: var(--f-arita); font-size: 36px; color: var(--c-white); margin-bottom: 10px; }
.sig-left .text-info p { font-size: 18px; color: var(--c-white); }
.sig-left .left-pagination { position: absolute; bottom: 30px !important; right: 40px !important; left: auto !important; width: auto !important;display: flex; gap: 8px; z-index: 10; }
.sig-left .swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(255, 255, 255, 0.4); opacity: 1; margin: 0 !important; }
.sig-left .swiper-pagination-bullet-active { background: var(--c-white); }

.sig-right { width: 40%; height: 100%; }
.sig-right .swiper { height: 100%; position: relative; }
.sig-right .swiper-slide { display: flex; flex-direction: column; height: 100%; }
.sig-right .img-box { flex: 1; overflow: hidden; }
.sig-right .text-box { height: 280px; background: var(--c-813-main); padding: 40px; display: flex; flex-direction: column; justify-content: flex-start; color: var(--c-white); }
.sig-right .cate { font-family: var(--f-montserrat); font-weight: 700; font-size: 26px; margin-bottom: 20px; }
.sig-right hr { border: none; border-top: 1px solid rgba(255, 255, 255, 0.6); margin-bottom: 25px; width: 100%; }
.sig-right h3 { font-weight: 700; font-size: 24px; margin-bottom: 10px; }
.sig-right p { font-size: 16px; opacity: 0.9; }
.sig-right .right-pagination { position: absolute; top: 230px !important; bottom: auto !important; left: 40px !important; right: auto !important;width: auto !important; display: flex; gap: 8px; z-index: 10; }
.sig-right .swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(255, 255, 255, 0.4); opacity: 1; margin: 0 !important; }
.sig-right .swiper-pagination-bullet-active { background: var(--c-white); }

.sec-pairing { padding: 100px 0; background: var(--c-white); }
.sec-pairing .inner-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; }
.sec-pairing .title-top { display: flex; align-items: center; margin-bottom: 10px; }
.sec-pairing h2 { font-family: var(--f-arita); font-size: 48px; color: var(--c-black); }
.sec-pairing h2 span { color: var(--c-813-main); }
.sec-pairing .desc { font-size: 20px; color: #444; }
.pairing-nav { display: flex; gap: 15px; }
.pairing-nav button { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--c-black); background-color: var(--c-white); display: flex; align-items: center; justify-content: center; }
.pairing-item { text-align: center; border-radius: 10px; overflow: hidden; background-color: var(--c-card-bg); }
.pairing-item .img-box { width: 100%; height: 320px; overflow: hidden; }
.pairing-item .text-box { padding: 30px 20px; }
.pairing-item .title { font-size: 20px; font-weight: 700; margin-bottom: 15px; }
.pairing-item .tag { display: inline-block; font-size: 14px; color: var(--c-white); background-color: #9E8564; padding: 8px 20px; border-radius: 30px; }

/* 페어링 스와이퍼 카드 높이 통일 */
.pairing-swiper .swiper-slide { height: auto !important; }
.pairing-swiper .pairing-item { height: 100%; display: flex; flex-direction: column; }
.pairing-swiper .pairing-item .text-box { flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }

.sec-feature { background: url(../img/main_dish_bg.png) no-repeat center/cover; }
.sec-feature .wrap { display: flex; min-height: 500px; }
.sec-feature .text-box { width: 50%; color: var(--c-white); display: flex; flex-direction: column; justify-content: center; padding: 50px 0; }
.sec-feature .text-box > p:first-child { font-family: var(--f-montserrat); font-size: 40px; margin-bottom: 20px; }
.sec-feature .text-box h2 { font-family: var(--f-arita); font-size: 50px; margin-bottom: 30px; }
.sec-feature .text-box > p:last-child { font-family: var(--f-arita); font-size: 20px; }
.sec-feature .img-box { width: 50%; }

.sec-recommend { padding: 80px 0; background: var(--c-cream-dk); }
.sec-recommend .inner-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; padding-bottom: 10px; }
.sec-recommend .title-head { display: flex; align-items: center; margin-bottom: 10px; }
.sec-recommend h2 { font-family: var(--f-arita); font-size: 48px; color: var(--c-black); }
.sec-recommend h2 span { color: var(--c-813-main); }
.sec-recommend .desc { font-size: 20px; color: #444;}
.tab-menu { display: flex; gap: 30px; font-size: 20px; cursor: pointer; }
.tab-menu li { padding-bottom: 13px; position: relative; font-weight: 500; }
.tab-menu li.active { font-weight: 700; }
.tab-menu li.active::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background-color: var(--c-813-main); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.recommend-item { text-align: center; }
.recommend-item .img-box { width: 100%; aspect-ratio: 1/1; border-radius: 50%; margin-bottom: 20px; overflow: hidden; border: 1px solid var(--c-red); }
.recommend-item p { font-size: 24px; text-align: center; }

.sec-story { background: url(../img/story_bg.png) no-repeat center/cover; padding: 50px 0;}
.sec-story .wrap { display: flex; min-height: 500px; align-items: center;}
.sec-story .text-box { width: 50%; color: var(--c-white); display: flex; flex-direction: column; justify-content: center; }
.sec-story .text-box > p:first-child { font-family: var(--f-montserrat); font-size: 24px; color: #D3B279; margin-bottom: 20px; }
.sec-story .text-box h2 { font-family: var(--f-arita); font-size: 64px; margin-bottom: 28px; color: #D3B279;}
.sec-story .text-box h2 span{color: #FFF;}
.sec-story .text-box > p:nth-of-type(2) { font-size: 20px; margin-bottom: 42px; line-height: 1.7;}
.sec-story .img-box { width: 50%; aspect-ratio: 1579 / 941; }
.sec-story .img-box img { width: 100%; height: 100%; object-fit: contain; }
.btn-story { background: #D3B279; padding: 0 12px 0 44px; width: 260px; height: 50px; border-radius: 50px; color: var(--c-black); font-weight: 700; font-size: 24px; display: inline-flex; align-items: center; justify-content: space-between; }


/* =========================================
   [서브페이지 통합] BRAND & MENU
   ========================================= */
/* 서브 헤어로 및 공통 여백 */
.sub-page-menu { padding-top: 80px; background-color: var(--c-white); padding-bottom: 100px; }
.sub-hero { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: url(../img/menu_bg.png);}
.brand-hero { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: url(../img/brand_bg.png);}
.sub-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.sub-hero-text, .brand-hero-text { position: relative; z-index: 2; color: var(--c-white); }
.sub-hero-text h2, .brand-hero-text h2 { font-family: var(--f-montserrat); font-size: 60px; font-weight: 700; margin-bottom: 10px; }
.sub-hero-text p, .brand-hero-text p { font-size: 18px; font-weight: 400; }

/* 메뉴 타이틀 애니메이션 */
.menu-hero-title { opacity: 0; animation: softFadeUp 0.8s ease forwards; }
.menu-hero-desc { opacity: 0; animation: softFadeUp 0.8s ease 0.2s forwards; }

@keyframes softFadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* BRAND 서브페이지 디자인 */
.sub-page-brand { background-color: var(--c-813-main); color: var(--c-white); }
.sub-brand-container { max-width: 1600px; margin: 0 auto; padding: 80px 20px 120px; }
.brand-title-sec { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid rgba(255, 255, 255, 0.2); padding-bottom: 40px; margin-bottom: 80px; }
.brand-title-sec .since { font-family: var(--f-montserrat); font-size: 16px; margin-bottom: 15px; color: #ccc; }
.brand-title-sec h3 { font-family: var(--f-arita); font-size: 56px; }
.brand-title-sec h3 span { color: #D3B279; }
.sub-page-brand .logo-ph { width: 259px; height: 138px;}
.brand-row { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; }
.brand-row .text-box, .brand-row .img-box { flex: 1; }
.brand-row h4 { font-family: var(--f-arita); font-size: 36px; margin-bottom: 30px; }
.brand-row h4 span { color: #D3B279; }
.brand-row p { font-size: 20px; line-height: 1.7; margin-bottom: 25px; color: #e0e0e0; }
.brand-row .img-box {width: 600px; height: 400px; border-radius: 12px; overflow: hidden; }
.brand-row .img-box.box2 {height: 800px;}
.brand-closing { margin-top: 60px; }
.brand-closing p { font-size: 20px; color: #e0e0e0; margin-bottom: 50px; line-height: 1.7;}
.brand-closing h5 { font-family: var(--f-arita); font-size: 24px; margin-bottom: 30px; }
.signature-box { display: flex; align-items: center; gap: 20px; }
.ceo-info { display: flex; flex-direction: column; gap: 5px; }
.ceo-title { font-size: 14px; color: #ccc; }
.ceo-name { font-family: var(--f-arita); font-size: 32px; color: #D3B279;}
.sign-ph { width: 120px;}

/* 메뉴 추가/수정 버튼 */
.plus_wrap { text-align: right; padding: 20px 0px; position: relative; z-index: 60; }
.plus_button { display: inline-block; padding: 10px 24px; background: var(--c-red); color: #fff; font-size: 16px; font-weight: 700; font-family: var(--f-pretendard); border-radius: 50px; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* -----------------------------------------
   [메뉴 탭 및 그리드 - 데스크탑 2줄 중앙정렬]
   ----------------------------------------- */
.menu-tab-wrap { border-bottom: 1px solid #eee; background: var(--c-white); position: sticky; top: 80px; z-index: 50; }
.menu-tab-wrap .wrap { display: flex; justify-content: center; padding: 15px 10px; }
.menu-tab-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }

.menu-tab { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.menu-tab li a { display: inline-block; padding: 8px 22px; border-radius: 50px; font-size: 15px; font-weight: 700; color: var(--c-black); transition: all 0.3s ease; white-space: nowrap; }
.menu-tab li.active a, .menu-tab li a:hover { background-color: var(--c-red); color: var(--c-white); }

.menu-section { display: none; padding-top: 80px; } /* JS 제어 */
.menu-section .sec-title { text-align: center; margin-bottom: 50px; }
.menu-section .sec-title h3 { font-family: var(--f-arita); font-size: 36px; margin-bottom: 15px; font-weight: 700; }
.menu-section .sec-title p { font-size: 16px; color: #666; }

.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 20px; position: relative; }
.menu-item { text-align: center; cursor: pointer; opacity: 0; transition: transform 0.3s ease; }
.menu-item:hover { transform: translateY(-6px); }

.menu-item .img-box { width: 100%; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; margin-bottom: 20px; transition: transform 0.3s ease, box-shadow 0.4s ease; border: 1px solid #eee; }
.menu-item:hover .img-box { transform: scale(1.03); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.menu-item .name { font-size: 18px; font-weight: 700; word-break: keep-all; }

/* -----------------------------------------
   [메뉴 아코디언 상세 뷰]
   ----------------------------------------- */
.menu-detail-view { grid-column: 1 / -1; background-color: var(--c-813-main); color: #fff; width: 100vw; margin-left: calc(-50vw + 50%); display: none; padding: 60px 0; margin-top: 10px; margin-bottom: 40px; }
.menu-detail-view.active { display: block; animation: slideDown 0.4s ease forwards; }

.detail-inner { display: flex; align-items: center; justify-content: center; gap: 80px; position: relative; }
.btn-close-detail { position: absolute; top: -30px; right: 0; font-size: 24px; color: #999; cursor: pointer !important; }
.detail-img { width: 400px; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; border: 1px solid #ddd; }
.detail-img img { width: 100%; height: 100%; object-fit: cover; }
.detail-text { max-width: 500px; }
.detail-cate { font-size: 16px; color: #D3B279; font-weight: 700; margin-bottom: 10px; }
.detail-title { font-size: 36px; font-weight: 700; margin-bottom: 20px; word-break: keep-all; font-family: var(--f-arita); }
.detail-desc { font-size: 18px; line-height: 1.6; color: #fff; word-break: keep-all; }

@keyframes slideDown { 
    from { opacity: 0; transform: translateY(-10px); } 
    to { opacity: 1; transform: translateY(0); } 
}


/* =========================================
   구글 번역기 방어 코드 (필수)
========================================= */
iframe.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
.skiptranslate > iframe {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    opacity: 0 !important;
    border: none !important;
    z-index: -100000 !important;
}
body, html {
    top: 0px !important;
    position: static !important;
    margin-top: 0px !important;
    transform: none !important;
}
#goog-gt-tt, .goog-te-balloon-frame, .goog-tooltip, .goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* =========================================
   헤더 레이아웃 및 폰트 스타일
========================================= */
.align-center { align-items: center; }

/* 좌측 로고 및 메뉴 그룹 */
.header-left { gap: 40px; } /* 로고와 메뉴 사이 간격 */
.logo-text { color: #fff; font-weight: 700; font-size: 24px; }
.gnb.flex { gap: 30px; } /* 메뉴 아이템 간격 */
.gnb li a { color: #fff; font-size: 16px; font-weight: 500; }

/* 우측 유틸리티 영역 */
.header_utils { gap: 20px; } /* 버튼, 로그인 등 요소 간격 */
.utils-link { font-size: 14px; color: #fff; }

/* =========================================
   글로벌 버튼 & 언어 선택 드롭다운 디자인
========================================= */
.btn-global {
    position: relative;
    cursor: pointer;
    background-color: #b59868; /* 이미지에 맞춘 고급스러운 골드 브라운 */
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px; /* 둥근 알약 모양 */
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s;
}
.btn-global:hover {
    background-color: #9c8257;
}

/* 드롭다운 메뉴 (기본 숨김) */
.lang-dropdown {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: #fff;
    border-radius: 8px;
    padding: 0;
    margin: 0;
    min-width: 140px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 9999;
    list-style: none;
    transition: all 0.3s ease;
}

/* 자바스크립트로 active 클래스가 붙으면 나타남 */
.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 드롭다운 리스트(li) 디자인 개선 - 패딩 넉넉하게 추가 */
.lang-dropdown li {
    padding: 15px 20px; /* 위아래 패딩 15px로 넉넉하게 */
    color: #333;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s, color 0.2s;
}
.lang-dropdown li:last-child {
    border-bottom: none;
}
.lang-dropdown li:hover {
    background-color: #f8f9fa;
    color: #b59868; /* 오버 시 골드 브라운 색상으로 포인트 */
}


/*인터렉션 추가*/
.reveal {opacity: 0;visibility: hidden;transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* 방향별 등장 효과 */
.reveal.fade-up { transform: translateY(40px); }
.reveal.fade-left { transform: translateX(-40px); }
.reveal.fade-right { transform: translateX(40px); }

/* 활성화 상태 (화면에 보일 때 적용됨) */
.reveal.active {opacity: 1;visibility: visible;transform: translate(0, 0);}

/* 등장 시간차(Delay) 효과 */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* 페어링 태그 말줄임 처리 (상세 설명이 너무 길어질 경우 밖으로 튀어나가지 않도록 방어) */
.pairing-item .tag {max-width: 100%;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}

/* =========================================
   [매장 이용 안내 섹션] (주차/영업시간)
   - 막걸리너리 실제 화면과 동일 레이아웃
   - 컬러만 경성813 톤(빨강 → 골드 #D3B279)
   ========================================= */
.sec-info {
    background: var(--c-cream-lt);    /* 베이지/크림 배경 */
    padding: 100px 0;
}

/* 헤더 — 추천 섹션과 통일된 'title-top + desc' 구조 */
.sec-info .info-header {
    text-align: center;
    margin-bottom: 60px;
}
.sec-info .info-header .title-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}
.sec-info .info-header .icon-main {
    width: 40px;
    height: auto;
}
.sec-info .info-header h2 {
    font-family: var(--f-arita);
    font-size: 48px;
    color: var(--c-black);
    line-height: 1;
}
.sec-info .info-header h2 span {
    color: var(--c-813-bg-1);   /* 경성813 골드 포인트 (막걸리너리는 빨강) */
}
.sec-info .info-header .desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* 카드 그리드 — 화면 폭에 맞게 넓게 */
.sec-info .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* 카드 — 흰 배경, 은은한 그림자 */
.sec-info .info-card {
    background: var(--c-white);
    border: 1px solid #f0e9dc;
    border-radius: 16px;
    padding: 70px 40px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.sec-info .info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* 아이콘 (SVG) — 연한 골드 톤 원형 배지 + 골드 아이콘 */
.sec-info .info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(211, 178, 121, 0.15);   /* 경성813 골드 연한 톤 */
    color: var(--c-813-bg-1);                /* SVG stroke 컬러 = 경성813 골드 */
    margin-bottom: 26px;
}

/* 카드 텍스트 묶음 */
.sec-info .info-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 영문 라벨 (PARKING / OPEN HOURS) */
.sec-info .info-label {
    font-family: var(--f-montserrat);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--c-tan);     /* 골드/탠 톤 */
    margin-bottom: 16px;
}

/* 제목 + 짧은 골드 구분선 */
.sec-info .info-card h3 {
    font-family: var(--f-arita);
    font-size: 28px;
    color: var(--c-black);
    margin: 0 0 22px;
    padding-bottom: 18px;
    position: relative;
}
.sec-info .info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 1.5px;
    background: var(--c-813-bg-1);   /* 경성813 골드 (막걸리너리는 빨강) */
}

/* 본문 */
.sec-info .info-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin: 0;
}
.sec-info .info-card p strong {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--c-black);
}
.sec-info .info-card .info-sub {
    display: inline-block;
    font-size: 13px;
    color: #999;
    margin-top: 4px;
}

/* =========================================
   [본점 외부 안내 섹션] (sec-storefront)
   - 경성813 골드(#D3B279) + 크림 톤 / sec-info와 통일된 패턴
   ========================================= */
.sec-storefront {
    background: var(--c-white);
    padding: 100px 0;
}

/* 헤더 — sec-info 와 동일한 'title-top + desc' 구조 */
.sec-storefront .storefront-header {
    text-align: center;
    margin-bottom: 50px;
}
.sec-storefront .storefront-header .title-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
}
.sec-storefront .storefront-header .icon-main { width: 40px; height: auto; }
.sec-storefront .storefront-header h2 {
    font-family: var(--f-arita);
    font-size: 48px;
    color: var(--c-black);
    line-height: 1;
}
.sec-storefront .storefront-header h2 span { color: var(--c-813-bg-1); }
.sec-storefront .storefront-header .desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* ㄱ자형 입구 안내 박스 — 골드 톤 카드 */
.storefront-notice {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    background: rgba(211, 178, 121, 0.08);
    border: 1px solid var(--c-813-bg-1);
    border-radius: 16px;
    padding: 36px 40px;
    margin-bottom: 50px;
}
.storefront-notice .notice-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(211, 178, 121, 0.2);
    color: var(--c-813-bg-1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.storefront-notice .notice-content { flex: 1; }
.storefront-notice .notice-label {
    display: inline-block;
    font-family: var(--f-montserrat);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--c-tan);
    margin-bottom: 14px;
}
.storefront-notice h3 {
    font-family: var(--f-arita);
    font-size: 26px;
    line-height: 1.5;
    color: var(--c-813-main);
    margin: 0 0 14px;
}
.storefront-notice h3 .hi {
    color: var(--c-813-bg-1);
    border-bottom: 2px solid var(--c-813-bg-1);
    padding-bottom: 2px;
}
.storefront-notice p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* ===== 영상 스와이퍼 영역 ===== */
.storefront-video-area {
    margin-bottom: 50px;
    position: relative;
}
.storefront-swiper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0e9dc;
    background: #f5f0e6;
    position: relative;
}

/* 한 슬라이드 안에 영상 2개 가로 배치 */
.video-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #f0e9dc;   /* 두 영상 사이 얇은 구분선 */
}
.video-item {
    position: relative;
    aspect-ratio: 16/9;
    background: #f5f0e6;
    cursor: pointer;
}
.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 영상 동선 라벨 (좌하단) */
.video-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(41, 72, 72, 0.92);
    color: var(--c-white);
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--f-pretendard);
    font-size: 15px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* 페이지네이션 (영상 안쪽 상단 중앙 오버레이) */
.storefront-video-area .storefront-pagination {
    position: absolute !important;
    top: 20px;
    left: 50% !important;
    transform: translateX(-50%);
    bottom: auto !important;
    width: auto !important;
    margin: 0;
    z-index: 10;
    display: flex;
    gap: 8px;
    background: rgba(41, 72, 72, 0.85);   /* 813 다크그린 반투명 */
    padding: 8px 14px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.storefront-video-area .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    margin: 0 !important;
    transition: all 0.3s ease;
}
.storefront-video-area .swiper-pagination-bullet-active {
    background: var(--c-white);
    width: 24px;
    border-radius: 4px;
}

/* 좌우 화살표 버튼 */
.storefront-prev,
.storefront-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #f0e9dc;
    border-radius: 50%;
    color: var(--c-813-main);
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.storefront-prev { left: 16px; }
.storefront-next { right: 16px; }
.storefront-prev:hover,
.storefront-next:hover {
    background: var(--c-813-bg-1);
    color: var(--c-white);
    border-color: var(--c-813-bg-1);
}

/* ===== 사진 영역 (4장, 데스크탑 1줄 / 모바일 슬라이드) ===== */
.storefront-photos-area { width: 100%; }
.storefront-photos-swiper .swiper-slide { height: auto; }
.storefront-photos-swiper .photo-item {
    aspect-ratio: 2/3;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f0e9dc;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.storefront-photos-swiper .photo-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}
.storefront-photos-swiper .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.storefront-photos-swiper .photo-item:hover img {
    transform: scale(1.05);
}

/* ===== 모바일 ===== */
@media (max-width: 768px) {
    .sec-storefront { padding: 60px 0; }
    .sec-storefront .storefront-header { margin-bottom: 30px; }
    .sec-storefront .storefront-header h2 { font-size: 32px; }
    .sec-storefront .storefront-header .desc { font-size: 14px; }
    
    .storefront-notice {
        flex-direction: column;
        gap: 16px;
        padding: 24px 20px;
        margin-bottom: 30px;
    }
    .storefront-notice h3 { font-size: 19px; }
    .storefront-notice p { font-size: 14px; }
    
    .storefront-video-area { margin-bottom: 30px; }
    .video-row {
        grid-template-columns: 1fr;   /* 모바일은 세로로 */
        gap: 1px;
    }
    .video-label {
        bottom: 14px;
        left: 14px;
        padding: 7px 14px;
        font-size: 13px;
    }
    .storefront-prev,
    .storefront-next {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    .storefront-prev { left: 8px; }
    .storefront-next { right: 8px; }
}


/* =========================================
   [메인 비주얼 섹션] (sec-main-visual)
   - 페이지 최상단 첫 훅킹용 풀-스크린 비주얼
   - 이미지 원본 비율 1920×1280 (3:2)
   - 데스크탑: 화면 전체 채움 (100vh - 헤더 120px)
   - 모바일: 원본 비율 그대로 (잘림 없음)
   ========================================= */
.sec-main-visual {
    width: 100%;
    height: calc(100vh - 120px);   /* 헤더(120px) 제외한 전체 화면 */
    background: #1a1a1a;
    overflow: hidden;
    line-height: 0;
}
.sec-main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;        /* 간판이 중앙 → 위아래만 crop, 본 형상 보존 */
    display: block;
}

/* 모바일: 풀-스크린 해제하고 원본 비율 그대로 (잘림 0) */
@media (max-width: 768px) {
    .sec-main-visual {
        height: auto;
    }
    .sec-main-visual img {
        height: auto;
    }
}