        /* =====================================================
       FONTS
    ===================================================== */
        @font-face {
            font-family: 'SfHambakneun';
            src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2106@1.1/SF_HambakSnow.woff') format('woff'),
                url('../fonts/SfHambakSnow.ttf') format('truetype');
            font-weight: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'ChungjuKimSaeng';
            src: url('../fonts/ChungjuKimSaeng.ttf') format('truetype');
            font-weight: normal;
            font-display: swap;
        }

        @font-face {
            font-family: 'AppleSDGothicNeo';
            src: url('../fonts/apple-sd-gothic-neo/AppleSDGothicNeoR.ttf') format('truetype');
            font-weight: 400;
            font-display: swap;
        }

        @font-face {
            font-family: 'AppleSDGothicNeo';
            src: url('../fonts/apple-sd-gothic-neo/AppleSDGothicNeoM.ttf') format('truetype');
            font-weight: 500;
            font-display: swap;
        }

        @font-face {
            font-family: 'AppleSDGothicNeo';
            src: url('../fonts/apple-sd-gothic-neo/AppleSDGothicNeoSB.ttf') format('truetype');
            font-weight: 600;
            font-display: swap;
        }

        @font-face {
            font-family: 'AppleSDGothicNeo';
            src: url('../fonts/apple-sd-gothic-neo/AppleSDGothicNeoB.ttf') format('truetype');
            font-weight: 700;
            font-display: swap;
        }

        /* =====================================================
       GLOBAL RESET
    ===================================================== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            padding-top: 37px;
            font-family: 'Gowun Batang', 'Pretendard', 'AppleSDGothicNeo', Georgia, sans-serif;
            color: #40241a;
            overflow-x: hidden;
        }


        @media (max-width: 1200px) {
            body {
                padding-top: 60px;
            }
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 디바이스별 줄바꿈 유틸리티 — 기본(데스크톱)에선 _pc만, 모바일에선 _mo만 활성화 */
        br._mo {
            display: none;
        }

        br._pc {
            display: inline;
        }

        /* =====================================================
       GLOBAL ANIMATIONS
    ===================================================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        /* Scroll-triggered reveal: pause all fadeInUp until visible */
        html.js-loading * {
            animation-play-state: paused !important;
        }

        .scroll-pending:not(.is-revealed) {
            animation-play-state: paused !important;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* =====================================================
       SHARED BADGE DECORATION (common_ornament_01/02)
    ===================================================== */
        [class^="brand_badge_"],
        [class^="experience_badge_"],
        [class^="philosophy_badge_"],
        [class^="operation_badge_"],
        [class^="poster_badge_"],
        [class^="franchise_badge_"],
        [class^="contact_badge_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 30px;
            color: #40241a;
            font-weight: 600;
            letter-spacing: 2px;
            display: inline-flex;
            align-items: center;
            gap: 110px;
        }

        [class^="brand_badge_"]::before,
        [class^="experience_badge_"]::before,
        [class^="philosophy_badge_"]::before,
        [class^="operation_badge_"]::before,
        [class^="poster_badge_"]::before,
        [class^="franchise_badge_"]::before,
        [class^="contact_badge_"]::before,
        [class^="brand_badge_"]::after,
        [class^="experience_badge_"]::after,
        [class^="philosophy_badge_"]::after,
        [class^="operation_badge_"]::after,
        [class^="poster_badge_"]::after,
        [class^="franchise_badge_"]::after,
        [class^="contact_badge_"]::after {
            content: '';
            display: inline-block;
            width: 230px;
            height: 30px;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            flex-shrink: 0;
        }

        [class^="brand_badge_"]::before,
        [class^="experience_badge_"]::before,
        [class^="philosophy_badge_"]::before,
        [class^="operation_badge_"]::before,
        [class^="poster_badge_"]::before,
        [class^="franchise_badge_"]::before,
        [class^="contact_badge_"]::before {
            background-image: url('../img/common_ornament_01.png');
        }

        [class^="brand_badge_"]::after,
        [class^="experience_badge_"]::after,
        [class^="philosophy_badge_"]::after,
        [class^="operation_badge_"]::after,
        [class^="poster_badge_"]::after,
        [class^="franchise_badge_"]::after,
        [class^="contact_badge_"]::after {
            background-image: url('../img/common_ornament_02.png');
        }

        /* =====================================================
       HEADER
    ===================================================== */
        .header_section_01 {
            width: 100%;
            height: 107px;
            padding: 0 70px;
            position: fixed;
            top: 0;
            z-index: 1000;
            background: #c2b2a9;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: background 0.3s ease;
        }

        .header_section_01.is-scrolled {
            background: rgba(64, 36, 26, 0.5);
        }

        .header_nav_01 {
            max-width: 1840px;
            margin: 0 auto;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header_logo_link_01 {
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .header_logo_01,
        .header_logo_02 {
            width: 209px;
            height: auto;
            transition: opacity 0.3s ease;
        }

        .header_logo_01 {
            display: none;
        }

        .header_section_01.is-scrolled .header_logo_01 {
            display: block;
        }

        .header_section_01.is-scrolled .header_logo_02 {
            display: none;
        }

        .header_links_01 {
            display: flex;
            gap: 56px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        [class^="header_link_"] {
            color: #40241a;
            text-decoration: none;
            font-size: 24px;
            font-weight: normal;
            font-family: 'SfHambakneun', sans-serif;
            transition: color 0.3s ease;
            letter-spacing: 0;
        }

        .header_section_01.is-scrolled [class^="header_link_"] {
            color: #f8ecdf;
        }

        [class^="header_link_"]:hover {
            color: #9b2f0e;
        }

        .header_section_01.is-scrolled [class^="header_link_"]:hover {
            color: #ff9f36;
        }

        /* Hamburger button (모바일 전용) */
        .header_burger_01 {
            display: none;
            background: transparent;
            border: 0;
            padding: 0;
            width: 36px;
            height: 36px;
            cursor: pointer;
            position: relative;
            z-index: 1100;
        }

        .header_burger_01 span {
            display: block;
            width: 24px;
            height: 2px;
            background: #40241a;
            margin: 5px auto;
            border-radius: 1px;
            transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
        }

        .header_section_01.is-scrolled .header_burger_01 span {
            background: #f8ecdf;
        }

        .header_burger_01.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .header_burger_01.is-open span:nth-child(2) {
            opacity: 0;
        }

        .header_burger_01.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Drawer overlay */
        .header_drawer_overlay_01 {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 1090;
        }

        .header_drawer_overlay_01.is-open {
            opacity: 1;
            visibility: visible;
        }

        /* Drawer panel */
        .header_drawer_01 {
            position: fixed;
            top: 0;
            right: 0;
            width: 280px;
            max-width: 80vw;
            height: 100vh;
            background: #40241a;
            transform: translateX(100%);
            transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            z-index: 1095;
            padding: 70px 24px 40px;
            display: flex;
            flex-direction: column;
        }

        .header_drawer_01.is-open {
            transform: translateX(0);
            box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        }

        .header_drawer_close_01 {
            position: absolute;
            top: 14px;
            right: 18px;
            background: transparent;
            border: 0;
            color: #f8ecdf;
            font-size: 30px;
            font-weight: 300;
            line-height: 1;
            padding: 4px 10px;
            cursor: pointer;
            font-family: 'Pretendard', sans-serif;
        }

        .header_drawer_close_01:hover {
            color: #ff9f36;
        }

        .header_drawer_links_01 {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .header_drawer_links_01 li {
            margin: 0;
        }

        [class^="header_drawer_link_"] {
            display: block;
            padding: 14px 12px;
            color: #f8ecdf;
            text-decoration: none;
            font-family: 'SfHambakneun', sans-serif;
            font-size: 20px;
            border-bottom: 1px solid rgba(248, 236, 223, 0.12);
            transition: color 0.2s ease, background 0.2s ease;
        }

        [class^="header_drawer_link_"]:hover {
            color: #ff9f36;
            background: rgba(255, 255, 255, 0.05);
        }

        body.is-drawer-open {
            overflow: hidden;
        }

        @media (max-width: 1200px) {
            .header_links_01 {
                gap: 32px;
            }

            [class^="header_link_"] {
                font-size: 20px;
            }
        }

        @media (max-width: 900px) {
            .header_links_01 {
                display: none;
            }

            .header_section_01 {
                height: 72px;
                padding: 0 24px;
            }
        }

        /* =====================================================
       HERO
    ===================================================== */
        .hero_section_01 {
            aspect-ratio: 3840/1755;
            background-color: #c8b8a8;
            position: relative;
            overflow: hidden;
        }

        .hero_bg_01 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 1;
            opacity: 0;
            animation: heroBgFade 1.2s ease 0.2s forwards;
        }

        .hero_herbs_01 {
            position: absolute;
            left: -4%;
            top: -13%;
            width: 50%;
            height: auto;
            z-index: 2;
            opacity: 0;
            transform: translateX(-60px);
            animation: heroSlideInLeft 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
            pointer-events: none;
        }

        .hero_smoke_01 {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 100%;
            height: auto;
            z-index: 3;
            opacity: 0;
            transform: translateX(110%);
            animation: heroSmokeFlyIn 1.26s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
            pointer-events: none;
            mix-blend-mode: screen;
        }

        .hero_content_01 {
            position: absolute;
            top: 59%;
            left: 13%;
            transform: translateY(-50%);
            z-index: 5;
        }

        .hero_title_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 56px;
            color: #40241a;
            line-height: 1.3;
            font-weight: normal;
            margin: 0 0 50px;
            letter-spacing: -1px;
            text-shadow: 0 4px 4px rgba(0, 0, 0, 0.55), 0 1px 2px rgba(0, 0, 0, 0.25);
            opacity: 0;
            transform: translateX(-40px);
            animation: heroSlideInLeft 1s ease 1.5s forwards;
        }

        .hero_highlight_01 {
            color: #ff9f36;
            font-weight: normal;
        }

        .hero_desc_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 23px;
            color: #000;
            line-height: 1.6;
            margin: 0 0 50px;
            font-weight: normal;
            opacity: 0;
            animation: heroFadeUp 0.9s ease 1.8s forwards;
        }

        .hero_cta_01 {
            display: inline-block;
            transition: transform 0.25s ease, filter 0.25s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: heroFadeUp 0.9s ease 2.1s forwards;
        }

        .hero_cta_01 img {
            display: block;
            width: 100%;
            max-width: 280px;
            height: auto;
        }

        .hero_cta_01:hover {
            transform: translateY(-3px);
            filter: brightness(1.08);
        }

        @keyframes heroBgFade {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes heroSlideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes heroSlideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }

            to {
                opacity: 0.85;
                transform: translateX(0);
            }
        }

        @keyframes heroSmokeFlyIn {
            0% {
                opacity: 0;
                transform: translateX(110%);
            }

            30% {
                opacity: 0.4;
            }

            100% {
                opacity: 0.85;
                transform: translateX(0);
            }
        }

        @keyframes heroFadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        /* =====================================================
       BRAND (01)
    ===================================================== */
        .brand_wrapper_01 {
            background-color: #fdfaf5;
            background-image: url('../img/brand_bg_01.png');
            background-size: 100% 100%;
            background-position: top center;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
        }

        .brand_section_01 {
            color: #40241a;
            padding: 200px 32px 120px;
            text-align: center;
            font-family: 'Gowun Batang', Georgia, serif;
            position: relative;
        }

        .brand_inner_01 {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .brand_badgerow_01 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .brand_title_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 67px;
            color: #40241a;
            margin-bottom: 80px;
            font-weight: normal;
            letter-spacing: -1px;
        }

        .brand_content_01 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-align: left;
            position: relative;
        }

        .brand_text_01 {
            display: flex;
            flex-direction: column;
            gap: 64px;
        }

        [class^="brand_item_"] {
            position: relative;
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .brand_item_01 {
            animation-delay: 0s;
        }

        .brand_item_02 {
            animation-delay: 0s;
        }

        .brand_item_03 {
            animation-delay: 0s;
        }

        .brand_badge_01,
        .brand_title_01 {
            opacity: 0;
            animation: fadeInUp 0.9s ease forwards;
        }

        .brand_badge_01 {
            animation-delay: 0.05s;
        }

        .brand_title_01 {
            animation-delay: 0.15s;
        }

        [class^="brand_line_"] {
            width: 40px;
            height: 6px;
            background-color: #40241a;
            margin-bottom: 16px;
        }

        [class^="brand_subtitle_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 32px;
            color: #40241a;
            margin-bottom: 13px;
            font-weight: normal;
        }

        [class^="brand_desc_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 27px;
            color: #866553;
            line-height: 1.6;
            font-weight: normal;
        }

        .brand_visual_01 {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            animation: fadeInUp 0.9s ease forwards;
            animation-delay: 0.1s;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .brand_logo_01 {
            width: 250px;
            height: auto;
            position: relative;
            z-index: 3;
        }

        .brand_bg_01 {
            position: absolute;
            right: 50%;
            bottom: 0;
            transform: translate(50%, 35%);
            z-index: 1;
            width: 53.7vw;
            max-width: 1500px;
            object-fit: contain;
        }

        /* =====================================================
       EXPERIENCE (01 sub)
    ===================================================== */
        .experience_section_01 {
            color: #40241a;
            padding: 180px 32px 140px;
            text-align: center;
            font-family: 'Gowun Batang', Georgia, serif;
            position: relative;
        }

        .experience_inner_01 {
            max-width: 1560px;
            margin: 0 auto;
        }

        .experience_badgerow_01 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .experience_title_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 67px;
            color: #40241a;
            margin-bottom: 32px;
            font-weight: normal;
            letter-spacing: -1px;
        }

        .experience_desc_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 27px;
            color: #866553;
            line-height: 1.5;
            margin-bottom: 64px;
            font-weight: normal;
        }

        [class^="experience_highlight_"] {
            font-size: 32px;
            color: #40241a;
            font-weight: bold;
        }

        .experience_frame_01 {
            background-image: url('../img/experience_bg_01.png');
            background-size: cover;
            background-position: center;
            padding: 6.2% 3.1% 4.5%;
            position: relative;
            aspect-ratio: 3120 / 1652;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            filter: drop-shadow(0 20px 40px rgba(64, 36, 26, 0.25));
        }

        .experience_tabs_01 {
            position: relative;
            display: inline-block;
            line-height: 0;
            width: 480px;
            max-width: 60%;
            margin-left: 5.8%;
            margin-bottom: 2.1%;
            z-index: 10;
            align-self: flex-start;
        }

        .experience_tabs_img_01,
        .experience_tabs_img_02 {
            display: block;
            width: 100%;
            height: auto;
            user-select: none;
            -webkit-user-drag: none;
        }

        .experience_tabs_img_02 {
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .experience_tabs_01:has(.experience_tab_02.is-active) .experience_tabs_img_01 {
            opacity: 0;
        }

        .experience_tabs_01:has(.experience_tab_02.is-active) .experience_tabs_img_02 {
            opacity: 1;
        }

        [class^="experience_tab_"] {
            position: absolute;
            top: 0;
            height: 100%;
            width: 50%;
            background: transparent;
            border: 0;
            padding: 0;
            font-size: 0;
            color: transparent;
            cursor: pointer;
            z-index: 2;
            -webkit-tap-highlight-color: transparent;
            outline: none;
        }

        [class^="experience_tab_"]:focus,
        [class^="experience_tab_"]:focus-visible {
            outline: none;
        }

        .experience_tab_01 {
            left: 0;
        }

        .experience_tab_02 {
            right: 0;
        }

        [class^="experience_main_"] {
            position: absolute;
            top: -5.8%;
            left: 0;
            width: 44.5%;
            height: auto;
            object-fit: contain;
            z-index: 1;
            pointer-events: none;
        }

        .experience_main_02 {
            top: 5%;
        }

        [class^="experience_ingredients_"] {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 6;
        }

        [class^="experience_ingredient_"] {
            width: 9%;
            aspect-ratio: 1 / 1;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            z-index: 2;
            cursor: pointer;
        }

        [class^="experience_ingredient_"] img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: scale 0.3s ease;
        }

        [class^="experience_ingredient_"] img:hover {
            scale: 1.2;
            z-index: 10;
        }

        @keyframes ingredientFloat {

            0%,
            100% {
                translate: 0 0;
            }

            50% {
                translate: 0 -8%;
            }
        }

        [class^="experience_ingredients_"][data-tab].is-active [class^="experience_ingredient_"] img {
            animation: ingredientFloat 2.6s ease-in-out infinite;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_02 img,
        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_05 img,
        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_08 img {
            animation-delay: -0.86s;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_03 img,
        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_06 img,
        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_09 img {
            animation-delay: -1.73s;
        }

        .experience_ingredient_01 {
            top: 8%;
            left: 64%;
        }

        .experience_ingredient_02 {
            top: 21%;
            left: 40%;
        }

        .experience_ingredient_03 {
            top: 8%;
            left: 52%;
        }

        .experience_ingredient_04 {
            top: 24%;
            left: 72%;
        }

        .experience_ingredient_05 {
            top: 18%;
            left: 85%;
        }

        .experience_ingredient_06 {
            top: 29%;
            left: 55%;
        }

        .experience_ingredient_07 {
            top: 41%;
            left: 44%;
        }

        .experience_ingredient_08 {
            top: 55%;
            left: 53%;
        }

        .experience_ingredient_09 {
            top: 66%;
            left: 43%;
        }

        [class^="experience_interaction_"] {
            display: flex;
            justify-content: flex-end;
            align-items: flex-end;
            gap: 20px;
            align-self: flex-end;
        }

        [class^="experience_textbox_"] {
            position: absolute;
            right: 17%;
            bottom: 34%;
            width: 20.5%;
            min-width: 260px;
            text-align: left;
            background: rgba(253, 250, 245, 0.55);
            border-radius: 15px;
            padding: 24px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #e5dec9;
            font-size: 18px;
            font-family: 'SfHambakneun', sans-serif;
            color: #40241a;
            line-height: 1.8;
            font-weight: 500;
            z-index: 5;
        }

        [class^="experience_sub_"] {
            position: absolute;
            bottom: 5.8%;
            right: -3.2%;
            width: 42.3%;
            height: auto;
            object-fit: contain;
            z-index: 6;
            pointer-events: none;
        }

        .experience_sub_02 {
            bottom: 8%;
            right: 0%;
            width: 38%;
        }

        .experience_footer_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 28px;
            color: #40241a;
            font-weight: 700;
            text-align: center;
            align-self: center;
        }

        .experience_badge_01,
        .experience_title_01,
        .experience_desc_01,
        .experience_tabs_01,
        .experience_frame_01,
        .experience_footer_01 {
            opacity: 0;
            animation: fadeInUp 0.9s ease forwards;
        }

        .experience_badge_01 {
            animation-delay: 0.05s;
        }

        .experience_title_01 {
            animation-delay: 0.15s;
        }

        .experience_desc_01 {
            animation-delay: 0.25s;
        }

        .experience_tabs_01 {
            animation-delay: 0.35s;
        }

        .experience_frame_01 {
            animation-delay: 0s;
        }

        .experience_footer_01 {
            animation-delay: 0s;
        }

        /* 탭 컨텐츠 표시/숨김 */
        [data-tab] {
            display: none;
        }

        [data-tab].is-active {
            display: block;
        }

        [class^="experience_interaction_"][data-tab].is-active {
            display: flex;
        }

        /* 탭 전환 애니메이션 */
        [class^="experience_main_"][data-tab].is-active {
            animation: fadeInLeft 0.5s ease forwards;
        }

        [class^="experience_sub_"][data-tab].is-active {
            animation: fadeInRight 0.5s ease forwards;
        }

        [class^="experience_interaction_"][data-tab].is-active [class^="experience_textbox_"] {
            animation: fadeInRight 0.5s ease 0.1s forwards;
            opacity: 0;
        }

        [class^="experience_ingredients_"][data-tab].is-active [class^="experience_ingredient_"] {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_01 {
            animation-delay: 0.05s;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_02 {
            animation-delay: 0.10s;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_03 {
            animation-delay: 0.15s;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_04 {
            animation-delay: 0.20s;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_05 {
            animation-delay: 0.25s;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_06 {
            animation-delay: 0.30s;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_07 {
            animation-delay: 0.35s;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_08 {
            animation-delay: 0.40s;
        }

        [class^="experience_ingredients_"][data-tab].is-active .experience_ingredient_09 {
            animation-delay: 0.45s;
        }

        @media (min-width: 1400px) and (max-width: 1600px) {
            [class^="experience_textbox_"] {
                font-size: 15px;
            }
        }

        @media (max-width: 900px) {

            .brand_title_01,
            .experience_title_01 {
                font-size: 40px;
            }

            .brand_content_01 {
                flex-direction: column;
                gap: 48px;
            }

            .brand_visual_01 {
                height: 350px;
            }

            .experience_tabs_01 {
                margin-left: 0;
                justify-content: center;
                align-self: center;
            }
        }

        /* =====================================================
       SIGNATURE (02)
    ===================================================== */
        .signature_section_01 {
            background-color: #40241a;
            background-image: url('../img/signature_bg_01.png');
            background-size: cover;
            background-position: center;
            color: #efdccc;
            padding: 160px 0 180px;
            text-align: center;
            font-family: 'Gowun Batang', Georgia, serif;
            position: relative;
            overflow: hidden;
        }

        .signature_inner_01 {
            max-width: 1660px;
            margin: 0 auto;
            padding: 120px 32px 200px;
            position: relative;
            z-index: 2;
        }

        [class^="signature_ornament_"] {
            position: absolute;
            width: 292px;
            height: 116px;
            background-size: contain;
            background-repeat: no-repeat;
            pointer-events: none;
        }

        .signature_ornament_01 {
            top: 0;
            left: 0;
            background-image: url('../img/signature_ornament_01.png');
        }

        .signature_ornament_02 {
            top: 0;
            right: 0;
            background-image: url('../img/signature_ornament_02.png');
        }

        .signature_ornament_03 {
            bottom: 0;
            left: 0;
            background-image: url('../img/signature_ornament_03.png');
        }

        .signature_ornament_04 {
            bottom: 0;
            right: 0;
            background-image: url('../img/signature_ornament_04.png');
        }

        .signature_subtitle_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 18px;
            color: #f4ca25;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .signature_title_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 55.43px;
            color: #efdccc;
            margin-bottom: 30px;
            font-weight: normal;
        }

        .signature_desc_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 26.63px;
            color: #ff9f36;
            line-height: 1.58;
            margin-bottom: 60px;
            font-weight: normal;
        }

        .signature_grid_01 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 44px;
            margin-top: 0;
        }

        .signature_subtitle_01,
        .signature_title_01,
        .signature_desc_01,
        .signature_item_01,
        .signature_item_02,
        .signature_item_03,
        .signature_item_04 {
            opacity: 0;
            animation: fadeInUp 0.9s ease forwards;
        }

        .signature_subtitle_01 {
            animation-delay: 0.05s;
        }

        .signature_title_01 {
            animation-delay: 0.15s;
        }

        .signature_desc_01 {
            animation-delay: 0.25s;
        }

        .signature_item_01 {
            animation-delay: 0.05s;
        }

        .signature_item_02 {
            animation-delay: 0.15s;
        }

        .signature_item_03 {
            animation-delay: 0.25s;
        }

        .signature_item_04 {
            animation-delay: 0.35s;
        }

        [class^="signature_item_"] {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        [class^="signature_frame_"] {
            width: 100%;
            aspect-ratio: 811 / 605;
            background-image: url('../img/signature_frame_01.png');
            background-size: 100% 100%;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: transform 0.2s ease;
        }

        [class^="signature_frame_"]:hover {
            transform: scale(1.1);
        }

        [class^="signature_imgclip_"] {
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 2px;
        }

        [class^="signature_frame_"] img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        [class^="signature_name_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 28px;
            color: #efdccc;
            margin-top: 30px;
            font-weight: normal;
        }

        @media (max-width: 900px) {
            .signature_grid_01 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .signature_grid_01 {
                grid-template-columns: 1fr;
            }
        }

        /* =====================================================
       MENU (03)
    ===================================================== */
        .menu_section_01 {
            background-color: #533529;
            background-image: url('../img/menu_bg_01.png');
            background-size: 100% 100%;
            background-position: center;
            color: #efdccc;
            padding: 180px 32px 180px;
            text-align: center;
            font-family: 'Gowun Batang', Georgia, serif;
        }

        .menu_inner_01 {
            max-width: 1536px;
            margin: 0 auto;
        }

        .menu_badge_01 {
            font-size: 24px;
            color: #f4ca25;
            font-weight: 600;
            font-family: 'SfHambakneun', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-block;
            margin-bottom: 16px;
        }

        .menu_title_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 55.43px;
            color: #efdccc;
            margin-bottom: 30px;
            font-weight: normal;
        }

        .menu_intro_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 26.63px;
            color: #ff9f36;
            line-height: 1.58;
            margin-bottom: 140px;
            font-weight: normal;
        }

        [class^="menu_cat_"] {
            width: 1536px;
            max-width: 100%;
            margin: 0 auto 140px;
            background-image: url('../img/menu_board_01.png');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            padding: 80px 30px 60px;
            position: relative;
        }

        [class^="menu_cathead_"] {
            background-image: url('../img/menu_nametag_01.png');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            width: 500px;
            height: 104px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: -52px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        [class^="menu_catname_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 39.97px;
            color: #40241a;
            margin: 0;
            font-weight: normal;
        }

        [class^="menu_catsub_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 27px;
            color: #866553;
            margin-bottom: 60px;
            font-weight: normal;
        }

        [class^="menu_grid_"] {
            overflow: hidden;
            padding: 14px 0;
            width: 100%;
            max-width: 1230px;
            margin: 0 auto;
            -webkit-mask-image: linear-gradient(90deg, transparent 2%, #000 10%, #000 90%, transparent 98%);
            mask-image: linear-gradient(90deg, transparent 2%, #000 10%, #000 90%, transparent 98%);
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
        }

        [class^="menu_grid_"] .swiper-wrapper {
            align-items: stretch;
        }

        [class^="menu_item_"] {
            text-align: center;
            transition: transform 0.3s ease;
            height: auto;
            box-sizing: border-box;
        }

        [class^="menu_item_"]:hover {
            transform: translateY(-10px);
        }

        [class^="menu_card_"] {
            padding: 0;
            border-radius: 18px;
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28), 0 4px 8px rgba(0, 0, 0, 0.15);
            margin: 0 auto 18px;
            width: 320px;
            max-width: 100%;
            aspect-ratio: 332.33 / 209.2;
            overflow: hidden;
        }

        [class^="menu_card_"] img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 18px;
        }

        [class^="menu_name_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 27px;
            color: #9b2f0e;
            display: block;
            margin-bottom: 10px;
            font-weight: normal;
        }

        [class^="menu_text_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 16px;
            color: #703010;
            line-height: 1.5;
            font-weight: normal;
        }

        /* 전체 카테고리 폰트 수치 통일 (이전 카테고리1 축소 override 제거) */

        /* 메뉴 fade-in stagger */
        .menu_badge_01,
        .menu_title_01,
        .menu_intro_01,
        [class^="menu_cat_"] {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .menu_title_01 {
            animation-delay: 0.1s;
        }

        .menu_intro_01 {
            animation-delay: 0.2s;
        }

        .menu_cat_01 {
            animation-delay: 0s;
        }

        .menu_cat_02 {
            animation-delay: 0s;
        }

        .menu_cat_03 {
            animation-delay: 0s;
        }

        .menu_cat_04 {
            animation-delay: 0s;
        }

        @media (max-width: 1024px) {

            .menu_grid_01,
            .menu_grid_04 {
                grid-template-columns: repeat(2, 1fr);
            }

            .menu_grid_02,
            .menu_grid_03 {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .menu_title_01 {
                font-size: 36px;
            }

            [class^="menu_grid_"] {
                grid-template-columns: 1fr;
            }
        }

        /* =====================================================
       PHILOSOPHY (04)
    ===================================================== */
        .philosophy_section_01 {
            background-image: url('../img/philosophy_bg_01.png');
            background-size: cover;
            background-position: center;
            color: #40241a;
            padding: 180px 32px 140px;
            text-align: center;
            font-family: 'Gowun Batang', Georgia, serif;
        }

        .philosophy_inner_01 {
            max-width: 1400px;
            margin: 0 auto;
        }

        .philosophy_badge_01 {
            color: #40241a;
            margin-bottom: 24px;
        }

        .philosophy_title_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 67px;
            color: #40241a;
            margin-bottom: 32px;
            font-weight: normal;
        }

        .philosophy_desc_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 32px;
            color: #40241a;
            line-height: 1.5;
            margin-bottom: 40px;
            font-weight: normal;
        }

        .philosophy_grid_01 {
            background-image: url('../img/philosophy_scroll_01.png');
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            aspect-ratio: 1566 / 2043;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
            text-align: center;
            width: 100%;
            max-width: 1566px;
            margin: 0 auto;
            padding: 13.7% 3.8%;
        }

        [class^="philosophy_block_"] {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }

        [class^="philosophy_subtitle_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 43px;
            color: #40241a;
            margin-bottom: 10px;
            font-weight: normal;
        }

        [class^="philosophy_item_"] {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            width: 100%;
        }

        .philosophy_item_02 {
            flex-direction: row-reverse;
        }

        [class^="philosophy_imgbox_"] {
            width: 436px;
            border-radius: 10px;
        }

        [class^="philosophy_imgbox_"] img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            filter: drop-shadow(0 12px 22px rgba(64, 36, 26, 0.35));
        }

        [class^="philosophy_bullets_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 30px;
            color: #40241a;
            list-style: none;
            text-align: left;
        }

        [class^="philosophy_bullets_"] li {
            margin-bottom: 15px;
        }

        [class^="philosophy_text_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 23px;
            color: #40241a;
            line-height: 1.6;
            font-weight: normal;
            text-align: center;
        }

        [class^="philosophy_divider_"] {
            width: 100%;
            max-width: 800px;
            margin: 40px auto;
        }

        .philosophy_badge_01,
        .philosophy_title_01,
        .philosophy_desc_01,
        [class^="philosophy_block_"] {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .philosophy_title_01 {
            animation-delay: 0.1s;
        }

        .philosophy_desc_01 {
            animation-delay: 0.2s;
        }

        .philosophy_block_01,
        .philosophy_block_02,
        .philosophy_block_03 {
            animation-delay: 0s;
        }


        /* =====================================================
       OPERATION (05) + POSTER wrapper
    ===================================================== */
        .operation_wrapper_01 {
            padding-bottom: 30px;
            background-color: #40241a;
            background-image: url('../img/poster_bg_01.png');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .operation_section_01 {
            color: #efdccc;
            text-align: center;
            font-family: 'Gowun Batang', Georgia, serif;
            position: relative;
            overflow: hidden;
        }

        .operation_strip_01 {
            display: block;
            width: 100%;
            max-width: 200px;
            height: auto;
            margin: 14px auto 18px;
        }

        .operation_strip_02 {
            display: block;
            width: 100%;
            max-width: 1400px;
            height: auto;
            margin: 24px auto 36px;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.95s;
        }

        .operation_inner_01 {
            max-width: 1516px;
            margin: 0 auto;
            padding: 160px 32px 100px;
            position: relative;
            z-index: 1;
        }

        .operation_badge_01 {
            color: #efdccc;
            margin-bottom: 24px;
        }

        .operation_title_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 67.26px;
            color: #efdccc;
            margin-bottom: 32px;
            font-weight: normal;
        }

        .operation_desc_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 32.31px;
            color: #fefbe3;
            line-height: 1.6;
            margin-bottom: 80px;
            font-weight: normal;
        }

        .operation_desc_01 .accent {
            color: #ffe299;
        }

        .operation_grid_01 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 56px;
            margin-bottom: 96px;
        }

        [class^="operation_card_"] {
            aspect-ratio: 339 / 539;
            background-size: 100% 100%;
            background-repeat: no-repeat;
            text-align: center;
            transition: transform 0.35s ease, filter 0.35s ease;
            color: #40241a;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding: 22% 0 8%;
            position: relative;
            filter: grayscale(1);
        }

        .operation_card_01 {
            background-image: url('../img/operation_card_01.png');
        }

        .operation_card_02 {
            background-image: url('../img/operation_card_02.png');
        }

        .operation_card_03 {
            background-image: url('../img/operation_card_03.png');
        }

        .operation_card_04 {
            background-image: url('../img/operation_card_04.png');
        }

        [class^="operation_card_"]:hover {
            transform: translateY(-12px);
            filter: grayscale(0) drop-shadow(0 16px 32px rgba(255, 159, 54, 0.35));
        }

        [class^="operation_card_"]:hover [class^="operation_cardtitle_"] {
            color: #9b2f0e;
        }

        [class^="operation_card_"]:hover [class^="operation_carddesc_"] {
            color: #5b2b08;
        }

        [class^="operation_card_"]:hover .operation_strip_01 {
            filter: hue-rotate(-12deg) brightness(0.85);
        }

        [class^="operation_cardimg_"] {
            display: none;
        }

        [class^="operation_iconbox_"] {
            width: 84px;
            height: 84px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        [class^="operation_iconbox_"] img {
            width: 100%;
            height: auto;
            max-height: 100%;
        }

        [class^="operation_body_"] {
            padding: 0;
            width: 100%;
        }

        [class^="operation_cardtitle_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 33px;
            color: #40241a;
            margin: 0 0 10px;
            font-weight: normal;
            line-height: 1.35;
            transition: color 0.3s ease;
        }

        [class^="operation_carddesc_"] {
            font-size: 18px;
            color: #703010;
            line-height: 1.8;
            font-family: 'Pretendard', 'Gowun Batang', Georgia, serif;
            font-weight: 700;
            margin: 0;
            transition: color 0.3s ease;
        }

        .operation_sub_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 26.63px;
            color: #ff9f36;
            line-height: 1.6;
            margin-bottom: 40px;
            text-align: center;
            font-weight: normal;
        }

        /* operation 등장 효과 */
        .operation_badge_01,
        .operation_title_01,
        .operation_desc_01,
        .operation_card_01,
        .operation_card_02,
        .operation_card_03,
        .operation_card_04,
        .operation_sub_01 {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .operation_title_01 {
            animation-delay: 0.1s;
        }

        .operation_desc_01 {
            animation-delay: 0.2s;
        }

        .operation_card_01 {
            animation-delay: 0.05s;
        }

        .operation_card_02 {
            animation-delay: 0.15s;
        }

        .operation_card_03 {
            animation-delay: 0.25s;
        }

        .operation_card_04 {
            animation-delay: 0.35s;
        }

        .operation_sub_01 {
            animation-delay: 0s;
        }


        /* =====================================================
       POSTER (05-2)
    ===================================================== */
        .poster_section_01 {
            color: #efdccc;
            text-align: center;
            font-family: 'Gowun Batang', Georgia, serif;
            position: relative;
            padding-bottom: 30px;
        }

        .poster_inner_01 {
            max-width: 1516px;
            margin: 0 auto;
            padding: 90px 32px 0px;
            position: relative;
            z-index: 1;
        }

        .poster_badge_01 {
            color: #efdccc;
            margin-bottom: 24px;
        }

        .poster_title_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 67.26px;
            color: #efdccc;
            font-weight: normal;
            margin: 0 0 32px;
            line-height: 1.2;
        }

        .poster_desc_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 32.31px;
            color: #fefbe3;
            line-height: 1.6;
            font-weight: normal;
            margin: 0 0 80px;
        }

        .poster_highlight_01 {
            color: #ffe299;
        }

        .poster_carousel_wrap_01 {
            background-image: url('../img/poster_box_01.png');
            background-size: 100% 100%;
            background-repeat: no-repeat;
            max-width: 1400px;
            margin: 0 auto;
            padding: 70px 50px 60px;
        }

        .poster_carousel_01 {
            max-width: 100%;
            margin: 0 auto;
            padding: 16px 16px 20px;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 98%, transparent 100%);
        }

        .poster_carousel_01 .swiper-slide {
            display: flex;
            justify-content: center;
        }

        .poster_img_01 {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.35);
        }

        .poster_img_01:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 16px rgba(0, 0, 0, 0.45);
        }

        .poster_pagination_01 {
            margin-top: 28px;
            position: relative !important;
        }

        .poster_pagination_01 .swiper-pagination-bullet {
            background: #482817;
            opacity: 0.4;
        }

        .poster_pagination_01 .swiper-pagination-bullet-active {
            opacity: 1;
        }

        .poster_badge_01,
        .poster_title_01,
        .poster_desc_01 {
            opacity: 0;
            animation: fadeInUp 0.9s ease forwards;
        }

        .poster_badge_01 {
            animation-delay: 0.05s;
        }

        .poster_title_01 {
            animation-delay: 0.15s;
        }

        .poster_desc_01 {
            animation-delay: 0.25s;
        }


        /* =====================================================
       FRANCHISE (06)
    ===================================================== */
        .franchise_section_01 {
            background-color: #f7e6d4;
            background-image: url('../img/franchise_section_bg.png');
            background-size: 100% 100%;
            background-position: top center;
            background-repeat: no-repeat;
            color: #40241a;
            font-family: 'Gowun Batang', Georgia, serif;
            overflow: hidden;
            position: relative;
        }

        .franchise_header_01 {
            text-align: center;
            padding: 180px 40px 120px;
        }

        .franchise_badge_01,
        .franchise_title_01,
        .franchise_desc_01 {
            opacity: 0;
            animation: fadeInUp 0.9s ease forwards;
        }

        .franchise_badge_01 {
            animation-delay: 0.05s;
        }

        .franchise_title_01 {
            animation-delay: 0.15s;
        }

        .franchise_desc_01 {
            animation-delay: 0.25s;
        }

        .franchise_badge_01 {
            font-size: 29.89px;
            margin-bottom: 32px;
        }

        .franchise_title_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 67.26px;
            color: #40241a;
            font-weight: normal;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .franchise_desc_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 26px;
            color: #40241a;
            line-height: 1.5;
            font-weight: normal;
        }

        .franchise_inner_01 {
            margin: 0 auto;
            padding: 0 40px;
        }

        [class^="franchise_block_"] {
            width: 1458px;
            aspect-ratio: 2916/1744;
            padding: 110px 84px 60px;
            margin: 0 auto 140px;
            background-image: url('../img/franchise_panel_common.png');
            background-size: 100% 100%;
            background-position: center center;
            background-repeat: no-repeat;
            position: relative;
            text-align: center;
            zoom: min(1, calc(100vw / 1600));
        }

        [class^="franchise_blockhead_"] {
            display: block;
            margin-bottom: 0;
        }

        [class^="franchise_blocknum_"] {
            position: absolute;
            top: -58px;
            left: calc(50% - 122px);
            width: 244px;
            height: 137px;
            background-image: url('../img/franchise_badge_top.png');
            background-size: 100% 100%;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            font-family: 'SfHambakneun', sans-serif;
            font-size: 38px;
            color: #efdccc;
            line-height: 1;
            margin: 0;
            z-index: 2;
        }

        [class^="franchise_blockgroup_"] {
            padding-top: 0;
        }

        [class^="franchise_blocktitle_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 48px;
            color: #462c1e;
            font-weight: normal;
            margin: 0 0 20px;
            line-height: 1;
        }

        [class^="franchise_blockdesc_"] {
            font-family: 'Pretendard', 'Gowun Batang', sans-serif;
            font-size: 26px;
            color: #40241a;
            line-height: 1.59;
            font-weight: 500;
            margin: 0 0 30px;
        }

        [class^="franchise_blockdesc_"] .hl {
            color: #e53600;
            font-weight: 600;
        }

        /* Process steps - dark cards */
        [class^="franchise_steps_"] {
            display: flex;
            justify-content: center;
            gap: 29px;
        }

        .franchise_steps_02 {
            margin-top: 56px;
            margin-bottom: 56px;
        }

        [class^="franchise_step_"] {
            background: #553418;
            border-radius: 12px;
            width: 249px;
            height: 243px;
            padding: 0;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            flex-shrink: 0;
        }

        [class^="franchise_stepnum_"] {
            position: absolute;
            top: 12px;
            left: 12px;
            width: 28px;
            height: 28px;
            background: #f4ca25;
            border-radius: 7px;
            color: #40241a;
            font-family: 'Pretendard', sans-serif;
            font-size: 21px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            padding-top: 1px;
        }

        [class^="franchise_stepicon_"] {
            width: 115px;
            height: 115px;
            margin: 0 auto 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        [class^="franchise_stepicon_"] img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        [class^="franchise_steptitle_"] {
            font-family: 'Pretendard', sans-serif;
            font-size: 18px;
            color: #fff;
            font-weight: 800;
            margin: 0 0 7px;
            line-height: 1.3;
        }

        [class^="franchise_stepdesc_"] {
            font-family: 'Pretendard', sans-serif;
            font-size: 13px;
            color: #fff;
            line-height: 1.4;
            font-weight: 700;
            margin: 0;
        }

        /* franchise_block_01 등장 효과 */
        .franchise_blocknum_01,
        .franchise_blocktitle_01,
        .franchise_blockdesc_01,
        .franchise_step_01,
        .franchise_step_02,
        .franchise_step_03,
        .franchise_step_04,
        .franchise_step_05,
        .franchise_step_06,
        .franchise_step_07,
        .franchise_step_08,
        .franchise_blockfoot_01 {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .franchise_blocknum_01 {
            animation-delay: 0.05s;
        }

        .franchise_blocktitle_01 {
            animation-delay: 0.15s;
        }

        .franchise_blockdesc_01 {
            animation-delay: 0.25s;
        }

        .franchise_step_01 {
            animation-delay: 0.05s;
        }

        .franchise_step_02 {
            animation-delay: 0.15s;
        }

        .franchise_step_03 {
            animation-delay: 0.25s;
        }

        .franchise_step_04 {
            animation-delay: 0.35s;
        }

        .franchise_step_05 {
            animation-delay: 0.05s;
        }

        .franchise_step_06 {
            animation-delay: 0.15s;
        }

        .franchise_step_07 {
            animation-delay: 0.25s;
        }

        .franchise_step_08 {
            animation-delay: 0.35s;
        }

        .franchise_blockfoot_01 {
            animation-delay: 0s;
        }

        /* Bottom caption with decorative lines (공통) */
        [class^="franchise_blockfoot_"] {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 18px;
            margin-top: 30px;
        }

        [class^="franchise_blockfoot_"] .rod_left,
        [class^="franchise_blockfoot_"] .rod_right {
            width: 158px;
            height: auto;
            flex-shrink: 0;
            object-fit: contain;
        }

        [class^="franchise_blockfoot_"] .text {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 18px;
            color: #ab7b41;
            text-align: center;
            line-height: 1.6;
            padding: 0 4px;
            margin: 0;
        }

        /* ===== Block 02 - 매출 현황 ===== */
        .franchise_block_02 {
            background-image: url('../img/franchise_panel_calander.png');
        }

        .franchise_blockdesc_02 .hl {
            color: #e53600;
            font-weight: 600;
        }

        /* Stats row */
        .franchise_revenue_01 {
            width: 100%;
            max-width: 1255px;
            height: 129px;
            background: #f7e6d4;
            border: 1px solid #ad8a66;
            border-radius: 12px;
            margin: 30px auto 0;
            display: flex;
            position: relative;
            overflow: hidden;
        }

        .franchise_period_label_01 {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 40px auto 28px;
            width: 300px;
            height: 50px;
            background: #462617;
            color: #ead6ba;
            font-family: 'SfHambakneun', sans-serif;
            font-size: 24px;
            font-weight: normal;
            border-radius: 11px;
            line-height: 1;
            box-sizing: border-box;
            opacity: 0;
            animation: fadeInUp 0.9s ease forwards;
        }

        .franchise_period_divider_01 {
            display: block;
            width: 100%;
            max-width: 1255px;
            height: 1px;
            margin: 60px auto 0;
            background: rgba(173, 138, 102, 0.5);
        }

        .franchise_revenue_01::before,
        .franchise_revenue_01::after {
            content: '';
            position: absolute;
            top: 20px;
            bottom: 20px;
            width: 1px;
            background: #ad8a66;
            pointer-events: none;
        }

        .franchise_revenue_01::before {
            left: calc(100% / 3);
        }

        .franchise_revenue_01::after {
            left: calc(200% / 3);
        }

        [class^="franchise_stat_"] {
            flex: 1 1 0;
            min-width: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 0;
            background: transparent;
            border: 0;
            border-radius: 0;
            text-align: left;
        }

        [class^="franchise_stat_"] [class^="franchise_statbody_"] {
            flex: 0 0 auto;
        }

        [class^="franchise_staticon_"] {
            width: 89px;
            height: 89px;
            flex-shrink: 0;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 100% 100%;
        }

        .franchise_staticon_01 {
            background-image: url('../img/franchise_stat_icon_01.png');
        }

        .franchise_staticon_02 {
            background-image: url('../img/franchise_stat_icon_02.png');
        }

        .franchise_staticon_03 {
            background-image: url('../img/franchise_stat_icon_03.png');
        }

        [class^="franchise_statbody_"] {
            display: flex;
            flex-direction: column;
            gap: 4px;
            min-width: 0;
            flex: 1;
        }

        [class^="franchise_statlabel_"] {
            font-family: 'Pretendard', sans-serif;
            font-size: 23px;
            font-weight: 800;
            color: #482817;
            line-height: 1;
            white-space: nowrap;
        }

        [class^="franchise_statvalue_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 41px;
            color: #462c1e;
            font-weight: normal;
            line-height: 1.1;
            margin: 0;
            white-space: nowrap;
            letter-spacing: -0.01em;
        }

        [class^="franchise_statvalue_"] .unit {
            font-size: 21px;
            margin-left: 4px;
            color: #462c1e;
            letter-spacing: 0;
        }

        @keyframes countFlash {

            0%,
            100% {
                color: #462c1e;
            }

            50% {
                color: #e80000;
            }
        }

        [class^="franchise_count_"].is-flash {
            animation: countFlash 1.2s ease-in-out infinite;
        }

        /* Calendar + Chart row */
        .franchise_chartrow_01 {
            display: flex;
            gap: 33.5px;
            width: 100%;
            max-width: 1255px;
            margin: 50px auto 0;
        }

        .franchise_calendar_box_01,
        .franchise_chart_box_01 {
            background: #f7e6d4;
            border: 0.83px solid #ad8a66;
            position: relative;
            box-sizing: border-box;
        }

        .franchise_calendar_box_01 {
            flex: 0 0 540px;
            height: 400px;
            border-radius: 9px;
            padding: 29px 10px 10px;
        }

        .franchise_chart_box_01 {
            flex: 0 0 681px;
            height: 400px;
            border-radius: 10px;
            padding: 29px 27px 15px;
        }

        .franchise_calendar_title_01,
        .franchise_chart_title_01 {
            position: absolute;
            top: -20px;
            left: calc(50% - 99px);
            width: 198px;
            height: 39px;
            background: #462617;
            color: #ead6ba;
            font-family: 'SfHambakneun', sans-serif;
            font-size: 17px;
            font-weight: normal;
            border-radius: 11px;
            white-space: nowrap;
            margin: 0;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            line-height: 1;
            box-sizing: border-box;
        }

        .franchise_calendar_wrap_01 {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .franchise_calendar_img_01 {
            width: 100%;
            height: 100%;
            object-fit: fill;
            display: block;
            background: transparent;
            border-radius: 4px;
        }

        .franchise_calendar_amounts_01 {
            position: absolute;
            top: 9%;
            left: 0;
            right: 0;
            bottom: 0;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            grid-template-rows: repeat(5, 1fr);
            z-index: 2;
            pointer-events: none;
        }

        .franchise_calendar_amounts_01>span {
            display: flex;
            align-items: flex-end;
            justify-content: flex-end;
            padding-right: 6%;
            padding-bottom: 6%;
            font-family: 'Pretendard', sans-serif;
            font-size: 11px;
            font-weight: 600;
            color: #40241a;
            line-height: 1;
        }

        /* ===== Dynamic calendar grid (JS-rendered) ===== */
        [class^="franchise_calendar_grid_"] {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            grid-template-rows: 26px repeat(var(--cal-rows, 5), 1fr);
            width: 100%;
            height: 100%;
            background: #fdf5e6;
            border: 1px solid #ad8a66;
            border-radius: 6px;
            overflow: hidden;
            font-family: 'Pretendard', sans-serif;
        }

        [class^="franchise_calendar_grid_"] .head {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: #482817;
            background: rgba(173, 138, 102, 0.12);
            border-bottom: 1px solid #ad8a66;
            line-height: 1;
        }

        [class^="franchise_calendar_grid_"] .head.is-sun {
            color: #ca0403;
        }

        [class^="franchise_calendar_grid_"] .head.is-sat {
            color: #2466c4;
        }

        [class^="franchise_calendar_grid_"] .cell {
            padding: 5px 8px 5px 8px;
            border-right: 1px solid #e8d0a8;
            border-bottom: 1px solid #e8d0a8;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 0;
            min-width: 0;
            overflow: hidden;
            box-sizing: border-box;
        }

        [class^="franchise_calendar_grid_"] .cell:nth-child(7n) {
            border-right: none;
        }

        /* 내용이 있는 토/일요일 셀에만 배경 적용 (빈 셀은 배경 없음) */
        [class^="franchise_calendar_grid_"] .cell.is-sun,
        [class^="franchise_calendar_grid_"] .cell.is-sat {
            background: rgba(255, 200, 150, 0.18);
        }

        [class^="franchise_calendar_grid_"] .cell .day {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #40241a;
            line-height: 1;
            text-align: left;
        }

        [class^="franchise_calendar_grid_"] .cell.is-sun .day {
            color: #ca0403;
        }

        [class^="franchise_calendar_grid_"] .cell.is-sat .day {
            color: #2466c4;
        }

        [class^="franchise_calendar_grid_"] .cell .amt {
            font-size: 11px;
            color: #40241a;
            text-align: right;
            font-weight: 600;
            line-height: 1.1;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }


        /* Bar chart */
        .franchise_chart_plot_01 {
            position: relative;
            height: 261px;
            display: flex;
            align-items: stretch;
        }

        .franchise_chart_yaxis_01 {
            width: 46px;
            height: 100%;
            position: relative;
            flex-shrink: 0;
            font-family: 'Pretendard', sans-serif;
            font-size: 11px;
            color: #876644;
        }

        .franchise_chart_ytick_01 {
            position: absolute;
            right: 4px;
            transform: translateY(-50%);
            white-space: nowrap;
        }

        .franchise_chart_yunit_01 {
            position: absolute;
            top: -19px;
            left: 0;
            font-size: 11px;
            color: #876644;
            font-family: 'Pretendard', sans-serif;
            white-space: nowrap;
        }

        .franchise_chart_area_01 {
            flex: 1;
            position: relative;
            border-left: 1px solid #876644;
            border-bottom: 1px solid #876644;
        }

        .franchise_chart_gridline_01 {
            position: absolute;
            left: 0;
            right: 0;
            height: 1px;
            background: #d8c0a3;
            opacity: 0.5;
            pointer-events: none;
        }

        .franchise_chart_bars_01 {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            padding: 0 7px;
            gap: 6px;
        }

        .franchise_chart_bar_01 {
            flex: 1 1 0;
            max-width: 12px;
            background: #c9a06a;
            height: 0;
            position: relative;
            border-radius: 50px 50px 0 0;
            transition: height 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            min-width: 0;
        }

        .franchise_chart_bar_01.is-top3 {
            background: #ca0403;
        }

        .franchise_chart_bar_01 .tip {
            position: absolute;
            bottom: calc(100% + 7px);
            left: 50%;
            transform: translateX(-50%);
            background: #fff;
            border: 1px solid #ad8a66;
            border-radius: 5px;
            padding: 5px 7px;
            font-family: 'Pretendard', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: #ca0403;
            white-space: nowrap;
            line-height: 1.2;
            opacity: 0;
            transition: opacity 0.4s ease 0.6s;
            pointer-events: none;
        }

        .franchise_chart_bar_01.is-top3 .tip {
            display: block;
        }

        .franchise_chart_bar_01.is-raised .tip {
            bottom: calc(100% + 52px);
        }

        .franchise_chart_bar_01:not(.is-top3) .tip {
            display: none;
        }

        .franchise_chart_bar_01.is-anim .tip {
            opacity: 1;
        }

        .franchise_chart_xaxis_01 {
            margin-left: 46px;
            display: flex;
            justify-content: space-between;
            padding: 3px 5px 0;
            font-family: 'Pretendard', sans-serif;
            font-size: 11px;
            color: #876644;
        }

        .franchise_chart_legend_01 {
            position: absolute;
            top: 12px;
            right: 17px;
            display: flex;
            align-items: center;
            gap: 7px;
            font-family: 'Pretendard', sans-serif;
            font-size: 11px;
            color: #482817;
        }

        .franchise_chart_legend_01 .swatch {
            width: 12px;
            height: 12px;
            background: #ca0403;
            border-radius: 2px;
        }

        .franchise_chart_note_01 {
            background: #f7e6d4;
            border: 0.59px solid #ad8a66;
            border-radius: 12px;
            margin: 8px auto 0;
            width: 605px;
            height: 70px;
            padding: 10px 22px 10px 72px;
            display: flex;
            align-items: center;
            gap: 17px;
            position: relative;
            box-sizing: border-box;
        }

        .franchise_chart_noteicon_01 {
            position: absolute;
            left: 17px;
            top: 50%;
            transform: translateY(-50%);
            width: 39px;
            height: auto;
        }

        .franchise_chart_notetext_01 {
            text-align: left;
            font-family: 'Pretendard', sans-serif;
            font-size: 16px;
            color: #40241a;
            font-weight: 500;
            line-height: 1.34;
            margin: 0;
        }

        /* block_02 등장 효과 */
        .franchise_blocknum_02,
        .franchise_blocktitle_02,
        .franchise_blockdesc_02,
        .franchise_revenue_01,
        .franchise_chartrow_01,
        .franchise_blockfoot_02 {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .franchise_blocknum_02 {
            animation-delay: 0.05s;
        }

        .franchise_blocktitle_02 {
            animation-delay: 0.15s;
        }

        .franchise_blockdesc_02 {
            animation-delay: 0.25s;
        }

        .franchise_revenue_01 {
            animation-delay: 0.05s;
        }

        .franchise_chartrow_01 {
            animation-delay: 0s;
        }

        .franchise_blockfoot_02 {
            animation-delay: 0s;
        }

        /* ===== Block 03 - 영상 콘텐츠 ===== */
        .franchise_blocktitle_03 {
            margin-bottom: 24px;
        }

        .franchise_videolayout_01 {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 60px;
            margin-top: 30px;
        }

        .franchise_videocol_01,
        .franchise_videocol_03 {
            flex: 0 0 380px;
            display: flex;
            flex-direction: column;
        }

        .franchise_videocol_02 {
            flex: 0 0 301px;
        }

        [class^="franchise_videoheader_"] {
            width: 380px;
            height: 42px;
            background: #462617;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'SfHambakneun', sans-serif;
            font-size: 27px;
            color: #ead6ba;
            margin: 0 0 50px;
            font-weight: normal;
            line-height: 1;
        }

        .franchise_videomain_01 {
            width: 381px;
            height: 214px;
            background: #0b1014;
            border-radius: 11px;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        .franchise_videomain_01:hover {
            transform: translateY(-4px);
        }

        .franchise_videomain_thumb_01 {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .franchise_videoinfogrid_01 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
            margin: 60px -20px 0;
        }

        [class^="franchise_videoinfoitem_"] {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 13px;
            position: relative;
        }

        [class^="franchise_videoinfoitem_"]:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -3.5px;
            top: 0;
            bottom: 0;
            width: 1px;
            background: #ad8a66;
            pointer-events: none;
        }

        [class^="franchise_videoinfoicon_"] {
            width: 41px;
            height: 41px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #482817;
        }

        [class^="franchise_videoinfoicon_"] svg {
            width: 100%;
            height: 100%;
        }

        [class^="franchise_videoinfotitle_"] {
            font-family: 'Pretendard', sans-serif;
            font-size: 19px;
            font-weight: 700;
            color: #40241a;
            margin: 0;
            line-height: 1.2;
        }

        [class^="franchise_videoinfodesc_"] {
            font-family: 'Pretendard', sans-serif;
            font-size: 12.5px;
            font-weight: 500;
            color: #40241a;
            line-height: 1.5;
            margin: 0;
        }

        /* Right side: Reels grid */
        .franchise_videoreels_01 {
            display: grid;
            grid-template-columns: repeat(3, 116px);
            grid-template-rows: repeat(2, 194px);
            gap: 16px 16.5px;
            justify-content: center;
        }

        [class^="franchise_videoreel_"] {
            width: 116px;
            height: 194px;
            background: #0b1014;
            border-radius: 12px;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
        }

        [class^="franchise_videoreel_"]:hover {
            transform: translateY(-3px);
        }

        [class^="franchise_videoreel_thumb_"] {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Phone mockup (center) - image based */
        .franchise_phone_swiper_01 {
            width: 380px;
            margin: 0 auto;
            padding: 4px 4px 32px;
            box-sizing: border-box;
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
            -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
            -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
        }

        .franchise_phone_swiper_01 .swiper-slide {
            display: flex;
            justify-content: center;
        }

        .franchise_phone_pagination_01 {
            bottom: 0 !important;
        }

        .franchise_phone_pagination_01 .swiper-pagination-bullet {
            background: #482817;
            opacity: 0.4;
        }

        .franchise_phone_pagination_01 .swiper-pagination-bullet-active {
            opacity: 1;
        }

        .franchise_phone_01 {
            width: 301px;
            cursor: pointer;
            margin: 0 auto;
            position: relative;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.95));
            transition: transform 0.3s ease;
        }

        .franchise_phone_01:hover {
            transform: translateY(-4px);
        }

        .franchise_phone_img_01 {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Play icon overlay */
        [data-video-url] .play_icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.18);
            border: 2px solid rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s, transform 0.3s;
            z-index: 2;
            pointer-events: none;
        }

        [data-video-url] .play_icon::after {
            content: '';
            border-left: 12px solid #fff;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
            margin-left: 3px;
        }

        [data-video-url]:hover .play_icon {
            background: rgba(255, 255, 255, 0.35);
            transform: translate(-50%, -50%) scale(1.05);
        }

        [class^="franchise_videoreel_"] .play_icon {
            width: 30px;
            height: 30px;
            border-width: 1.5px;
        }

        [class^="franchise_videoreel_"] .play_icon::after {
            border-left: 8px solid #fff;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
        }

        /* block_03 등장 효과 */
        .franchise_blocknum_03,
        .franchise_blocktitle_03,
        .franchise_blockdesc_03,
        .franchise_videocol_01,
        .franchise_videocol_02,
        .franchise_videocol_03,
        .franchise_blockfoot_03 {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .franchise_blocknum_03 {
            animation-delay: 0.05s;
        }

        .franchise_blocktitle_03 {
            animation-delay: 0.15s;
        }

        .franchise_blockdesc_03 {
            animation-delay: 0.25s;
        }

        .franchise_videocol_01 {
            animation-delay: 0.05s;
        }

        .franchise_videocol_02 {
            animation-delay: 0.15s;
        }

        .franchise_videocol_03 {
            animation-delay: 0.25s;
        }

        .franchise_blockfoot_03 {
            animation-delay: 0s;
        }

        /* Video popup modal */
        .video_modal_01 {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 60px 40px 40px;
            animation: modalFadeIn 0.3s ease forwards;
        }

        .video_modal_01.is-open {
            display: flex;
        }

        .video_modal_content_01 {
            width: min(900px, calc(100vw - 80px));
            max-height: calc(100vh - 120px);
            aspect-ratio: 16 / 9;
            background: #0b1014;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
            transition: aspect-ratio 0.2s ease;
        }

        .video_modal_content_01.is-vertical {
            width: min(
                calc((100vh - 120px) * var(--aspect-w, 9) / var(--aspect-h, 16)),
                calc(100vw - 80px)
            );
            max-height: unset;
        }

        .video_modal_close_01 {
            position: absolute;
            top: -52px;
            right: 0;
            background: transparent;
            border: 0;
            color: #ead6ba;
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
            padding: 0 12px;
            font-family: 'Pretendard', sans-serif;
            font-weight: 300;
        }

        .video_modal_close_01:hover {
            color: #fff;
        }

        .video_modal_iframe_01,
        .video_modal_video_01 {
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
            background: #000;
        }

        .video_modal_video_01 {
            object-fit: contain;
        }

        .video_modal_placeholder_01 {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #ead6ba;
            font-family: 'SfHambakneun', sans-serif;
            font-size: 22px;
            background: #1a0c06;
            text-align: center;
            gap: 12px;
        }

        .video_modal_placeholder_01 small {
            font-family: 'Pretendard', sans-serif;
            font-size: 14px;
            color: #ab7b41;
            font-weight: 500;
        }

        @keyframes modalFadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Poster image modal */
        .poster_modal_01 {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            animation: modalFadeIn 0.3s ease forwards;
            cursor: pointer;
        }

        .poster_modal_01.is-open {
            display: flex;
        }

        .poster_modal_close_01 {
            position: fixed;
            top: 24px;
            right: 32px;
            background: transparent;
            border: 0;
            color: #ead6ba;
            font-size: 36px;
            cursor: pointer;
            line-height: 1;
            padding: 0 12px;
            font-family: 'Pretendard', sans-serif;
            font-weight: 300;
            z-index: 10000;
        }

        .poster_modal_close_01:hover {
            color: #fff;
        }

        .poster_modal_img_01 {
            max-width: 80vw;
            max-height: 80vh;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
            cursor: default;
        }

        /* ===== Block 04 - 가맹 관련 자료 ===== */
        .franchise_block_04 {
            margin-bottom: 0;
            background-image: url('../img/operation_card_bg_new.png'), url('../img/franchise_panel_common.png');
            background-position: right bottom, center center;
            background-size: 450px auto, 100% 100%;
            background-repeat: no-repeat, no-repeat;
        }

        .franchise_doclayout_01 {
            display: grid;
            grid-template-columns: 557px 461px;
            gap: 85px;
            margin-top: 30px;
            justify-content: center;
            align-items: start;
        }

        .franchise_costtable_01 {
            position: relative;
        }

        .franchise_costtable_titlerow_01,
        .franchise_reviewtitle_row_01 {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin: 0 0 18px;
        }

        .franchise_costtable_titlerow_01 {
            margin: 0;
            z-index: 3;
        }

        .franchise_costtable_titlerow_01 .rod_left,
        .franchise_costtable_titlerow_01 .rod_right,
        .franchise_reviewtitle_row_01 .rod_left,
        .franchise_reviewtitle_row_01 .rod_right {
            width: 109px;
            height: auto;
            flex-shrink: 0;
            display: block;
        }

        .franchise_costtable_title_01 {
            width: 242px;
            height: 27px;
            background: #5b3717;
            border-radius: 10px;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ead6ba;
            font-family: 'SfHambakneun', sans-serif;
            font-size: 17px;
            font-weight: normal;
            line-height: 1;
            flex-shrink: 0;
        }

        .franchise_costtable_unit_00 {
            font-family: 'Pretendard', sans-serif;
            font-size: 13px;
            color: #ab7b41;
            text-align: center;
            display: block;
            margin: 19px 0 0px;
            font-weight: 500;
        }
        .franchise_costtable_unit_01 {
            font-family: 'Pretendard', sans-serif;
            font-size: 13px;
            color: #ab7b41;
            text-align: right;
            display: block;
            margin: 10px 0 7px;
            font-weight: 500;
        }

        .franchise_table_01 {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 6px;
        }

        .franchise_costtable_note_01 {
            margin: 12px 0 0;
            font-family: 'Pretendard', sans-serif;
            font-size: 13px;
            color: #ab7b41;
            font-weight: 500;
            text-align: left;
        }

        .franchise_reviewlist_01 {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            padding-bottom: 28px;
        }

        .franchise_reviewtitle_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 22px;
            color: #5b3717;
            font-weight: normal;
            margin: 0;
            text-align: center;
            line-height: 1;
            padding: 0;
            flex-shrink: 0;
            white-space: nowrap;
        }

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

        [class^="franchise_reviewcard_"] {
            background-color: transparent;
            background-repeat: no-repeat;
            background-size: 64px 64px;
            background-position: 17px center;
            border: 1px solid #ab7b41;
            border-radius: 12px;
            padding: 0 22px 0 97px;
            height: 82px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
        }

        .franchise_reviewcard_01 {
            background-image: url('../img/franchise_reviewicon_01.png');
        }

        .franchise_reviewcard_02 {
            background-image: url('../img/franchise_reviewicon_02.png');
        }

        .franchise_reviewcard_03 {
            background-image: url('../img/franchise_reviewicon_03.png');
        }

        .franchise_reviewcard_04 {
            background-image: url('../img/franchise_reviewicon_04.png');
        }

        [class^="franchise_reviewcardtitle_"] {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 19px;
            color: #563519;
            font-weight: normal;
            margin: 0;
            line-height: 1.1;
            text-align: left;
        }

        [class^="franchise_reviewcarddesc_"] {
            font-family: 'Pretendard', sans-serif;
            font-size: 15.5px;
            color: #563519;
            line-height: 1.35;
            margin: 0;
            font-weight: 500;
            text-align: left;
        }

        .franchise_cta_01 {
            margin: 30px auto 0;
            max-width: 1105px;
            min-height: 96px;
            background: transparent;
            border: 1.66px solid #ab7b41;
            border-radius: 20px;
            display: flex;
            align-items: center;
            padding: 17px 29px 17px 122px;
            position: relative;
            box-sizing: border-box;
        }

        .franchise_ctaicon_01 {
            position: absolute;
            left: 34px;
            top: 50%;
            transform: translateY(-50%);
            width: 63px;
            height: 63px;
            filter: none;
            margin: 0;
            display: block;
            object-fit: contain;
        }

        .franchise_ctabody_01 {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 7px;
            text-align: left;
        }

        .franchise_ctatext_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 21px;
            color: #563519;
            margin: 0;
            line-height: 1;
            font-weight: normal;
        }

        .franchise_ctasub_01 {
            font-family: 'Pretendard', sans-serif;
            font-size: 17px;
            color: #563519;
            line-height: 1.3;
            font-weight: 500;
            margin: 0;
            display: block;
        }

        .franchise_finalmsg_01 {
            text-align: center;
            margin: 50px auto 60px;
            padding: 0 40px;
            max-width: 1200px;
        }

        .franchise_finalmsg_01 p {
            font-family: 'SfHambakneun', sans-serif;
            color: #462c1e;
            margin: 0;
            font-weight: normal;
            line-height: 1.5;
        }

        .franchise_finalmsg_line1 {
            font-size: 26px;
            margin-bottom: 20px;
        }

        .franchise_finalmsg_line2 {
            font-size: 30.5px;
        }

        .franchise_blocknum_04,
        .franchise_blocktitle_04,
        .franchise_blockdesc_04,
        .franchise_costtable_01,
        .franchise_reviewlist_01,
        .franchise_cta_01,
        .franchise_finalmsg_01 {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .franchise_blocknum_04 {
            animation-delay: 0.05s;
        }

        .franchise_blocktitle_04 {
            animation-delay: 0.15s;
        }

        .franchise_blockdesc_04 {
            animation-delay: 0.25s;
        }

        .franchise_costtable_01 {
            animation-delay: 0.05s;
        }

        .franchise_reviewlist_01 {
            animation-delay: 0.15s;
        }

        .franchise_cta_01 {
            animation-delay: 0s;
        }

        .franchise_finalmsg_01 {
            animation-delay: 0s;
        }

        @media (max-width: 1000px) {
            [class^="franchise_steps_"] {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

            .franchise_step_02::after {
                content: '';
            }

            .franchise_doclayout_01 {
                grid-template-columns: 1fr;
            }

            .franchise_videogrid_01 {
                grid-template-columns: repeat(2, 1fr);
            }

            .franchise_stats_01 {
                flex-direction: column;
            }
        }

        @media (max-width: 640px) {
            .franchise_title_01 {
                font-size: 38px;
            }

            [class^="franchise_blocktitle_"] {
                font-size: 28px;
            }

            [class^="franchise_steps_"] {
                grid-template-columns: 1fr;
            }

            .franchise_videogrid_01 {
                grid-template-columns: 1fr;
            }

            [class^="franchise_step_"]::after {
                content: '' !important;
            }
        }

        /* =====================================================
       CONTACT (07)
    ===================================================== */
        .contact_section_01 {
            background-color: #e8ddc9;
            background-image: url('../img/contact_bg_01.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #221815;
            font-family: 'Gowun Batang', Georgia, serif;
            padding: 160px 40px 120px;
            position: relative;
            overflow: hidden;
        }

        .contact_inner_01 {
            max-width: 752px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact_header_01 {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact_badge_01 {
            margin-bottom: 30px;
            white-space: nowrap;
            gap: 60px;
        }

        .contact_title_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 47.3px;
            color: #40241a;
            font-weight: normal;
            margin: 0 0 22px;
            line-height: 1;
        }

        .contact_notice_01 {
            font-family: 'Pretendard', sans-serif;
            font-size: 20px;
            color: #3a0c0c;
            line-height: 1.4;
            font-weight: 700;
            margin: 0;
        }

        .contact_form_01 {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        [class^="contact_field_"] {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 0;
            border-bottom: 0;
        }

        [class^="contact_field_"]:first-child {
            padding-top: 0;
        }

        [class^="contact_label_"] {
            font-family: 'Pretendard', 'AppleSDGothicNeo', sans-serif;
            font-size: 16.28px;
            font-weight: 700;
            color: #221815;
            margin: 0;
            letter-spacing: 0;
        }

        [class^="contact_input_"] {
            width: 100%;
            height: 40.44px;
            background: #f4f4f4;
            border: 0;
            border-radius: 0;
            padding: 0 14px;
            font-family: 'Pretendard', sans-serif;
            font-size: 14px;
            color: #221815;
            outline: none;
            transition: box-shadow 0.2s, background 0.2s;
        }

        [class^="contact_input_"]:focus {
            background: #fff;
            box-shadow: inset 0 0 0 1px #573920;
        }

        [class^="contact_input_"]::placeholder {
            color: #bbb;
            font-size: 13px;
        }

        .contact_privacy_01 {
            padding: 6px 0 0;
            border-bottom: none;
        }

        .contact_radiowrap_01 {
            display: flex;
            gap: 28px;
            align-items: center;
        }

        [class^="contact_radio_"] {
            display: inline-flex;
            flex-direction: row-reverse;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            font-family: 'Pretendard', sans-serif;
            font-size: 13.61px;
            color: #221815;
            user-select: none;
            font-weight: 600;
        }

        [class^="contact_radio_"] input[type="radio"] {
            appearance: none;
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            border: 1.5px solid #573920;
            border-radius: 50%;
            background: #f4f4f4;
            cursor: pointer;
            position: relative;
            flex-shrink: 0;
            margin: 0;
        }

        [class^="contact_radio_"] input[type="radio"]:checked {
            background: #fff;
            border-color: #573920;
        }

        [class^="contact_radio_"] input[type="radio"]:checked::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #573920;
        }

        .contact_submitwrap_01 {
            margin-top: 28px;
            display: block;
            position: relative;
            text-align: center;
        }

        .contact_submit_01 {
            width: 492.54px;
            max-width: 100%;
            height: 52.56px;
            background: #5b3717;
            color: #fff;
            font-family: 'SfHambakneun', sans-serif;
            font-size: 20.5px;
            font-weight: normal;
            border: 0;
            border-radius: 6.86px;
            cursor: pointer;
            letter-spacing: 1px;
            display: inline-block;
            transition: background 0.2s, transform 0.15s;
        }

        .contact_submit_01:hover {
            background: #40241a;
            transform: translateY(-1px);
        }

        .contact_submit_01:active {
            transform: translateY(0);
        }

        [class^="contact_error_"] {
            display: none;
            font-size: 12px;
            color: #ca0403;
            margin-top: 4px;
            font-family: 'Pretendard', sans-serif;
        }

        [class^="contact_field_"].is-error [class^="contact_input_"] {
            box-shadow: inset 0 0 0 1.5px #ca0403;
            background: #fff7f7;
        }

        [class^="contact_field_"].is-error [class^="contact_error_"] {
            display: block;
        }

        .contact_success_01 {
            display: none;
            text-align: center;
            padding: 32px 24px;
            background: #fff;
            border: 1px solid #ab7b41;
            border-radius: 6px;
            margin-top: 24px;
        }

        .contact_successtext_01 {
            font-family: 'SfHambakneun', sans-serif;
            font-size: 22px;
            color: #40241a;
            font-weight: normal;
            line-height: 1.6;
            margin: 0;
        }

        /* contact 등장 효과 */
        .contact_badge_01,
        .contact_title_01,
        .contact_notice_01,
        .contact_form_01,
        .contact_submitwrap_01 {
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
        }

        .contact_badge_01 {
            animation-delay: 0.05s;
        }

        .contact_title_01 {
            animation-delay: 0.15s;
        }

        .contact_notice_01 {
            animation-delay: 0.25s;
        }

        .contact_form_01 {
            animation-delay: 0.4s;
        }

        .contact_submitwrap_01 {
            animation-delay: 0s;
        }

        @media (max-width: 640px) {
            .contact_title_01 {
                font-size: 34px;
            }

            .contact_section_01 {
                padding: 80px 24px;
            }
        }

        /* =====================================================
       FOOTER
    ===================================================== */
        .footer_section_01 {
            background-color: #40241a;
            padding: 0 40px;
            position: relative;
            color: #8a8a8a;
        }

        .footer_inner_01 {
            max-width: 1200px;
            margin: 0 auto;
            min-height: 113px;
            display: grid;
            grid-template-columns: auto auto;
            justify-content: center;
            column-gap: 20px;
            align-items: center;
        }

        .footer_logo_01 {
            width: 50px;
            height: auto;
            display: block;
            flex-shrink: 0;
        }

        .footer_main_01 {
            width: 907.55px;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .footer_phone_row_01 {
            display: flex;
            justify-content: flex-end;
            align-items: baseline;
            gap: 10px;
            padding: 12px 0 10px;
        }

        .footer_phone_label_01 {
            font-family: 'Pretendard', 'AppleSDGothicNeo', sans-serif;
            font-size: 17.38px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
        }

        .footer_phone_number_01 {
            font-family: 'Pretendard', 'AppleSDGothicNeo', sans-serif;
            font-size: 20.88px;
            font-weight: 800;
            color: #ea1e28;
            text-decoration: none;
            line-height: 1;
            transition: opacity 0.2s;
        }

        .footer_phone_number_01:hover {
            opacity: 0.85;
        }

        .footer_divider_01 {
            display: block;
            border: 0;
            height: 1px;
            background-color: #8a8a8a;
            margin: 0;
            width: 100%;
        }

        .footer_info_01 {
            text-align: center;
            padding: 10px 0 12px;
            font-family: 'Pretendard', 'AppleSDGothicNeo', sans-serif;
            font-size: 9.57px;
            color: #8a8a8a;
            line-height: 1.6;
            font-weight: 700;
        }

        .footer_info_01 p {
            margin: 0;
        }

        .footer_info_01 .sep {
            display: inline-block;
            margin: 0 8px;
        }

        @media (max-width: 1000px) {
            .footer_main_01 {
                width: auto;
                max-width: 100%;
                flex: 1;
            }
        }

        @media (max-width: 900px) {
            .footer_inner_01 {
                grid-template-columns: 1fr;
                justify-items: center;
                row-gap: 8px;
                padding: 14px 0;
            }

            .footer_main_01 {
                width: 100%;
            }

            .footer_phone_row_01 {
                justify-content: center;
                padding: 4px 0;
            }

            .footer_info_01 {
                font-size: 11px;
            }
        }

        /* =====================================================
           RESPONSIVE: Mobile (≤ 1399px)
           - Background preserved; inner content ≈ 340px
        ===================================================== */
        @media (max-width: 1399.98px) {

            /* 줄바꿈 유틸리티 토글 */
            br._mo {
                display: inline;
            }

            br._pc {
                display: none;
            }

            /* ===== Header ===== */
            .header_section_01 {
                height: 60px;
                padding: 0 16px;
            }

            .header_logo_01,
            .header_logo_02 {
                width: 100px;
            }

            .header_burger_01 {
                display: block;
            }

            .header_links_01 {
                display: none;
            }

            /* ===== Common inner containers ===== */
            .brand_inner_01,
            .experience_inner_01,
            .signature_inner_01,
            .menu_inner_01,
            .philosophy_inner_01,
            .operation_inner_01,
            .franchise_inner_01,
            .contact_inner_01 {
                width: 340px;
                max-width: 100%;
                margin: 0 auto;
                padding-left: 0;
                padding-right: 0;
            }

            /* ===== Section paddings ===== */
            .hero_section_01 {
                padding: 0;
            }

            .hero_bg_01 {
                width: 100%;
                height: 100%;
                opacity: 1;
                object-position: center;
            }

            .hero_content_01 {
                position: absolute;
                top: 50%;
                left: 8%;
                margin: 0;
                padding: 0;
                max-width: 100%;
                text-align: left;
            }

            .hero_title_01 {
                font-size: 14px;
                line-height: 1.35;
                margin-bottom: 10px;
                letter-spacing: -0.5px;
                text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5), 0 1px 2px rgba(0, 0, 0, 0.3);
            }

            .hero_desc_01 {
                font-size: 10px;
                line-height: 1.6;
                margin-bottom: 10px;
            }

            .hero_cta_01 img {
                max-width: 100px;
            }

            .brand_section_01 {
                padding: 80px 16px 20px;
            }

            .experience_section_01 {
                padding: 40px 16px 56px;
            }

            .experience_frame_01 {
                padding-bottom: 2.5%;
                filter: none;
            }

            .signature_section_01 {
                padding: 80px 16px;
                background-image: url(../img/signature_bg_02.png);
            }

            .menu_section_01 {
                padding: 80px 0px;
                background-size: cover;
                background-position: center;
            }

            .franchise_section_01 {
                background-image: url('../img/franchise_section_bg_mo.png');
                background-size: cover;
                background-position: top center;
            }

            .philosophy_section_01 {
                padding: 80px 0px;
            }

            .operation_inner_01 {
                padding: 80px 0 56px;
            }

            .franchise_section_01 .franchise_header_01 {
                padding: 80px 16px 0px;
            }

            .franchise_inner_01 {
                padding: 0;
            }

            .contact_section_01 {
                padding: 60px 10px;
            }

            .footer_section_01 {
                padding: 18px 16px;
            }

            /* ===== Common typography downsizing ===== */
            .brand_badge_01,
            .experience_badge_01,
            .philosophy_badge_01,
            .operation_badge_01,
            .poster_badge_01,
            .franchise_badge_01,
            .contact_badge_01,
            .menu_badge_01,
            .signature_subtitle_01 {
                font-size: 12px;
                letter-spacing: 1px;
                gap: 5px;
            }

            [class^="brand_badge_"]::before,
            [class^="experience_badge_"]::before,
            [class^="philosophy_badge_"]::before,
            [class^="operation_badge_"]::before,
            [class^="poster_badge_"]::before,
            [class^="franchise_badge_"]::before,
            [class^="contact_badge_"]::before,
            [class^="brand_badge_"]::after,
            [class^="experience_badge_"]::after,
            [class^="philosophy_badge_"]::after,
            [class^="operation_badge_"]::after,
            [class^="poster_badge_"]::after,
            [class^="franchise_badge_"]::after,
            [class^="contact_badge_"]::after {
                width: 80px;
                height: 16px;
            }

            .brand_title_01,
            .experience_title_01,
            .signature_title_01,
            .menu_title_01,
            .philosophy_title_01,
            .operation_title_01,
            .poster_title_01,
            .franchise_title_01,
            .contact_title_01 {
                font-size: 22px !important;
                margin-bottom: 14px;
                line-height: 1.35;
            }

            .philosophy_section_01 .section-title {
                font-size: 22px;
            }

            .brand_desc_01,
            .brand_desc_02,
            .brand_desc_03,
            .experience_desc_01,
            .signature_desc_01,
            .menu_intro_01,
            .operation_desc_01,
            .poster_desc_01,
            .franchise_desc_01,
            .contact_notice_01 {
                font-size: 13px;
                line-height: 1.5;
                margin-bottom: 10px;
            }

            .signature_desc_01 {
                margin-bottom: 30px;
            }

            .philosophy_desc_01 {
                font-size: 11px !important;
                line-height: 1.7;
                margin-bottom: 14px;
            }

            .menu_intro_01 {
                margin-bottom: 40px;
            }

            /* ===== Brand ===== */
            .brand_content_01 {
                flex-direction: column !important;
                gap: 32px;
                align-items: center;
            }

            .brand_text_01 {
                gap: 28px;
                width: 100%;
            }

            [class^="brand_subtitle_"] {
                font-size: 16px;
            }

            [class^="brand_line_"] {
                width: 28px;
                height: 3px;
                margin-bottom: 10px;
            }

            .brand_visual_01 {
                display: none;
            }

            /* ===== Experience (데스크톱 비율 유지, 폰트만 축소) ===== */
            .experience_title_01 {
                font-size: 22px !important;
                margin-bottom: 14px;
                letter-spacing: -0.5px;
            }

            .experience_desc_01 {
                font-size: 12px !important;
                line-height: 1.6;
                margin-bottom: 24px;
            }

            [class^="experience_highlight_"] {
                font-size: 16px;
            }

            .experience_tabs_01 {
                position: absolute;
                top: -6px;
                /* left: 50%; */
                transform: translateX(-50%);
                margin: 0;
                width: 140px;
                max-width: none;
                z-index: 12;
            }

            [class^="experience_tab_"] {
                font-size: 0;
                height: 100%;
                padding: 0;
                border-radius: 0;
            }

            [class^="experience_ingredients_"] {
                display: none !important;
            }

            [class^="experience_textbox_"] {
                min-width: 0;
                font-size: 8px;
                width: 42%;
                padding: 7px 8px;
                line-height: 1.55;
                border-radius: 6px;
            }

            .experience_footer_01 {
                font-size: 12px;
                z-index: 10;
            }

            /* ===== Signature ===== */
            .signature_inner_01 {
                padding-top: 70px !important;
                padding-bottom: 70px !important;
            }

            .signature_subtitle_01 {
                font-size: 14px;
            }

            .signature_grid_01 {
                grid-template-columns: 1fr !important;
                gap: 30px;
            }

            [class^="signature_name_"] {
                font-size: 18px;
                margin-top: 10px;
            }

            [class^="signature_frame_"] {
                padding: 12px;
            }

            [class^="signature_frame_"]:hover {
                transform: none;
            }

            [class^="signature_ornament_"] {
                width: 150px;
                height: 60px;
            }

            /* ===== Menu ===== */
            .menu_inner_01 {
                max-width: 100%;
                width: 100%;
            }

            [class^="menu_cat_"] {
                margin: 0 auto 56px;
                padding: 60px 16px 36px;
                background-size: 100% 100%;
                max-width: 360px;
            }

            [class^="menu_cathead_"] {
                width: 220px;
                height: 56px;
                top: -28px;
            }

            [class^="menu_catname_"] {
                font-size: 20px;
            }

            .menu_catname_03 {
                font-size: 16px;
            }

            [class^="menu_catsub_"] {
                font-size: 11px;
                margin-bottom: 24px;
            }

            [class^="menu_grid_"] {
                padding: 6px 0;
            }

            [class^="menu_card_"] {
                width: 240px;
            }

            [class^="menu_name_"] {
                font-size: 18px;
            }

            [class^="menu_text_"] {
                font-size: 12px;
            }

            /* ===== Philosophy ===== */
            .philosophy_inner_01 {
                overflow: hidden;
                width: auto;
            }

            .philosophy_grid_01 {
                width: 460px;
                min-width: 460px;
                margin-left: calc(50% - 230px);
                margin-right: calc(50% - 230px);
                padding: 80px 40px;
                gap: 0px;
                background-size: 100% 100%;
            }

            [class^="philosophy_block_"] {
                gap: 7px;
            }

            [class^="philosophy_subtitle_"],
            [class^="philosophy_block_"] h3 {
                font-size: 18px !important;
                margin-bottom: 8px;
            }

            [class^="philosophy_item_"],
            .philosophy_item_02 {
                flex-direction: column !important;
                gap: 12px;
            }

            [class^="philosophy_imgbox_"] {
                width: 272px;
            }

            [class^="philosophy_imgbox_"] img {
                width: 80%;
                margin: 0 auto;
            }

            [class^="philosophy_bullets_"] {
                display: flex;
                gap: 10px;
                font-size: 11px;
            }

            [class^="philosophy_bullets_"] li {
                margin-bottom: 8px;
            }

            [class^="philosophy_text_"] {
                font-size: 10px;
                line-height: 1.55;
            }

            [class^="philosophy_block_"] .item-desc {
                font-size: 16px;
            }

            [class^="philosophy_divider_"] {
                max-width: 296px;
                margin: 0px auto 12px;
            }

            .divider {
                max-width: 296px;
            }

            /* ===== Operation ===== */
            .operation_sub_01 {
                font-size: 14px;
                margin-top: 15px;
                margin-bottom: 10px;
            }

            .operation_grid_01 {
                grid-template-columns: 1fr !important;
                gap: 16px;
                margin-top: 32px;
                margin-bottom: 32px;
            }

            [class^="operation_card_"] {
                width: 250px;
                margin: auto;
                padding: 36px 24px 24px;
                min-height: 240px;
                aspect-ratio: 339 / 490;
            }

            [class^="operation_iconbox_"] {
                width: 56px;
                height: 56px;
                margin-bottom: 14px;
            }

            [class^="operation_cardtitle_"] {
                font-size: 22px;
            }

            [class^="operation_carddesc_"] {
                font-size: 14px;
                line-height: 1.55;
            }

            .operation_strip_01 {
                max-width: 160px;
            }

            .operation_strip_02 {
                max-width: 280px;
                margin: 5px auto;
            }

            /* ===== Poster ===== */
            .poster_inner_01 {
                padding: 80px 0 56px;
            }

            .poster_carousel_wrap_01 {
                padding: 40px 20px 36px;
                margin: 0 -16px;
            }

            .poster_img_01 {
                border-radius: 6px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            }

            /* ===== Franchise (header) ===== */
            .franchise_badge_01 {
                margin-bottom: 18px;
                font-size: 18px;
            }

            .franchise_title_01 {
                font-size: 32px !important;
                margin-bottom: 24px;
            }

            .franchise_desc_01 {
                font-size: 12px;
                line-height: 1.7;
            }

            /* ===== Franchise blocks (common) — 모서리 reverse arc ===== */
            .franchise_block_01,
            .franchise_block_02,
            .franchise_block_03,
            .franchise_block_04 {
                width: auto !important;
                max-width: 340px !important;
                aspect-ratio: auto !important;
                height: auto !important;
                padding: 70px 14px 40px !important;
                margin: 50px auto !important;
                background-image: none !important;
                background-color: transparent;
                border: 0;
                border-radius: 0;
                box-shadow: none;
                position: relative;
                zoom: 1;
            }

            /* block_04 모바일: 클립보드 이미지를 ::before 안으로 옮겨 마스크에 가려지지 않게 */
            .franchise_block_04 {
                background-image: none !important;
            }

            .franchise_block_04::before {
                background-image:
                    radial-gradient(circle 18px at 0 0, transparent 16px, rgba(173, 138, 102, 0.6) 16px 17px, transparent 17px),
                    radial-gradient(circle 18px at 100% 0, transparent 16px, rgba(173, 138, 102, 0.6) 16px 17px, transparent 17px),
                    radial-gradient(circle 18px at 0 100%, transparent 16px, rgba(173, 138, 102, 0.6) 16px 17px, transparent 17px),
                    radial-gradient(circle 18px at 100% 100%, transparent 16px, rgba(173, 138, 102, 0.6) 16px 17px, transparent 17px),
                    url('../img/operation_card_bg_new.png');
                background-position: top left, top right, bottom left, bottom right, right bottom;
                background-size: 50.01% 50.01%, 50.01% 50.01%, 50.01% 50.01%, 50.01% 50.01%, 80% auto;
                background-repeat: no-repeat;
            }

            .franchise_block_01::before,
            .franchise_block_02::before,
            .franchise_block_03::before,
            .franchise_block_04::before {
                content: '';
                position: absolute;
                inset: 0;
                background-color: rgba(253, 245, 230, 0.4);
                background-image:
                    radial-gradient(circle 18px at 0 0, transparent 16px, rgba(173, 138, 102, 0.6) 16px 17px, transparent 17px),
                    radial-gradient(circle 18px at 100% 0, transparent 16px, rgba(173, 138, 102, 0.6) 16px 17px, transparent 17px),
                    radial-gradient(circle 18px at 0 100%, transparent 16px, rgba(173, 138, 102, 0.6) 16px 17px, transparent 17px),
                    radial-gradient(circle 18px at 100% 100%, transparent 16px, rgba(173, 138, 102, 0.6) 16px 17px, transparent 17px);
                background-position: top left, top right, bottom left, bottom right;
                background-size: 50.01% 50.01%;
                background-repeat: no-repeat;
                border: 1.5px solid rgba(173, 138, 102, 0.6);
                pointer-events: none;
                z-index: 0;
                -webkit-mask:
                    radial-gradient(circle 16px at 0 0, transparent 16px, #000 16.5px) top left / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 16px at 100% 0, transparent 16px, #000 16.5px) top right / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 16px at 0 100%, transparent 16px, #000 16.5px) bottom left / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 16px at 100% 100%, transparent 16px, #000 16.5px) bottom right / 50.01% 50.01% no-repeat;
                mask:
                    radial-gradient(circle 16px at 0 0, transparent 16px, #000 16.5px) top left / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 16px at 100% 0, transparent 16px, #000 16.5px) top right / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 16px at 0 100%, transparent 16px, #000 16.5px) bottom left / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 16px at 100% 100%, transparent 16px, #000 16.5px) bottom right / 50.01% 50.01% no-repeat;
            }

            .franchise_block_01::after,
            .franchise_block_02::after,
            .franchise_block_03::after,
            .franchise_block_04::after {
                content: '';
                position: absolute;
                inset: 3px;
                background-color: transparent;
                background-image:
                    radial-gradient(circle 15px at 0 0, transparent 13px, rgba(173, 138, 102, 0.6) 13px 14px, transparent 14px),
                    radial-gradient(circle 15px at 100% 0, transparent 13px, rgba(173, 138, 102, 0.6) 13px 14px, transparent 14px),
                    radial-gradient(circle 15px at 0 100%, transparent 13px, rgba(173, 138, 102, 0.6) 13px 14px, transparent 14px),
                    radial-gradient(circle 15px at 100% 100%, transparent 13px, rgba(173, 138, 102, 0.6) 13px 14px, transparent 14px);
                background-position: top left, top right, bottom left, bottom right;
                background-size: 50.01% 50.01%;
                background-repeat: no-repeat;
                border: 1.5px solid rgba(173, 138, 102, 0.6);
                pointer-events: none;
                z-index: 0;
                -webkit-mask:
                    radial-gradient(circle 13px at 0 0, transparent 13px, #000 13.5px) top left / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 13px at 100% 0, transparent 13px, #000 13.5px) top right / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 13px at 0 100%, transparent 13px, #000 13.5px) bottom left / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 13px at 100% 100%, transparent 13px, #000 13.5px) bottom right / 50.01% 50.01% no-repeat;
                mask:
                    radial-gradient(circle 13px at 0 0, transparent 13px, #000 13.5px) top left / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 13px at 100% 0, transparent 13px, #000 13.5px) top right / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 13px at 0 100%, transparent 13px, #000 13.5px) bottom left / 50.01% 50.01% no-repeat,
                    radial-gradient(circle 13px at 100% 100%, transparent 13px, #000 13.5px) bottom right / 50.01% 50.01% no-repeat;
            }

            .franchise_block_01>*,
            .franchise_block_02>*,
            .franchise_block_03>*,
            .franchise_block_04>* {
                position: relative;
                z-index: 1;
            }

            [class^="franchise_blocknum_"] {
                width: 132px;
                height: 74px;
                font-size: 22px;
                top: -106px;
                left: calc(50% - 66px) !important;
                padding-top: 8px;
            }

            [class^="franchise_blocktitle_"] {
                font-size: 20px !important;
                margin-bottom: 12px !important;
            }

            [class^="franchise_blockdesc_"] {
                font-size: 12px !important;
                line-height: 1.6;
            }

            /* Block_01 steps */
            [class^="franchise_steps_"] {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr);
                gap: 8px !important;
                justify-content: stretch !important;
            }

            [class^="franchise_step_"] {
                width: 100% !important;
                height: auto !important;
                aspect-ratio: 1 / 1;
                padding: 14px 8px;
            }

            [class^="franchise_stepnum_"] {
                width: 20px;
                height: 20px;
                font-size: 13px;
            }

            [class^="franchise_stepicon_"] {
                width: 56px;
                height: 56px;
                margin: 12px auto 8px;
            }

            [class^="franchise_steptitle_"] {
                font-size: 12px;
            }

            [class^="franchise_stepdesc_"] {
                font-size: 10px;
            }

            .franchise_steps_02 {
                margin-top: 12px !important;
                margin-bottom: 30px !important;
            }

            [class^="franchise_blockfoot_"] {
                flex-wrap: wrap;
                gap: 8px;
                margin-top: 16px;
            }

            [class^="franchise_blockfoot_"] .rod_left,
            [class^="franchise_blockfoot_"] .rod_right {
                width: 40px;
            }

            [class^="franchise_blockfoot_"] .text {
                font-size: 11px;
                line-height: 1.5;
            }

            /* Block_02 stats + chart */
            .franchise_revenue_01 {
                flex-direction: column !important;
                height: auto !important;
                gap: 12px;
                padding: 16px 14px;
                width: 100%;
                max-width: 100%;
            }

            .franchise_revenue_01::before,
            .franchise_revenue_01::after {
                display: none;
            }

            [class^="franchise_stat_"] {
                flex: none !important;
                width: 100%;
                padding: 0 !important;
                gap: 14px;
                justify-content: flex-start;
            }

            [class^="franchise_stat_"] [class^="franchise_statbody_"] {
                flex: 1;
            }

            [class^="franchise_staticon_"] {
                width: 56px;
                height: 56px;
            }

            [class^="franchise_statlabel_"] {
                font-size: 14px;
            }

            [class^="franchise_statvalue_"] {
                font-size: 22px;
            }

            [class^="franchise_statvalue_"] .unit {
                font-size: 13px;
            }

            .franchise_chartrow_01 {
                flex-direction: column !important;
                gap: 32px;
                width: 100%;
                max-width: 100%;
                margin-top: 36px !important;
            }

            .franchise_calendar_box_01,
            .franchise_chart_box_01 {
                flex: none !important;
                width: 100% !important;
                height: auto !important;
                padding: 26px 12px 14px !important;
            }

            .franchise_calendar_box_01 {
                height: 220px !important;
            }

            .franchise_chart_box_01 {
                padding: 30px 12px 14px !important;
            }

            .franchise_chart_legend_01 {
                top: 16px;
            }

            .franchise_calendar_amounts_01>span {
                font-size: 7px;
            }

            [class^="franchise_calendar_grid_"] {
                grid-template-rows: 18px repeat(var(--cal-rows, 5), 1fr);
            }

            [class^="franchise_calendar_grid_"] .head {
                font-size: 9px;
            }

            [class^="franchise_calendar_grid_"] .cell {
                padding: 2px 3px;
            }

            [class^="franchise_calendar_grid_"] .cell .day {
                font-size: 11px;
            }

            [class^="franchise_calendar_grid_"] .cell .amt {
                font-size: 6px;
            }

            .franchise_period_label_01 {
                width: 180px;
                height: 32px;
                font-size: 13px;
                border-radius: 8px;
                margin: 28px auto 18px;
            }

            .franchise_period_divider_01 {
                margin: 36px auto 0;
            }

            .franchise_calendar_title_01,
            .franchise_chart_title_01 {
                width: 140px;
                height: 28px;
                font-size: 12px;
                top: -14px;
                left: calc(50% - 70px);
            }

            .franchise_chart_plot_01 {
                height: 160px;
            }

            .franchise_chart_bar_01 {
                max-width: 20px;
            }

            .franchise_chart_bars_01 {
                padding: 0 4px;
                gap: 3px;
            }

            .franchise_chart_bar_01 .tip {
                font-size: 7.5px;
                padding: 2px 4px;
                border-radius: 3px;
                bottom: calc(100% + 4px);
                font-weight: 600;
            }

            /* 최고매출 말풍선 겹침 방지 — JS가 동적으로 .is-raised 부여 */
            .franchise_chart_bar_01.is-raised .tip {
                bottom: calc(100% + 28px);
            }

            .franchise_chart_note_01 {
                width: 100%;
                height: auto;
                padding: 10px 12px 10px 50px;
            }

            .franchise_chart_noteicon_01 {
                left: 10px;
                width: 28px;
            }

            .franchise_chart_notetext_01 {
                font-size: 11px;
            }

            /* Block_03 video */
            .franchise_videolayout_01 {
                flex-direction: column !important;
                gap: 36px;
                align-items: center !important;
                margin-top: 40px;
            }

            .franchise_videocol_01,
            .franchise_videocol_02,
            .franchise_videocol_03 {
                flex: none !important;
                width: 100% !important;
                height: auto !important;
            }

            [class^="franchise_videoheader_"] {
                width: 100%;
                font-size: 16px;
                margin-bottom: 16px;
            }

            .franchise_videomain_01 {
                width: 100% !important;
                height: auto !important;
                aspect-ratio: 314 / 176;
            }

            .franchise_videoinfogrid_01 {
                margin: 20px 0 0;
                gap: 8px;
            }

            [class^="franchise_videoinfoitem_"]:not(:last-child)::after {
                right: -4.5px;
            }

            [class^="franchise_videoinfoicon_"] {
                width: 24px;
                height: 24px;
            }

            [class^="franchise_videoinfotitle_"] {
                font-size: 11px;
            }

            [class^="franchise_videoinfodesc_"] {
                font-size: 9px;
            }

            .franchise_phone_swiper_01 {
                max-width: 100%;
            }

            .franchise_phone_01 {
                width: 180px !important;
            }

            .franchise_videoreels_01 {
                grid-template-columns: repeat(3, 1fr) !important;
                grid-template-rows: auto !important;
                gap: 6px !important;
            }

            [class^="franchise_videoreel_"] {
                width: 100% !important;
                height: auto !important;
                aspect-ratio: 96 / 160;
            }

            /* Block_04 docs */
            .franchise_doclayout_01 {
                display: flex !important;
                flex-direction: column;
                gap: 32px;
                margin-top: 30px !important;
            }

            .franchise_costtable_01,
            .franchise_reviewlist_01 {
                width: 100%;
            }

            .franchise_costtable_titlerow_01 .rod_left,
            .franchise_costtable_titlerow_01 .rod_right,
            .franchise_reviewtitle_row_01 .rod_left,
            .franchise_reviewtitle_row_01 .rod_right {
                width: 60px;
            }

            .franchise_costtable_title_01 {
                width: 160px;
                height: 22px;
                font-size: 12px;
            }

            .franchise_costtable_unit_00 {
                font-size: 10px;
            }

            .franchise_costtable_unit_01 {
                font-size: 10px;
            }

            .franchise_table_01 thead th {
                font-size: 12px;
                padding: 6px 8px;
            }

            .franchise_table_01 tbody td {
                font-size: 11px;
                padding: 9px 6px;
            }

            .franchise_table_overlaytext_01 {
                font-size: 18px;
            }

            .franchise_table_01 tfoot td {
                font-size: 12px;
                padding: 9px 8px;
            }

            .franchise_costtable_note_01 {
                font-size: 10px;
            }

            .franchise_reviewtitle_01 {
                font-size: 13px;
            }

            [class^="franchise_reviewcard_"] {
                padding: 12px 12px 12px 64px;
                background-size: 32px auto;
                background-position: 18px center;
                min-height: 60px;
                border: 2px solid #ab7b41;
            }

            [class^="franchise_reviewcardtitle_"] {
                font-size: 14px;
            }

            [class^="franchise_reviewcarddesc_"] {
                font-size: 10px;
            }

            .franchise_cta_01 {
                margin: 30px auto 0 !important;
                padding: 12px 56px 12px 12px !important;
                min-height: auto !important;
            }

            .franchise_ctaicon_01 {
                left: auto;
                right: 12px;
                width: 24px;
            }

            .franchise_ctatext_01 {
                font-size: 11px;
            }

            .franchise_ctasub_01 {
                font-size: 11px;
            }

            .franchise_finalmsg_01 {
                padding: 0 16px;
                margin: 36px auto 50px;
            }

            .franchise_finalmsg_line1 {
                font-size: 11px;
                margin-bottom: 8px;
            }

            .franchise_finalmsg_line2 {
                font-size: 13px;
            }

            /* ===== Contact ===== */
            .contact_inner_01 {
                max-width: 340px;
            }

            .contact_title_01 {
                font-size: 30px !important;
                margin-bottom: 14px;
            }

            .contact_notice_01 {
                font-size: 12px;
            }

            .contact_form_01 {
                gap: 16px;
            }

            [class^="contact_label_"] {
                font-size: 14px;
            }

            [class^="contact_input_"] {
                height: 38px;
                font-size: 13px;
            }

            [class^="contact_radio_"] {
                font-size: 13px;
            }

            .contact_submit_01 {
                width: 100% !important;
                max-width: 100%;
                height: 48px;
                font-size: 16px;
            }

            /* ===== Footer ===== */
            .footer_inner_01 {
                grid-template-columns: 1fr !important;
                row-gap: 10px;
                padding: 14px 0;
                column-gap: 0;
            }

            .footer_logo_01 {
                width: 44px;
            }

            .footer_main_01 {
                width: 100% !important;
            }

            .footer_phone_row_01 {
                justify-content: center !important;
                padding: 8px 0 6px;
                gap: 8px;
            }

            .footer_phone_label_01 {
                font-size: 14px;
            }

            .footer_phone_number_01 {
                font-size: 16px;
            }

            .footer_info_01 {
                font-size: 9px;
                padding: 8px 0;
                line-height: 1.5;
            }

            .footer_info_01 .sep {
                margin: 0 4px;
            }
        }