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

        :root {
            --black: #1a1a1a;
            --white: #ffffff;
            --cream: #faf7f2;
            --gray: #6b7280;
            --line: #e8e3dc;
            --accent: #8b3a2a;
            --accent-light: #a84332;
            --gold: #b8956a;
            --gold-light: #d4b48c;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.09);
            --font-sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            --font-serif: "Playfair Display", Georgia, serif;
            --radius: 12px;
            --transition: all 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            background: #ffffff;
            color: #1a1a1a;
            font-family: var(--font-sans);
            -webkit-font-smoothing: antialiased;
            line-height: 1.65;
            position: relative;
            overflow-x: hidden;
            width: 100%;
        }

        /* ===== FULLSCREEN BACKGROUND (Clean mode, không dùng watermark mờ) ===== */
        body::before {
            display: none;
        }

        .wrapper {
            position: relative;
            z-index: 1;
            overflow-x: hidden;
            width: 100%;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            display: block;
            width: 100%;
            object-fit: cover;
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--cream);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 20px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-light);
        }

        /* ============================================================
    UTILITY
    ============================================================ */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .section-label {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gray);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 20px;
        }

        .section-label::before {
            content: "";
            width: 30px;
            height: 1.5px;
            background: var(--accent);
        }

        .section-title {
            font-family: var(--font-serif);
            font-size: clamp(32px, 4.4vw, 54px);
            font-weight: 500;
            letter-spacing: -1.8px;
            line-height: 1.08;
        }

        .section-title em {
            color: var(--accent);
            font-style: italic;
        }

        .section-sub {
            font-size: 14px;
            color: var(--gray);
            max-width: 400px;
            line-height: 1.7;
        }

        /* ============================================================
    BUTTONS
    ============================================================ */
        .btn-primary {
            display: inline-block;
            background: var(--black);
            color: var(--white);
            padding: 16px 36px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1.5px;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            font-family: var(--font-sans);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 4px 16px rgba(26, 17, 14, 0.15);
        }

        .btn-primary::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--accent), var(--accent-light));
            opacity: 0;
            transition: var(--transition);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(139, 58, 42, 0.3);
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        /* ============================================================
    NAV — REFINED ARTISAN / HUMAN FEEL
    ============================================================ */
        header {
            position: sticky;
            top: 0;
            z-index: 50;
            background: rgba(248, 243, 236, 0.94);
            backdrop-filter: blur(18px) saturate(140%);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            border-bottom: 1px solid rgba(139, 58, 42, 0.10);
            transition: background 0.35s ease, box-shadow 0.35s ease;
        }

        /* ===== THE 350F STYLE HEADER ===== */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: #ffffff;
            border-bottom: 1px solid #e8e3dc;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .the350f-nav {
            width: min(1240px, calc(100% - 48px));
            height: 80px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 24px;
        }

        .nav-left {
            justify-self: start;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-left a {
            color: #1a1a1a;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            letter-spacing: 0.2px;
            transition: color 0.2s ease;
            position: relative;
            padding: 6px 0;
        }

        .nav-left a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.25s ease;
        }

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

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

        .brand-center {
            justify-self: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #1a1a1a;
            font-family: var(--font-serif);
            font-size: 28px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.8px;
        }

        .brand-center em {
            color: var(--accent);
            font-style: italic;
        }

        .brand-center .estd {
            font-family: var(--font-sans);
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 2.5px;
            color: #9ca3af;
            text-transform: uppercase;
            margin-top: 4px;
        }

        .nav-right {
            justify-self: end;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .nav-link-sub {
            color: #4b5563;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-link-sub:hover {
            color: var(--accent);
        }

        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: 30px;
            background: var(--accent);
            color: #ffffff;
            font-size: 13.5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s ease;
            box-shadow: 0 4px 14px rgba(139, 58, 42, 0.25);
        }

        .nav-cta:hover {
            background: #a84332;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(139, 58, 42, 0.35);
        }

        .nav-menu-toggle {
            display: none;
        }

        @media (max-width: 900px) {
            nav {
                width: min(100% - 32px, 720px);
                height: 72px;
                grid-template-columns: 1fr auto;
            }

            .brand {
                font-size: 22px;
            }

            .brand .estd {
                display: none;
            }

            .nav-links {
                position: absolute;
                top: calc(100% + 10px);
                left: 16px;
                right: 16px;
                display: none;
                flex-direction: column;
                align-items: stretch;
                gap: 3px;
                padding: 8px;
                border-radius: 14px;
                background: rgba(248, 243, 236, 0.98);
                border: 1px solid rgba(139, 58, 42, 0.12);
                box-shadow: 0 18px 45px rgba(26, 17, 14, 0.12);
            }

            header.menu-open .nav-links {
                display: flex;
            }

            .nav-links a {
                justify-content: center;
                min-height: 44px;
                border-radius: 8px;
            }

            .nav-cta {
                justify-self: end;
                min-width: 112px;
                height: 40px;
                padding: 0 16px;
            }

            .nav-menu-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 42px;
                height: 42px;
                margin-left: 8px;
                border: 1px solid rgba(139, 58, 42, 0.15);
                border-radius: 50%;
                background: transparent;
                color: var(--black);
                cursor: pointer;
            }

            .nav-menu-toggle span,
            .nav-menu-toggle span::before,
            .nav-menu-toggle span::after {
                display: block;
                width: 16px;
                height: 1.5px;
                background: currentColor;
                transition: transform 0.25s ease;
            }

            .nav-menu-toggle span {
                position: relative;
            }

            .nav-menu-toggle span::before,
            .nav-menu-toggle span::after {
                content: "";
                position: absolute;
                left: 0;
            }

            .nav-menu-toggle span::before {
                top: -5px;
            }

            .nav-menu-toggle span::after {
                top: 5px;
            }

            header.menu-open .nav-menu-toggle span {
                background: transparent;
            }

            header.menu-open .nav-menu-toggle span::before {
                transform: translateY(5px) rotate(45deg);
            }

            header.menu-open .nav-menu-toggle span::after {
                transform: translateY(-5px) rotate(-45deg);
            }
        }

        @media (max-width: 520px) {
            nav {
                width: calc(100% - 24px);
            }

            .brand {
                font-size: 20px;
            }

            .nav-cta {
                min-width: 104px;
                height: 38px;
                font-size: 10px;
            }

            .nav-cta::after {
                display: none;
            }

            .nav-menu-toggle {
                width: 38px;
                height: 38px;
            }
        }

        /* ============================================================
    HERO
    ============================================================ */

        .hero {
            padding: 80px 30px 60px;
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 60px;
            align-items: end;
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: "";
            position: absolute;
            top: -20%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(184, 149, 106, 0.06) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .hero h1 {
            font-family: var(--font-serif);
            font-size: clamp(44px, 6.2vw, 88px);
            font-weight: 500;
            line-height: 1.02;
            letter-spacing: -2.5px;
            max-width: 800px;
            position: relative;
            z-index: 1;
        }

        .hero h1 em {
            color: var(--accent);
            font-style: italic;
            font-weight: 500;
        }

        .hero-right {
            position: relative;
            z-index: 1;
            padding-bottom: 6px;
        }

        .promo-tag {
            display: inline-block;
            background: rgba(139, 58, 42, 0.08);
            border: 1px solid var(--accent);
            color: var(--accent);
            font-size: 10px;
            letter-spacing: 2.5px;
            padding: 6px 16px;
            border-radius: 40px;
            font-weight: 600;
            margin-bottom: 22px;
            transition: var(--transition);
        }

        .promo-tag:hover {
            background: var(--accent);
            color: var(--white);
        }

        .hero-right p {
            max-width: 360px;
            font-size: 15px;
            line-height: 1.8;
            color: #5a4f44;
            margin-bottom: 30px;
        }

        /* ============================================================
    HERO IMAGE
    ============================================================ */
        .hero-image-wrap {
            max-width: 100%;
            margin: 0 auto 20px;
            padding: 0;
            border-radius: 0;
            overflow: hidden;
            position: relative;
        }

        .hero-image-wrap .img-inner {
            height: 640px;
            border-radius: 0;
            overflow: hidden;
            position: relative;
        }

        .hero-image-wrap .img-inner img {
            height: 100%;
            transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
            will-change: transform;
        }

        .hero-image-wrap:hover .img-inner img {
            transform: scale(1.04);
        }

        .hero-image-wrap .img-inner::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 17, 14, 0.10) 0%, transparent 50%);
            pointer-events: none;
        }

        .image-caption {
            max-width: 1280px;
            margin: 4px auto 0;
            padding: 16px 30px 0;
            display: flex;
            justify-content: space-between;
            font-size: 10px;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            border-top: 1px solid var(--line);
        }

        /* ============================================================
    INTRO — STORY / HIGH READABILITY
    ============================================================ */
        .intro {
            position: relative;
            max-width: none;
            margin: 0;
            padding: 112px max(30px, calc((100vw - 1220px) / 2)) 118px;
            display: grid;
            grid-template-columns: minmax(180px, .32fr) minmax(0, 1fr);
            gap: clamp(48px, 7vw, 110px);
            background:
                radial-gradient(circle at 82% 18%, rgba(139, 58, 42, .07), transparent 260px),
                #eee3d4;
            border-top: 1px solid rgba(91, 62, 45, .10);
            border-bottom: 1px solid rgba(91, 62, 45, .10);
            overflow: hidden;
        }

        .intro::before {
            content: "";
            position: absolute;
            width: 420px;
            height: 420px;
            right: -190px;
            bottom: -270px;
            border: 1px solid rgba(139, 58, 42, .10);
            border-radius: 50%;
            box-shadow:
                0 0 0 30px rgba(139, 58, 42, .018),
                0 0 0 60px rgba(139, 58, 42, .012);
            pointer-events: none;
        }

        .intro>.reveal {
            position: relative;
            z-index: 1;
            padding-top: 9px;
        }

        .intro .section-label {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #66594e;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 2.7px;
            white-space: nowrap;
        }

        .intro .section-label::before {
            content: "";
            width: 38px;
            height: 2px;
            flex: 0 0 38px;
            background: var(--accent);
        }

        .intro-text {
            position: relative;
            z-index: 1;
            max-width: 820px;
            padding: clamp(38px, 5vw, 58px) clamp(32px, 5vw, 68px);
            background: #ffffff;
            border: 1px solid #e8e3dc;
            border-radius: 16px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
        }

        .intro-text::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 72px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px 0 0 0;
        }

        .intro-text h2 {
            max-width: 700px;
            margin: 0 0 24px;
            color: #1a1a1a;
            font-family: var(--font-serif);
            font-size: clamp(34px, 4.2vw, 54px);
            line-height: 1.1;
            font-weight: 600;
            letter-spacing: -1.5px;
        }

        .intro-text h2 em {
            color: var(--accent);
            font-style: italic;
            font-weight: 600;
        }

        .intro-text p {
            max-width: 690px;
            margin: 0;
            color: #4b5563;
            font-size: 15px;
            line-height: 1.8;
            font-weight: 400;
        }

        .intro-text p+p {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid #f0ece6;
        }

        @media (max-width: 900px) {
            .intro {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 84px 30px 90px;
            }

            .intro-text {
                max-width: none;
            }
        }

        @media (max-width: 560px) {
            .intro {
                padding: 72px 20px 78px;
            }

            .intro-text {
                padding: 30px 20px 34px;
            }

            .intro-text h2 {
                font-size: clamp(30px, 9vw, 42px);
                letter-spacing: -1px;
            }

            .intro-text p {
                font-size: 14px;
                line-height: 1.75;
            }
        }

        /* ============================================================
    USP
    ============================================================ */
        .usp {
            background: #faf7f2;
            padding: 100px 30px 120px;
            position: relative;
            border-top: 1px solid #e8e3dc;
            border-bottom: 1px solid #e8e3dc;
        }

        .usp-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .usp-item {
            background: #ffffff;
            padding: 38px 32px;
            border-radius: 16px;
            border: 1px solid #e8e3dc;
            transition: all 0.35s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            position: relative;
        }

        .usp-item:hover {
            transform: translateY(-6px);
            background: #ffffff;
            box-shadow: 0 16px 35px rgba(0, 0, 0, 0.07);
            border-color: #d1c7bc;
        }

        .usp-item .num {
            font-family: var(--font-serif);
            font-size: 34px;
            color: var(--accent);
            font-style: italic;
            font-weight: 500;
            border-bottom: 2px solid var(--accent);
            padding-bottom: 4px;
            display: inline-block;
            margin-bottom: 16px;
        }

        .usp-item h3 {
            font-family: var(--font-serif);
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .usp-desc p {
            font-size: 14px;
            line-height: 1.75;
            color: #5a4f44;
            padding-left: 18px;
            position: relative;
            margin-bottom: 10px;
        }

        .usp-desc p::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 1.5px;
            background: var(--accent);
        }

        /* ============================================================
    MENU
    ============================================================ */
        .menu {
            padding: 120px 30px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .menu .section-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            margin-bottom: 48px;
            gap: 30px;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .menu-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
            border: 1px solid #e8e3dc;
            position: relative;
        }

        .menu-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
            border-color: #d1c7bc;
        }

        .menu-card .img-wrap {
            height: 320px;
            overflow: hidden;
            background: #faf7f2;
            position: relative;
        }

        .menu-card .img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

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

        .menu-body {
            padding: 24px 26px 26px;
            background: #ffffff;
        }

        .menu-info {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            border-bottom: 1px solid #f0ece6;
            padding-bottom: 14px;
            margin-bottom: 14px;
        }

        .menu-info h3 {
            font-family: var(--font-serif);
            font-size: 21px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.3px;
        }

        .menu-info h3 .badge {
            font-size: 10px;
            text-transform: uppercase;
            color: #ffffff;
            background: var(--accent);
            padding: 3px 10px;
            border-radius: 20px;
            margin-left: 8px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .menu-price {
            font-size: 22px;
            font-weight: 700;
            color: var(--accent);
            font-family: var(--font-sans);
        }

        .menu-price small {
            font-size: 14px;
            font-weight: 500;
            color: #6b7280;
        }

        .menu-desc {
            font-size: 13.5px;
            line-height: 1.65;
            color: #555555;
        }

        .menu-tag {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--gold);
            color: var(--white);
            font-size: 9px;
            letter-spacing: 1.5px;
            padding: 4px 14px;
            border-radius: 40px;
            text-transform: uppercase;
            font-weight: 600;
            z-index: 2;
        }

        .menu-card {
            position: relative;
        }

        .menu-note {
            margin-top: 56px;
            padding: 28px 32px;
            background: var(--cream);
            border-radius: var(--radius);
            border-left: 4px solid var(--gold);
            transition: var(--transition);
        }

        .menu-note:hover {
            border-left-color: var(--accent);
            background: rgba(237, 227, 214, 0.6);
        }

        .menu-note strong {
            font-family: var(--font-serif);
            font-size: 19px;
            display: block;
            margin-bottom: 8px;
        }

        .fruit-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px 36px;
            margin-top: 6px;
        }

        .fruit-list span {
            font-size: 13px;
        }

        .fruit-list .price {
            color: var(--accent);
            font-weight: 600;
        }

        /* ============================================================
    PROCESS
    ============================================================ */
        .process {
            background: var(--cream);
            padding: 100px 30px 120px;
            position: relative;
        }

        .process::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(184, 149, 106, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .process .section-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            margin-bottom: 56px;
            gap: 30px;
        }

        .process-grid {
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 50px;
            margin-bottom: 48px;
            align-items: center;
        }

        .process-grid.reverse {
            grid-template-columns: 0.7fr 1.3fr;
        }

        .process-grid .img-wrap,
        .process-grid.reverse .img-wrap {
            border-radius: var(--radius);
            overflow: hidden;
            height: 460px;
            box-shadow: var(--shadow);
        }

        .process-grid .img-wrap img,
        .process-grid.reverse .img-wrap img {
            height: 100%;
            transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .process-grid:hover .img-wrap img,
        .process-grid.reverse:hover .img-wrap img {
            transform: scale(1.04);
        }

        .process-text .step {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .process-text h3 {
            font-family: var(--font-serif);
            font-size: 34px;
            font-weight: 500;
            letter-spacing: -1px;
            margin-bottom: 18px;
            line-height: 1.1;
        }

        .process-text h3 em {
            color: var(--accent);
            font-style: italic;
        }

        .process-text p {
            font-size: 15px;
            line-height: 1.85;
            color: #5a4f44;
            max-width: 400px;
        }

        /* ============================================================
    PROMO
    ============================================================ */
        .promo {
            background: var(--black);
            color: var(--white);
            padding: 100px 30px;
            position: relative;
            overflow: hidden;
        }

        .promo::before {
            content: "";
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(184, 149, 106, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .promo-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .promo small {
            text-transform: uppercase;
            letter-spacing: 2.5px;
            font-size: 10px;
            color: #b0a59a;
        }

        .promo h2 {
            font-family: var(--font-serif);
            font-size: clamp(44px, 6.8vw, 84px);
            line-height: 1;
            font-weight: 500;
            letter-spacing: -3px;
            margin: 16px 0 24px;
        }

        .promo h2 em {
            color: #d17860;
            font-style: italic;
        }

        .promo p {
            font-size: 15px;
            line-height: 1.85;
            color: #c9c2b7;
            max-width: 440px;
            margin-bottom: 32px;
        }

        .promo-image {
            border-radius: var(--radius);
            overflow: hidden;
            height: 460px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .promo-image img {
            height: 100%;
            transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .promo-image:hover img {
            transform: scale(1.04);
        }

        .promo .btn-primary {
            background: var(--white);
            color: var(--black);
        }

        .promo .btn-primary:hover {
            background: var(--gold);
            color: var(--white);
        }

        /* ============================================================
    ORDER FLOW — REFINED / EDITORIAL
    ============================================================ */
        .order-flow {
            position: relative;
            isolation: isolate;
            overflow: hidden;
            padding: 126px 30px 130px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .order-flow::before {
            content: "LENA";
            position: absolute;
            z-index: -2;
            top: 18px;
            left: 50%;
            transform: translateX(-50%);
            font-family: var(--font-serif);
            font-size: clamp(120px, 19vw, 250px);
            line-height: 0.8;
            letter-spacing: -10px;
            color: rgba(139, 58, 42, 0.035);
            pointer-events: none;
            user-select: none;
        }

        .order-flow::after {
            content: "";
            position: absolute;
            z-index: -1;
            top: 34px;
            right: -110px;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(139, 58, 42, 0.10);
            border-radius: 50%;
            box-shadow:
                0 0 0 26px rgba(139, 58, 42, 0.018),
                0 0 0 52px rgba(139, 58, 42, 0.012);
            pointer-events: none;
        }

        .order-flow .section-header {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
            align-items: end;
            justify-content: space-between;
            margin-bottom: 62px;
            gap: 50px;
        }

        .order-flow .section-header::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -25px;
            width: 54px;
            height: 2px;
            background: var(--accent);
            transform-origin: left;
            animation: flowLineIn 0.9s cubic-bezier(.22, .61, .36, 1) both;
        }

        .order-flow .section-title {
            margin: 0;
            letter-spacing: -1.8px;
        }

        .order-flow .section-title em {
            color: var(--accent);
            position: relative;
            white-space: nowrap;
        }

        .order-flow .section-title em::after {
            content: "";
            position: absolute;
            left: 4px;
            right: 0;
            bottom: 1px;
            height: 1px;
            background: rgba(139, 58, 42, 0.35);
            transform: rotate(-2deg);
        }

        .order-flow .section-sub {
            max-width: 390px;
            justify-self: end;
            color: #76695e;
            line-height: 1.8;
        }

        .flow-grid {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-top: 0;
            padding-top: 0;
            border-top: 0;
        }

        /* Hand-drawn-ish connector, sitting behind the four steps. */
        .flow-grid::before {
            content: "";
            position: absolute;
            top: 27px;
            left: 42px;
            right: 42px;
            height: 1px;
            background:
                linear-gradient(90deg,
                    rgba(139, 58, 42, .16),
                    rgba(139, 58, 42, .34) 25%,
                    rgba(139, 58, 42, .20) 50%,
                    rgba(139, 58, 42, .34) 75%,
                    rgba(139, 58, 42, .16));
            z-index: -1;
        }

        .flow-step {
            position: relative;
            min-height: 220px;
            padding: 0 24px 28px;
            border: 1px solid rgba(139, 58, 42, 0.105);
            border-radius: 14px;
            background: rgba(255, 252, 247, 0.58);
            box-shadow: 0 12px 35px rgba(41, 27, 20, 0.035);
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            animation: flowStepIn 0.75s cubic-bezier(.22, .61, .36, 1) forwards;
            transition:
                transform 0.35s cubic-bezier(.22, .61, .36, 1),
                box-shadow 0.35s ease,
                border-color 0.35s ease,
                background 0.35s ease;
        }

        .flow-step:nth-child(1) {
            animation-delay: .08s;
        }

        .flow-step:nth-child(2) {
            animation-delay: .17s;
        }

        .flow-step:nth-child(3) {
            animation-delay: .26s;
        }

        .flow-step:nth-child(4) {
            animation-delay: .35s;
        }

        .flow-step::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), rgba(184, 149, 106, .28));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.45s ease;
        }

        .flow-step::after {
            content: "";
            position: absolute;
            right: -32px;
            bottom: -38px;
            width: 105px;
            height: 105px;
            border-radius: 50%;
            background: radial-gradient(circle,
                    rgba(139, 58, 42, .08) 0%,
                    rgba(139, 58, 42, .025) 38%,
                    transparent 70%);
            transition: transform .5s ease;
            pointer-events: none;
        }

        .flow-step:hover {
            transform: translateY(-8px);
            border-color: rgba(139, 58, 42, 0.22);
            background: rgba(255, 252, 247, 0.88);
            box-shadow:
                0 18px 42px rgba(41, 27, 20, 0.085),
                0 2px 0 rgba(139, 58, 42, .06);
        }

        .flow-step:hover::before {
            transform: scaleX(1);
        }

        .flow-step:hover::after {
            transform: scale(1.35);
        }

        .flow-step .num {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            margin: 0 0 24px -1px;
            border: 1px solid rgba(139, 58, 42, 0.20);
            border-radius: 50%;
            background: #f8f0e8;
            color: var(--accent);
            font-family: var(--font-serif);
            font-size: 25px;
            font-style: italic;
            font-weight: 500;
            box-shadow: 0 0 0 7px rgba(248, 240, 232, 0.82);
            transition: transform .35s ease, background .35s ease, color .35s ease;
        }

        .flow-step:hover .num {
            transform: rotate(-5deg) scale(1.06);
            background: var(--accent);
            color: #fffaf4;
        }

        .flow-step h4 {
            position: relative;
            margin: 0 0 10px;
            font-size: 16px;
            font-weight: 650;
            letter-spacing: -0.15px;
        }

        .flow-step p {
            position: relative;
            margin: 0;
            max-width: 250px;
            font-size: 13.5px;
            line-height: 1.78;
            color: #5e5248;
        }

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

        @keyframes flowLineIn {
            from {
                transform: scaleX(0);
                opacity: 0;
            }

            to {
                transform: scaleX(1);
                opacity: 1;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .flow-step,
            .order-flow .section-header::after {
                animation: none;
                opacity: 1;
                transform: none;
            }
        }

        /* ====== KHUNG MẪU TIN NHẮN & NÚT BẤM ====== */

        .msg-box {
            background: linear-gradient(135deg, #fdfbf7 0%, #f6efe6 100%);
            border: 1px solid rgba(139, 58, 42, 0.12);
            border-left: 5px solid var(--accent);
            box-shadow: 0 10px 30px rgba(139, 58, 42, 0.06);
            padding: 32px 36px;
            border-radius: 16px;
            transition: all 0.3s ease;
        }

        .msg-box:hover {
            box-shadow: 0 14px 36px rgba(139, 58, 42, 0.1);
            transform: translateY(-2px);
        }

        .msg-box-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
            margin-bottom: 18px;
        }

        .msg-box-title {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .msg-box-badge {
            display: inline-block;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            font-weight: 700;
            color: var(--accent);
            background: rgba(139, 58, 42, 0.08);
            padding: 3px 10px;
            border-radius: 20px;
            width: fit-content;
        }

        .msg-box-header strong {
            font-family: var(--font-serif);
            font-size: 21px;
            color: var(--black);
            margin-bottom: 0;
        }

        .copy-btn {
            background: var(--black);
            color: var(--white);
            border: none;
            padding: 9px 18px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.3px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.25s ease;
            font-family: var(--font-sans);
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        }

        .copy-btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(139, 58, 42, 0.3);
        }

        .copy-btn.copied {
            background: #2e7d32;
            box-shadow: 0 6px 16px rgba(46, 125, 50, 0.3);
        }

        .msg-template-card {
            background: #ffffff;
            border: 1px dashed rgba(139, 58, 42, 0.25);
            border-radius: 12px;
            padding: 18px 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            font-size: 14.5px;
            color: #3d332a;
            box-shadow: inset 0 2px 6px rgba(0,0,0,0.02);
        }

        .msg-line {
            display: flex;
            align-items: baseline;
            gap: 8px;
            line-height: 1.5;
        }

        .msg-key {
            font-weight: 700;
            color: var(--accent);
            min-width: 110px;
            flex-shrink: 0;
        }

        .msg-val {
            font-weight: 500;
            color: #4a3e35;
        }

        .msg-actions {
            display: flex;
            gap: 14px;
            margin-top: 24px;
        }

        .msg-btn {
            flex: 1;
            text-align: center;
            padding: 14px 12px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-radius: var(--radius);
            transition: var(--transition);
            border: 1px solid transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .zalo-btn {
            background: #0068ff;
            color: #fff;
        }

        .zalo-btn:hover {
            background: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 104, 255, 0.25);
        }

        .fb-msg-btn {
            background: var(--black);
            color: #fff;
        }

        .fb-msg-btn:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 58, 42, 0.25);
        }

        /* ============================================================
    DELIVERY — MINIMAL / EDITORIAL
    ============================================================ */
        .delivery {
            position: relative;
            background: #f3eadf;
            padding: 92px 30px 100px;
            overflow: hidden;
            isolation: isolate;
        }

        .delivery::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -80px;
            width: 300px;
            height: 300px;
            border: 1px solid rgba(139, 58, 42, 0.07);
            border-radius: 50%;
            box-shadow:
                0 0 0 28px rgba(139, 58, 42, 0.018),
                0 0 0 56px rgba(139, 58, 42, 0.012);
            pointer-events: none;
            z-index: -1;
        }

        .delivery-inner {
            width: min(1180px, 100%);
            margin: 0 auto;
            display: block;
        }

        .delivery .section-label {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 52px;
            color: #7b6d61;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 3px;
        }

        .delivery .section-label::before {
            content: "";
            width: 44px;
            height: 2px;
            flex: 0 0 44px;
            background: var(--accent);
        }

        .delivery-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            column-gap: 72px;
            row-gap: 0;
            border-top: 1px solid rgba(139, 58, 42, 0.13);
        }

        .delivery-item {
            position: relative;
            display: grid;
            grid-template-columns: 42px minmax(0, 1fr);
            gap: 22px;
            min-height: 190px;
            padding: 34px 0 36px;
            border-bottom: 1px solid rgba(139, 58, 42, 0.13);
            transition: transform 0.35s cubic-bezier(.22, .61, .36, 1);
        }

        .delivery-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 34px;
            bottom: 34px;
            width: 2px;
            background: var(--accent);
            transform: scaleY(0);
            transform-origin: center;
            transition: transform 0.35s ease;
        }

        .delivery-item:hover {
            transform: translateX(5px);
        }

        .delivery-item:hover::before {
            transform: scaleY(1);
        }

        .delivery-item::after {
            content: "";
            position: absolute;
            right: -24px;
            bottom: -38px;
            width: 110px;
            height: 110px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(139, 58, 42, .065) 0%, rgba(139, 58, 42, .018) 42%, transparent 70%);
            opacity: 0;
            transform: scale(.8);
            transition: opacity .4s ease, transform .4s ease;
            pointer-events: none;
        }

        .delivery-item:hover::after {
            opacity: 1;
            transform: scale(1);
        }

        .delivery-index {
            padding-top: 3px;
            color: rgba(139, 58, 42, 0.55);
            font-family: var(--font-serif);
            font-size: 12px;
            font-style: italic;
            letter-spacing: 1px;
        }

        .delivery-item h4 {
            position: relative;
            margin: 0 0 14px;
            font-family: var(--font-serif);
            font-size: 21px;
            line-height: 1.2;
            font-weight: 500;
            letter-spacing: -0.45px;
            color: var(--black);
        }

        .delivery-item h4::after {
            content: "";
            display: block;
            width: 28px;
            height: 1px;
            margin-top: 10px;
            background: rgba(139, 58, 42, 0.25);
            transition: width .35s ease, background .35s ease;
        }

        .delivery-item:hover h4::after {
            width: 52px;
            background: var(--accent);
        }

        .delivery-item p {
            margin: 0;
            max-width: 430px;
            font-size: 13.5px;
            line-height: 1.8;
            color: #6e6258;
        }

        .delivery-item p+p {
            margin-top: 7px;
        }

        .delivery-item p.highlight {
            color: var(--accent);
            font-weight: 500;
        }

        @media (max-width: 1024px) {
            .delivery-list {
                column-gap: 48px;
            }
        }

        @media (max-width: 700px) {
            .delivery {
                padding: 76px 20px 82px;
            }

            .delivery .section-label {
                margin-bottom: 36px;
            }

            .delivery-list {
                grid-template-columns: 1fr;
                column-gap: 0;
            }

            .delivery-item {
                min-height: 0;
                grid-template-columns: 34px minmax(0, 1fr);
                gap: 15px;
                padding: 28px 0 30px;
            }

            .delivery-item h4 {
                font-size: 19px;
            }

            .delivery-item::before {
                top: 28px;
                bottom: 28px;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .delivery-item,
            .delivery-item::before,
            .delivery-item::after,
            .delivery-item h4::after {
                transition: none;
            }
        }

        /* ============================================================
    FAQ 
    ============================================================ */
        .faq {
            padding: 120px 30px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .faq .section-header {
            display: flex;
            align-items: end;
            justify-content: space-between;
            margin-bottom: 48px;
            gap: 30px;
        }

        .faq-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 24px;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid var(--line);
            padding: 0 24px;
            transition: var(--transition);
            box-shadow: var(--shadow);
            cursor: pointer;
        }

        .faq-item:hover {
            border-color: var(--gold-light);
            box-shadow: var(--shadow-hover);
        }

        .faq-item.open {
            border-color: var(--accent);
            box-shadow: 0 8px 32px rgba(139, 58, 42, 0.10);
        }

        .faq-q {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 20px 0;
            font-family: var(--font-serif);
            font-size: 17px;
            font-weight: 500;
            letter-spacing: -0.3px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--black);
            gap: 16px;
            transition: color 0.25s;
            line-height: 1.4;
        }

        .faq-q .q-text {
            flex: 1;
        }

        .faq-q .icon {
            font-size: 22px;
            color: var(--accent);
            transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
            flex-shrink: 0;
            font-weight: 300;
            width: 28px;
            text-align: center;
        }

        .faq-item.open .icon {
            transform: rotate(45deg);
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s cubic-bezier(0.25, 0.1, 0.25, 1),
                padding 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
            font-size: 14px;
            line-height: 1.85;
            color: #5a4f44;
            padding: 0 0 0 0;
        }

        .faq-item.open .faq-a {
            max-height: 400px;
            padding: 0 0 24px 0;
        }

        .faq-a strong {
            color: var(--black);
            font-weight: 600;
        }

        /* ============================================================
    CONTACT — DARK EDITORIAL / HIGH CONTRAST
    ============================================================ */
        .contact {
            position: relative;
            overflow: hidden;
            background: #17100e;
            color: #f7efe5;
            border-top: 1px solid rgba(247, 239, 229, 0.10);
        }

        .contact::before {
            content: "";
            position: absolute;
            width: 520px;
            height: 520px;
            left: -210px;
            bottom: -290px;
            border: 1px solid rgba(205, 116, 78, 0.12);
            border-radius: 50%;
            box-shadow:
                0 0 0 32px rgba(205, 116, 78, 0.025),
                0 0 0 64px rgba(205, 116, 78, 0.018);
            pointer-events: none;
        }

        .contact-inner {
            position: relative;
            width: min(1180px, calc(100% - 60px));
            margin: 0 auto;
            min-height: 650px;
            padding: 110px 0 92px;
            display: grid;
            grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
            align-items: center;
            gap: 92px;
        }

        .contact-kicker {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 30px;
            color: rgba(247, 239, 229, .72);
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 3px;
        }

        .contact-kicker::before {
            content: "";
            width: 44px;
            height: 2px;
            background: #c96f4b;
            flex: 0 0 44px;
        }

        .contact-title {
            max-width: 760px;
            margin: 0;
            color: #fff7ee;
            font-family: var(--font-serif);
            font-size: clamp(52px, 5.8vw, 88px);
            line-height: .91;
            letter-spacing: -3.2px;
            font-weight: 600;
        }

        .contact-title em {
            display: block;
            color: #d77a53;
            font-style: italic;
            font-weight: 500;
        }

        .contact-cta {
            display: inline-flex;
            align-items: center;
            gap: 16px;
            margin-top: 38px;
            padding: 16px 23px;
            border: 1px solid rgba(255, 255, 255, .10);
            border-radius: 7px;
            background: #f7efe5;
            color: #211713;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 1.7px;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
            transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
        }

        .contact-cta span {
            font-size: 15px;
            line-height: 1;
            transition: transform .3s ease;
        }

        .contact-cta:hover {
            transform: translateY(-3px);
            background: #fffaf3;
            box-shadow: 0 16px 38px rgba(0, 0, 0, .25);
        }

        .contact-cta:hover span {
            transform: translateX(4px);
        }

        .contact-details {
            align-self: center;
            border-top: 1px solid rgba(247, 239, 229, .20);
        }

        .contact-row {
            min-height: 88px;
            display: grid;
            grid-template-columns: 145px minmax(0, 1fr);
            align-items: center;
            gap: 24px;
            border-bottom: 1px solid rgba(247, 239, 229, .14);
        }

        .contact-row-label {
            color: rgba(247, 239, 229, .62);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .contact-row-value {
            justify-self: end;
            color: #f5e9dd;
            font-size: 14px;
            line-height: 1.45;
            font-weight: 650;
            text-align: right;
        }

        .contact-row a {
            color: #f8eee4;
            text-decoration: none;
            font-weight: 750;
            transition: color .25s ease;
        }

        .contact-row a:hover {
            color: #d77a53;
        }

        .contact-row .arrow {
            color: #d77a53;
            margin-left: 4px;
            font-weight: 700;
        }

        .contact-row.pickup .contact-row-value {
            color: rgba(247, 239, 229, .76);
            font-weight: 600;
        }

        @media (max-width: 900px) {
            .contact-inner {
                grid-template-columns: 1fr;
                gap: 64px;
                min-height: auto;
                padding: 90px 0 76px;
            }

            .contact-title {
                max-width: 700px;
            }

            .contact-details {
                width: 100%;
            }
        }

        @media (max-width: 560px) {
            .contact-inner {
                width: min(100% - 40px, 1180px);
                padding: 72px 0 62px;
                gap: 48px;
            }

            .contact-title {
                font-size: clamp(46px, 13vw, 66px);
                letter-spacing: -2px;
            }

            .contact-row {
                min-height: 78px;
                grid-template-columns: 105px minmax(0, 1fr);
                gap: 14px;
            }

            .contact-row-value {
                font-size: 13px;
            }

            .contact-cta {
                width: fit-content;
                margin-top: 30px;
            }
        }

        @media (prefers-reduced-motion: reduce) {

            .contact-cta,
            .contact-cta span,
            .contact-row a {
                transition: none;
            }
        }

        /* ============================================================
    FOOTER
    ============================================================ */
        footer {
            background: var(--black);
            color: #888;
            border-top: 1px solid #333;
            padding: 26px 30px;
        }

        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            font-size: 11px;
            letter-spacing: 0.5px;
        }

        .footer-inner .estd-foot {
            font-size: 9px;
            letter-spacing: 2px;
            color: #666;
            text-transform: uppercase;
        }

        .footer-socials a {
            position: relative;
            margin-left: 20px;
            transition: color 0.25s;
        }

        .footer-socials a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.35s ease;
        }

        .footer-socials a:hover {
            color: #f8f3ec;
        }

        .footer-socials a:hover::after {
            width: 100%;
        }

        /* ============================================================
    MODAL
    ============================================================ */
        .modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(26, 17, 14, 0.75);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s ease;
            padding: 20px;
        }

        .modal-overlay.active {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-box {
            background: var(--white);
            max-width: 460px;
            width: 100%;
            padding: 48px 36px;
            border-radius: var(--radius);
            text-align: center;
            transform: translateY(30px) scale(0.96);
            transition: transform 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
        }

        .modal-overlay.active .modal-box {
            transform: translateY(0) scale(1);
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 20px;
            background: none;
            border: none;
            font-size: 30px;
            color: var(--gray);
            cursor: pointer;
            transition: var(--transition);
        }

        .modal-close:hover {
            color: var(--accent);
            transform: rotate(90deg);
        }

        .modal-box {
            position: relative;
        }

        .modal-box h3 {
            font-family: var(--font-serif);
            font-size: 30px;
            margin-bottom: 32px;
            font-weight: 600;
        }

        .modal-box h3 em {
            color: var(--accent);
            font-style: italic;
        }

        .modal-actions {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .modal-btn {
            width: 100%;
            padding: 16px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 1px;
            border: none;
            border-radius: var(--radius);
            cursor: pointer;
            transition: var(--transition);
            font-family: var(--font-sans);
        }

        .modal-btn.fb {
            background: var(--black);
            color: var(--white);
        }

        .modal-btn.fb:hover {
            background: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .modal-btn.tiktok,
        .modal-btn.zalo {
            background: transparent;
            color: var(--black);
            border: 1px solid var(--line);
        }

        .modal-btn.tiktok:hover,
        .modal-btn.zalo:hover {
            background: var(--cream);
            border-color: var(--black);
            transform: translateY(-2px);
        }

        /* ============================================================
    REVEAL & LUXURY IMAGE ENTRANCE ANIMATIONS
    ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(32px);
            transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
            will-change: opacity, transform;
        }

        .reveal.in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hero Load Choreography */
        .hero .reveal {
            opacity: 0;
            transform: translateY(28px);
            animation: heroFadeUp 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }
        .hero .reveal:nth-child(2) {
            animation-delay: 0.15s;
        }

        @keyframes heroFadeUp {
            from {
                opacity: 0;
                transform: translateY(28px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Image entrance */
        .hero-image-wrap {
            opacity: 0;
            transform: translateY(24px) scale(0.985);
            animation: heroImgReveal 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.25s forwards;
            will-change: opacity, transform;
        }

        @keyframes heroImgReveal {
            from {
                opacity: 0;
                transform: translateY(24px) scale(0.985);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .hero-image-wrap .img-inner img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transform: scale(1.04);
            transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
            will-change: transform;
        }

        .hero-image-wrap:hover .img-inner img {
            transform: scale(1.01);
        }

        /* Luxury Image Scale Reveal on Scroll */
        .menu-card .img-wrap img,
        .process-grid .img-wrap img,
        .process-grid.reverse .img-wrap img,
        .promo-image img {
            transform: scale(1.08);
            transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
            will-change: transform;
        }

        .reveal.in .img-wrap img,
        .reveal.in.img-wrap img,
        .reveal.in .promo-image img,
        .reveal.in.promo-image img,
        .menu-card.in .img-wrap img,
        .process-grid.in .img-wrap img {
            transform: scale(1);
        }

        /* Hover Zoom on Image */
        .menu-card:hover .img-wrap img,
        .process-grid:hover .img-wrap img,
        .promo-image:hover img {
            transform: scale(1.05);
        }

        /* Shimmer & Glass Sheen on Hover */
        .menu-card .img-wrap::after,
        .process-grid .img-wrap::after,
        .promo-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.28) 50%, transparent 65%);
            transform: translateX(-120%);
            transition: transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
            z-index: 2;
        }

        .menu-card:hover .img-wrap::after,
        .process-grid:hover .img-wrap::after,
        .promo:hover .promo-image::after {
            transform: translateX(120%);
        }

        /* Staggered Grid Delays */
        .menu-grid .menu-card:nth-child(1) { transition-delay: 0.05s; }
        .menu-grid .menu-card:nth-child(2) { transition-delay: 0.16s; }
        .menu-grid .menu-card:nth-child(3) { transition-delay: 0.28s; }
        .menu-grid .menu-card:nth-child(4) { transition-delay: 0.38s; }
        .menu-grid .menu-card:nth-child(5) { transition-delay: 0.48s; }
        .menu-grid .menu-card:nth-child(6) { transition-delay: 0.58s; }

        .usp-list .usp-item:nth-child(1) { transition-delay: 0.06s; }
        .usp-list .usp-item:nth-child(2) { transition-delay: 0.18s; }
        .usp-list .usp-item:nth-child(3) { transition-delay: 0.30s; }


        /* ============================================================
    RESPONSIVE
    ============================================================ */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 60px 20px 40px;
            }

            .hero-image-wrap .img-inner {
                height: 440px;
            }

            .intro {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 80px 20px;
            }

            .usp-list,
            .menu-grid {
                grid-template-columns: 1fr 1fr;
            }

            .process-grid,
            .process-grid.reverse {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .process-grid .img-wrap,
            .process-grid.reverse .img-wrap {
                height: 340px;
            }

            .promo-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .promo-image {
                height: 340px;
            }

            .delivery-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .delivery-list {
                grid-template-columns: 1fr 1fr;
                gap: 24px 40px;
            }

            .flow-grid {
                grid-template-columns: 1fr 1fr;
                gap: 18px;
            }

            .flow-grid::before {
                display: none;
            }

            .flow-step {
                min-height: 205px;
            }

            .contact-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .section-header,
            .menu .section-header,
            .usp .section-header,
            .process .section-header,
            .order-flow .section-header,
            .faq .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }

            .section-sub {
                max-width: 100%;
            }

            .faq-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 700px) {
            .nav-links {
                display: none;
            }

            nav {
                height: 64px;
                padding: 0 20px;
            }

            .brand {
                font-size: 19px;
            }

            .brand .estd {
                font-size: 7px;
                padding-left: 8px;
            }

            .nav-cta {
                padding: 8px 16px;
                font-size: 11px;
            }

            .hero {
                padding: 40px 20px 30px;
            }

            .hero-image-wrap .img-inner {
                height: 300px;
            }

            .usp-list,
            .menu-grid {
                grid-template-columns: 1fr;
            }

            .menu-card .img-wrap {
                height: 260px;
            }

            .process-grid .img-wrap,
            .process-grid.reverse .img-wrap {
                height: 260px;
            }

            .promo-image {
                height: 260px;
            }

            .order-flow {
                padding: 88px 20px 96px;
            }

            .order-flow::before {
                top: 30px;
                font-size: 120px;
            }

            .order-flow::after {
                width: 180px;
                height: 180px;
                right: -90px;
            }

            .order-flow .section-header {
                gap: 18px;
                margin-bottom: 42px;
            }

            .order-flow .section-sub {
                justify-self: start;
            }

            .flow-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .flow-grid::before {
                display: none;
            }

            .flow-step {
                min-height: auto;
                padding: 20px 20px 24px;
            }

            .flow-step .num {
                width: 48px;
                height: 48px;
                margin-bottom: 18px;
                font-size: 22px;
            }

            .delivery-list {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-inner {
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .footer-socials a {
                margin: 0 10px;
            }

            .modal-box {
                padding: 36px 24px;
            }

            .modal-box h3 {
                font-size: 26px;
            }

            .faq-item {
                padding: 0 18px;
            }

            .faq-q {
                font-size: 15px;
                padding: 16px 0;
            }

            .faq-a {
                font-size: 13px;
            }

            .faq-item.open .faq-a {
                padding: 0 0 18px 0;
            }

            .msg-actions {
                flex-direction: column;
            }

            .msg-box-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }

            .copy-btn {
                width: 100%;
                text-align: center;
            }
        }
.modal-btn.messenger {
    background: #0084FF;
    color: #ffffff;
}
.modal-btn.messenger:hover {
    background: #0068ff;
}

/* ============================================================
   MENU — FLAVOR FILTER & ORDER BUTTON (thêm)
   ============================================================ */
.menu-flavor-filter {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    align-self: flex-end;
}

.mff-btn {
    padding: 8px 18px;
    border: 1.5px solid var(--line);
    border-radius: 20px;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: all .25s;
}
.mff-btn.active,
.mff-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(139,58,42,.07);
}

.menu-flavor-chips {
    display: flex;
    gap: 6px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.mfc {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
    background: var(--cream);
    color: var(--gray);
}
.mfc.cacao { background: rgba(139,58,42,.08); color: var(--accent); }
.mfc.matcha { background: rgba(34,120,60,.08); color: #1a6e35; }

.menu-order-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 22px;
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-sans);
    transition: all .25s;
    position: relative;
    overflow: hidden;
}
.menu-order-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    opacity: 0;
    transition: opacity .3s;
}
.menu-order-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(139,58,42,.25); }
.menu-order-btn:hover::before { opacity: 1; }
.menu-order-btn span { position: relative; z-index: 1; }

.menu-card-hidden { display: none !important; }

/* ============================================================
   IN-APP MESSAGING (IB) SECTION
   ============================================================ */
.ib-section {
    background: var(--black);
    color: var(--white);
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
}

.ib-section::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184,149,106,.06) 0%, transparent 70%);
    pointer-events: none;
}

.ib-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ib-copy .section-label { color: #9a8f84; }
.ib-copy .section-title { color: var(--white); }
.ib-copy .section-title em { color: #d17860; font-style: italic; }
.ib-copy .section-sub { color: #c9c2b7; }

.ib-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
}

.ib-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    max-width: 260px;
}
.ib-social-btn.zalo { background: rgba(0,104,255,.15); color: #6eb3ff; border: 1px solid rgba(0,104,255,.3); }
.ib-social-btn.messenger { background: rgba(0,132,255,.15); color: #7dc0ff; border: 1px solid rgba(0,132,255,.3); }
.ib-social-btn:hover { transform: translateX(4px); }

/* IB Form */
.ib-form-wrap {
    background: rgba(255,251,245,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 36px 40px;
    backdrop-filter: blur(8px);
}

.ib-form-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--white);
}

.ib-row { margin-bottom: 16px; }
.ib-row input,
.ib-row textarea {
    width: 100%;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border .2s;
    resize: vertical;
}
.ib-row input::placeholder,
.ib-row textarea::placeholder { color: #7a6f64; }
.ib-row input:focus,
.ib-row textarea:focus { border-color: rgba(199,117,87,.5); }

.ib-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent), #c77557);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .5px;
    transition: all .25s;
    box-shadow: 0 8px 24px rgba(139,58,42,.3);
    margin-top: 8px;
}
.ib-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(139,58,42,.4); }
.ib-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.ib-success {
    margin-top: 16px;
    padding: 14px 18px;
    background: rgba(16,185,129,.15);
    border: 1px solid rgba(16,185,129,.3);
    border-radius: 10px;
    font-size: 14px;
    color: #6ee7b7;
}

.ib-error {
    margin-top: 14px;
    padding: 12px 16px;
    background: rgba(239,68,68,.15);
    border: 1px solid rgba(239,68,68,.25);
    border-radius: 10px;
    font-size: 13px;
    color: #fca5a5;
}

@media (max-width: 900px) {
    .ib-inner { grid-template-columns: 1fr; gap: 40px; }
    .ib-form-wrap { padding: 28px 24px; }
    .menu-flavor-filter { align-self: auto; }
    .menu .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .ib-section { padding: 72px 20px; }
    .ib-form-wrap { padding: 24px 20px; }
}
