        /* ===== TOKENS (from Fu Fut Coffee Design System) ===== */
        :root {
            --teal-50:#EDF8F8; --teal-100:#D2EFEF; --teal-200:#A8DFE0;
            --teal-300:#7DCFD0; --teal-400:#4DBEC0; --teal-500:#18B4B7;
            --teal-600:#0F7B78; --teal-700:#0C5F5B; --teal-800:#0A4A47; --teal-900:#073735;
            --gold-100:#F6ECD8; --gold-300:#E4CB99; --gold-500:#D6B36A; --gold-700:#AD8A47;
            --neutral-0:#FFFFFF; --neutral-25:#FAFAF8; --neutral-50:#F4F3F0;
            --neutral-100:#E9E7E1; --neutral-300:#C9C6BD; --neutral-500:#8C897F;
            --neutral-700:#524F47; --neutral-900:#221F1A;
            --color-primary:var(--teal-600); --color-primary-dark:var(--teal-700);
            --color-secondary:var(--teal-500); --color-light:var(--teal-50);
            --color-background:var(--neutral-25); --color-surface:var(--neutral-0);
            --color-accent:var(--gold-500);
            --text-heading:var(--neutral-900); --text-body:var(--neutral-700);
            --text-muted:var(--neutral-500); --text-on-primary:var(--neutral-0);
            --border-subtle:var(--neutral-100); --border-strong:var(--teal-600);
            --font-display:'Cormorant Garamond',ui-serif,Georgia,'Noto Sans Ethiopic',serif;
            --font-body:'Inter',ui-sans-serif,system-ui,'Noto Sans Ethiopic',sans-serif;
            --font-script:'Great Vibes','Noto Sans Ethiopic',cursive;
            --text-xs:.75rem; --text-sm:.875rem; --text-base:1rem; --text-md:1.0625rem;
            --text-lg:1.2rem; --text-xl:1.4rem; --text-2xl:1.75rem;
            --text-3xl:2.25rem; --text-4xl:2.75rem;
            --leading-tight:1.08; --leading-snug:1.25; --leading-normal:1.5; --leading-relaxed:1.7;
            --tracking-tight:-0.01em; --tracking-wide:.04em; --tracking-wider:.12em;
            --space-1:8px; --space-2:16px; --space-3:24px; --space-4:32px;
            --space-5:48px; --space-6:64px; --space-7:96px; --space-8:128px;
            --width-page:1440px; --width-content:1280px; --gutter:24px;
            --radius-sm:8px; --radius-md:16px; --radius-lg:24px; --radius-xl:32px;
            --radius-pill:999px; --radius-circle:50%;
            --shadow-sm:0 1px 2px rgba(7,55,53,.06),0 1px 1px rgba(7,55,53,.04);
            --shadow-md:0 8px 24px rgba(7,55,53,.10),0 2px 6px rgba(7,55,53,.06);
            --shadow-lg:0 24px 60px rgba(7,55,53,.16),0 8px 16px rgba(7,55,53,.08);
            --shadow-primary-sm:0 4px 14px rgba(15,123,120,.2); --shadow-primary-md:0 6px 20px rgba(15,123,120,.35);
            --modal-max-w:660px; --modal-min-h:300px; --modal-close-size:44px;
            --modal-overlay:rgba(7,55,53,.7);
            --glass-bg:rgba(255,255,255,.62); --glass-border:rgba(255,255,255,.4);
            --glass-blur:blur(16px);
            --ease-standard:cubic-bezier(.4,0,.2,1); --ease-out:cubic-bezier(.16,1,.3,1);
            --duration-fast:150ms; --duration-base:280ms; --duration-slow:520ms;
        }

        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
        }
        html { scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
        html::-webkit-scrollbar { display: none; }
        body { font-family: var(--font-body); color: var(--text-body); background: var(--color-background); overflow-x: hidden; line-height: var(--leading-normal); }
        img { max-width: 100%; display: block; }
        a { color: var(--color-primary); text-decoration: none; }
        a:hover { color: var(--color-primary-dark); }
        button { font-family: inherit; cursor: pointer; }

        .content { max-width: var(--width-content); margin: 0 auto; padding: 0 var(--gutter); }
        .section { padding: var(--space-8) var(--gutter); }
        @media(max-width:900px){ .section { padding: var(--space-7) var(--gutter); } }
        @media(max-width:480px){ .section { padding: var(--space-6) 16px; } }

        /* ===== PRELOADER ===== */
        .preloader {
            position: fixed; inset: 0; z-index: 9999;
            background: linear-gradient(160deg, var(--teal-900) 0%, var(--teal-700) 50%, var(--teal-800) 100%);
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            transition: opacity .8s var(--ease-out), visibility .8s, transform .8s var(--ease-out);
        }
        .preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.05); }

        /* Rotating bean ring */
        .preloader-beans { position: absolute; width: 280px; height: 280px; animation: beanSpin 20s linear infinite; }
        .preloader-beans .bean {
            position: absolute; width: 12px; height: 16px;
            border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
            background: linear-gradient(135deg, rgba(214,179,106,.5), rgba(173,138,71,.4));
            box-shadow: inset 0 0 0 1px rgba(255,255,255,.1);
        }
        .preloader-beans .bean::after {
            content: ''; position: absolute; top: 50%; left: 50%;
            width: 1px; height: 60%; background: rgba(0,0,0,.3);
            transform: translate(-50%,-50%) rotate(90deg); border-radius: 1px;
        }
        .preloader-beans .bean:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
        .preloader-beans .bean:nth-child(2) { top: 20%; right: 6%; transform: rotate(45deg); }
        .preloader-beans .bean:nth-child(3) { top: 50%; right: 0; transform: rotate(90deg); }
        .preloader-beans .bean:nth-child(4) { bottom: 20%; right: 6%; transform: rotate(135deg); }
        .preloader-beans .bean:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%) rotate(180deg); }
        .preloader-beans .bean:nth-child(6) { bottom: 20%; left: 6%; transform: rotate(225deg); }
        .preloader-beans .bean:nth-child(7) { top: 50%; left: 0; transform: rotate(270deg); }
        .preloader-beans .bean:nth-child(8) { top: 20%; left: 6%; transform: rotate(315deg); }
        @keyframes beanSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

        /* Cup SVG */
        .preloader-cup { position: relative; z-index: 2; width: 80px; height: 80px; margin-bottom: 32px; opacity: 0; animation: pFadeUp .6s .3s forwards; }
        .preloader-cup svg { width: 100%; height: 100%; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }
        .preloader-cup .cup-liquid { animation: liquidFill 2s .5s ease-out forwards; }
        @keyframes liquidFill { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

        /* Steam curls */
        .preloader-steam { position: absolute; top: -24px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
        .preloader-steam svg { opacity: 0; animation: steamFloat 3s ease-in-out infinite; }
        .preloader-steam svg:nth-child(1) { animation-delay: 0s; }
        .preloader-steam svg:nth-child(2) { animation-delay: .8s; }
        .preloader-steam svg:nth-child(3) { animation-delay: 1.6s; }
        @keyframes steamFloat {
            0% { opacity: 0; transform: translateY(8px) scaleX(.8); }
            20% { opacity: .7; }
            100% { opacity: 0; transform: translateY(-28px) scaleX(1.3); }
        }

        /* Brand text */
        .preloader-amharic {
            font-family: var(--font-script); font-size: 2.1rem; color: var(--gold-300);
            margin-bottom: 4px; position: relative; z-index: 2;
            opacity: 0; animation: pFadeUp .5s .5s forwards;
            text-shadow: 0 2px 16px rgba(214,179,106,.3);
        }
        .preloader-name {
            font-family: var(--font-display); font-size: 1.1rem; color: rgba(255,255,255,.8);
            font-weight: 500; letter-spacing: var(--tracking-wider); text-transform: uppercase;
            margin-bottom: 40px; position: relative; z-index: 2;
            opacity: 0; animation: pFadeUp .5s .7s forwards;
        }

        /* Progress */
        .preloader-progress { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: pFadeUp .4s .9s forwards; }
        .preloader-bar { width: 180px; height: 2px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
        .preloader-bar-fill { width: 0%; height: 100%; background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); border-radius: 2px; transition: width .25s ease-out; }
        .preloader-percent { font-size: var(--text-xs); color: rgba(255,255,255,.4); font-variant-numeric: tabular-nums; min-width: 32px; text-align: center; }
        .preloader-label { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.25); margin-top: 2px; }

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

        @media (prefers-reduced-motion: reduce) {
            .preloader-beans { animation: none; }
            .preloader-steam svg { animation: none; opacity: .5; }
            .preloader-cup .cup-liquid { animation: none; }
        }

        /* ===== SCROLL PROGRESS ===== */
        .scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, var(--color-primary), var(--gold-500), var(--color-secondary)); z-index: 1001; transition: width .1s linear; }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px;
            border-radius: 50%; background: var(--color-primary); color: #fff;
            display: flex; align-items: center; justify-content: center; z-index: 999;
            border: none; opacity: 0; visibility: hidden; transform: translateY(20px);
            transition: all .4s var(--ease-out); box-shadow: 0 4px 20px rgba(7,55,53,.3);
        }
        .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
        .back-to-top:hover { background: var(--color-primary-dark); transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .back-to-top svg { width: 20px; height: 20px; }

        /* ===== NAVBAR ===== */
        .nav {
            position: fixed; top: 0; left: 0; right: 0; z-index: 100;
            display: flex; align-items: center; justify-content: space-between;
            padding: 16px 48px;
            transition: background var(--duration-base) var(--ease-standard),
                        border-color var(--duration-base),
                        box-shadow var(--duration-base),
                        padding var(--duration-base);
        }
        .nav.scrolled {
            background: var(--glass-bg); backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border-bottom: 1px solid var(--glass-border); padding: 12px 48px;
        }
        .nav-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: #fff; white-space: nowrap; text-decoration: none; }
        .nav-logo img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
        .nav.scrolled .nav-logo { color: var(--color-primary-dark); }
        .nav-drawer { display: flex; align-items: center; flex: 1; justify-content: center; gap: 32px; }
        .nav-drawer-header { display: none; }
        .nav-drawer-body { display: flex; align-items: center; }
        .nav-drawer-footer { display: flex; align-items: center; }

        .nav-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
        .nav-links a {
            font-size: var(--text-sm); font-weight: 500; color: rgba(255,255,255,.85);
            text-decoration: none; white-space: nowrap; position: relative;
            transition: color var(--duration-fast); padding: 4px 0;
        }
        .nav.scrolled .nav-links a { color: var(--text-body); }
        .nav-links a:hover { color: var(--color-accent); }
        .nav-links a::after {
            content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px;
            background: var(--color-accent); transition: width var(--duration-base) var(--ease-out);
        }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a.active { color: var(--color-accent); }
        .nav-links a.active::after { width: 100%; }

        .nav-actions { display: flex; gap: 12px; align-items: center; }
        .btn-outline-nav {
            padding: 10px 20px; border-radius: var(--radius-pill);
            border: 1px solid currentColor; background: transparent;
            color: #fff; font-weight: 600; font-size: var(--text-sm);
            transition: all var(--duration-fast); cursor: pointer; white-space: nowrap;
        }
        .nav.scrolled .btn-outline-nav { color: var(--color-primary); }
        .btn-outline-nav:hover { background: rgba(255,255,255,.1); }
        .nav.scrolled .btn-outline-nav:hover { background: var(--teal-50); }
        .btn-primary-nav {
            padding: 10px 20px; border-radius: var(--radius-pill);
            border: none; background: var(--color-primary); color: #fff;
            font-weight: 600; font-size: var(--text-sm);
            transition: all var(--duration-fast); cursor: pointer; white-space: nowrap;
        }
        .btn-primary-nav:hover { background: var(--color-primary-dark); transform: translateY(-1px); }
        .btn-nav-desktop { flex-shrink: 0; margin-left: 24px; }
        @media(min-width:1081px) { .nav-drawer-footer .nav-actions { display: none; } }
        @media(max-width:1080px) { .btn-nav-desktop { display: none; } }

        .nav-toggle {
            display: none; width: 44px; height: 44px; border-radius: 50%;
            border: none; background: transparent; flex-direction: column;
            align-items: center; justify-content: center; gap: 5px;
            cursor: pointer; transition: background var(--duration-fast);
            position: relative; z-index: 1001;
        }
        .nav-toggle:hover { background: rgba(255,255,255,.08); }
        .nav-toggle:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }
        .nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all var(--duration-base) var(--ease-standard); transform-origin: center; }
        .nav.scrolled .nav-toggle span { background: var(--color-primary-dark); }

        /* Hamburger → X animation */
        .nav-toggle.active span { background: var(--gold-500) !important; }
        .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ===== MOBILE DRAWER ===== */
        @media(max-width:1080px) {
            .nav { padding: 12px 20px; }
            .nav.scrolled { padding: 10px 20px; }
            .nav-links, .nav-actions { display: none; }
            .nav-toggle { display: flex; }
            .nav.mobile-open .nav-toggle { display: none; }

            /* Backdrop */
            .nav-backdrop {
                position: fixed; inset: 0; z-index: 998;
                background: rgba(7,39,37,.7);
                backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
                opacity: 0; visibility: hidden;
                transition: opacity .35s ease, visibility .35s ease;
            }
            .nav.mobile-open .nav-backdrop { opacity: 1; visibility: visible; }

            /* Drawer panel — fixed sidebar on the left */
            .nav-drawer {
                position: fixed; top: 0; left: 0; bottom: 0;
                margin-left: 0;
                z-index: 999;
                width: min(360px, 85vw);
                height: 100dvh;
                background: linear-gradient(175deg, rgba(3,30,28,.99) 0%, rgba(10,74,71,.98) 35%, rgba(7,55,53,.99) 70%, rgba(5,40,38,.99) 100%);
                backdrop-filter: blur(32px) saturate(180%);
                -webkit-backdrop-filter: blur(32px) saturate(180%);
                border-right: 1px solid rgba(214,179,106,.12);
                border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
                box-shadow: 24px 0 80px rgba(0,0,0,.6), inset 1px 0 0 rgba(214,179,106,.08);
                display: flex; flex-direction: column; align-items: stretch;
                justify-content: flex-start;
                transform: translateX(-100%);
                opacity: 0; visibility: hidden;
                transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .35s ease, visibility .35s ease;
            }
            .nav-drawer::before {
                content: '';
                position: absolute;
                top: 0; left: 0;
                width: calc(100% - var(--radius-lg));
                height: 2px;
                background: linear-gradient(90deg, transparent 0%, var(--gold-500) 25%, var(--gold-300) 50%, var(--gold-500) 75%, transparent 100%);
                opacity: .5;
                pointer-events: none;
                z-index: 3;
            }

            .nav.mobile-open .nav-drawer {
                transform: translateX(0);
                opacity: 1; visibility: visible;
            }

            /* Drawer header */
            .nav-drawer-header {
                display: flex; align-items: center; justify-content: space-between;
                padding: 18px 20px;
                border-bottom: 1px solid rgba(214,179,106,.12);
                background: rgba(7,55,53,.6);
                backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
                flex-shrink: 0; position: relative; z-index: 2;
            }
            .nav-drawer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
            .nav-drawer-logo img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--gold-500); }
            .nav-drawer-logo-text { display: flex; flex-direction: column; }
            .nav-drawer-logo-brand { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.15; }
            .nav-drawer-logo-sub { font-size: .7rem; color: var(--gold-300); letter-spacing: var(--tracking-wider); margin-top: 1px; }

            .nav-drawer-close {
                width: 44px; height: 44px; border-radius: 50%;
                border: 1px solid rgba(214,179,106,.3);
                background: rgba(255,255,255,.06);
                color: var(--gold-300);
                display: flex; align-items: center; justify-content: center;
                cursor: pointer; transition: all .25s var(--ease-out);
            }
            .nav-drawer-close:hover { background: var(--gold-500); color: var(--teal-900); transform: rotate(90deg); }
            .nav-drawer-close:focus-visible { outline: 2px solid var(--gold-500); outline-offset: 2px; }
            .nav-drawer-close svg { width: 20px; height: 20px; }

            /* Drawer body (links) */
            .nav-drawer-body {
                flex: 1; padding: 8px 0; overflow-y: auto; overscroll-behavior: contain;
                display: flex; flex-direction: column; align-items: stretch;
                position: relative; z-index: 1;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .nav-drawer-body::-webkit-scrollbar { display: none; }
            .nav-drawer-body .nav-links {
                display: flex; flex-direction: column; gap: 0; list-style: none;
                padding: 4px 0; margin: 0; width: 100%; flex: 1;
            }
            /* Drawer header entrance */
            .nav-drawer-header {
                opacity: 0; transform: translateY(-16px);
                transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
            }
            .nav.mobile-open .nav-drawer-header { opacity: 1; transform: translateY(0); transition-delay: .05s; }

            /* Staggered link entrance */
            .nav-drawer-body .nav-links li {
                width: 100%; opacity: 0; transform: translateX(-40px) scale(0.96);
                transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
            }
            .nav.mobile-open .nav-drawer-body .nav-links li { opacity: 1; transform: translateX(0) scale(1); }
            .nav.mobile-open .nav-drawer-body .nav-links li:nth-child(1) { transition-delay: .08s; }
            .nav.mobile-open .nav-drawer-body .nav-links li:nth-child(2) { transition-delay: .14s; }
            .nav.mobile-open .nav-drawer-body .nav-links li:nth-child(3) { transition-delay: .20s; }
            .nav.mobile-open .nav-drawer-body .nav-links li:nth-child(4) { transition-delay: .26s; }
            .nav.mobile-open .nav-drawer-body .nav-links li:nth-child(5) { transition-delay: .32s; }
            .nav.mobile-open .nav-drawer-body .nav-links li:nth-child(6) { transition-delay: .38s; }

            /* Drawer footer entrance */
            .nav-drawer-footer {
                opacity: 0; transform: translateY(16px);
                transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
            }
            .nav.mobile-open .nav-drawer-footer { opacity: 1; transform: translateY(0); transition-delay: .42s; }

            .nav-drawer-body .nav-links a {
                color: rgba(255,255,255,.92); font-size: 1.05rem; font-weight: 500;
                padding: 16px 24px; border-radius: 0;
                border-bottom: 1px solid rgba(255,255,255,.07);
                display: block; text-align: left;
                text-decoration: none; transition: all .2s var(--ease-out);
                position: relative; letter-spacing: .01em;
            }
            .nav-drawer-body .nav-links a::after {
                content: ''; position: absolute; bottom: -1px; left: 24px; right: 24px;
                height: 1px; background: transparent; transition: background .2s var(--ease-out);
            }
            .nav-drawer-body .nav-links a:hover {
                background: rgba(214,179,106,.08); color: var(--gold-300);
                padding-left: 28px;
            }
            .nav-drawer-body .nav-links a:hover::after {
                background: linear-gradient(90deg, var(--gold-500), transparent);
            }
            .nav-drawer-body .nav-links a.active {
                color: var(--gold-300); background: rgba(214,179,106,.06);
            }
            .nav-drawer-body .nav-links a.active::after {
                background: var(--gold-500); opacity: .4;
            }
            .nav-drawer-body .nav-links a::before {
                content: ''; position: absolute; left: 0; top: 50%;
                width: 3px; height: 0; background: var(--gold-500);
                border-radius: 0 3px 3px 0; transform: translateY(-50%);
                transition: height .25s var(--ease-out);
            }
            .nav-drawer-body .nav-links a:hover::before { height: 50%; }
            .nav-drawer-body .nav-links a.active::before { height: 50%; background: var(--gold-300); }

            /* Drawer footer (actions) */
            .nav-drawer-footer {
                padding: 20px 20px; flex-shrink: 0; position: relative; z-index: 2;
                border-top: 1px solid rgba(214,179,106,.12);
                background: rgba(7,55,53,.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
            }
            .nav-drawer-footer .nav-actions {
                display: flex; flex-direction: column; gap: 12px; width: 100%;
            }
            .nav-drawer-footer .btn-outline-nav,
            .nav-drawer-footer .btn-primary-nav {
                width: 100%; justify-content: center; text-align: center;
                padding: 16px; font-size: .95rem; font-weight: 600;
                letter-spacing: .02em;
            }
        }

        /* Desktop backdrop always hidden */
        .nav-backdrop { display: none; }
        @media(max-width:1080px) { .nav-backdrop { display: block; } }

        @media(max-width:480px) { .nav { padding: 14px 16px; } .nav.scrolled { padding: 12px 16px; } }

        /* ===== HERO ===== */
        .hero {
            position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
            overflow: hidden;
            background: linear-gradient(160deg, var(--teal-900) 0%, var(--teal-700) 40%, var(--teal-800) 70%, var(--teal-900) 100%);
        }

        /* Organic background shapes */
        .hero-shape {
            position: absolute; border-radius: 50%; pointer-events: none;
        }
        .hero-shape-1 {
            width: 600px; height: 600px; top: -200px; right: -150px;
            background: radial-gradient(circle, rgba(24,180,183,.18), transparent 70%);
            animation: shapeDrift1 14s ease-in-out infinite;
        }
        .hero-shape-2 {
            width: 400px; height: 400px; bottom: -100px; left: -100px;
            background: radial-gradient(circle, rgba(214,179,106,.13), transparent 70%);
            animation: shapeDrift2 11s ease-in-out 1.5s infinite;
        }
        .hero-shape-3 {
            width: 250px; height: 250px; top: 20%; left: 10%;
            background: radial-gradient(circle, rgba(255,255,255,.06), transparent 70%);
            animation: shapeDrift3 9s ease-in-out 3s infinite;
        }
        .hero-shape-4 {
            width: 180px; height: 180px; bottom: 25%; right: 15%;
            background: radial-gradient(circle, rgba(214,179,106,.1), transparent 70%);
            animation: shapeDrift4 12s ease-in-out 5s infinite;
        }
        @keyframes shapeDrift1 {
            0%, 100% { transform: translate(0,0) scale(1);      opacity: 1; }
            25%       { transform: translate(-30px,25px) scale(1.09); opacity: .75; }
            55%       { transform: translate(-10px,45px) scale(.94); opacity: 1; }
            80%       { transform: translate(22px,10px) scale(1.06); opacity: .85; }
        }
        @keyframes shapeDrift2 {
            0%, 100% { transform: translate(0,0) scale(1);      opacity: 1; }
            30%       { transform: translate(30px,-25px) scale(1.12); opacity: .7; }
            65%       { transform: translate(45px,15px) scale(.9);  opacity: .9; }
        }
        @keyframes shapeDrift3 {
            0%, 100% { transform: translate(0,0) scale(1);       opacity: 1; }
            35%       { transform: translate(18px,-30px) scale(1.18); opacity: .5; }
            70%       { transform: translate(-22px,18px) scale(.85); opacity: .8; }
        }
        @keyframes shapeDrift4 {
            0%, 100% { transform: translate(0,0) scale(1);       opacity: 1; }
            40%       { transform: translate(-20px,-28px) scale(1.22); opacity: .55; }
            72%       { transform: translate(14px,20px) scale(.82); opacity: .85; }
        }

        /* Large decorative circles */
        .hero-ring {
            position: absolute; border-radius: 50%; pointer-events: none;
            border: 1px solid rgba(255,255,255,.07);
            /* Arc glow — one gold side, one teal side — makes rotation visible */
            box-shadow:
                100px -60px 80px -20px rgba(214,179,106,.12),
                -100px 60px 80px -20px rgba(24,180,183,.08);
        }
        .hero-ring-1 {
            width: 500px; height: 500px; top: 50%; left: 50%;
            animation: ringOrbitCW 40s linear infinite;
        }
        .hero-ring-2 {
            width: 700px; height: 700px; top: 50%; left: 50%;
            animation: ringOrbitCCW 58s linear infinite;
        }
        .hero-ring-3 {
            width: 900px; height: 900px; top: 50%; left: 50%; opacity: .5;
            animation: ringOrbitCW 75s linear infinite;
        }
        @keyframes ringOrbitCW {
            from { transform: translate(-50%,-50%) rotate(0deg); }
            to   { transform: translate(-50%,-50%) rotate(360deg); }
        }
        @keyframes ringOrbitCCW {
            from { transform: translate(-50%,-50%) rotate(0deg); }
            to   { transform: translate(-50%,-50%) rotate(-360deg); }
        }

        /* Steam SVGs */
        .hero-steam-wrap {
            position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%);
            display: flex; gap: 20px; opacity: .5; pointer-events: none;
        }
        .hero-steam-curl {
            animation: steamRise 4s cubic-bezier(.45,0,.55,1) infinite;
            transform-origin: bottom center;
        }
        .hero-steam-curl:nth-child(1) { animation-delay: 0s; }
        .hero-steam-curl:nth-child(2) { animation-delay: 1.2s; }
        .hero-steam-curl:nth-child(3) { animation-delay: 2.4s; }
        @keyframes steamRise {
            0% { opacity: 0; transform: translateY(0) scaleX(1); }
            15% { opacity: .8; }
            100% { opacity: 0; transform: translateY(-50px) scaleX(1.3); }
        }

        .hero-content {
            position: relative; z-index: 2; text-align: center; color: #fff;
            padding: 0 24px; max-width: 860px;
            will-change: transform, opacity, filter;
        }
        .hero-amharic {
            font-family: var(--font-script); font-size: 2.4rem;
            color: var(--gold-300); margin-bottom: 6px;
            text-shadow: 0 2px 20px rgba(214,179,106,.3);
        }
        .hero h1 {
            font-family: var(--font-display); font-size: clamp(1.8rem, 5vw, var(--text-4xl));
            line-height: var(--leading-tight); font-weight: 500; margin: 0 0 20px;
        }
        .hero h1 .accent { color: var(--gold-300); font-style: italic; }
        .hero-sub {
            font-size: var(--text-md); opacity: .8; margin-bottom: 44px;
            letter-spacing: var(--tracking-wide); max-width: 500px; margin-left: auto; margin-right: auto;
        }
        .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
        .btn-gold {
            padding: 14px 36px; border-radius: var(--radius-pill); border: none;
            background: var(--color-accent); color: var(--neutral-900);
            font-weight: 700; font-size: var(--text-base); cursor: pointer;
            transition: all var(--duration-base) var(--ease-out);
            box-shadow: 0 4px 20px rgba(214,179,106,.3);
        }
        .btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(214,179,106,.5); background: var(--gold-700); color: #fff; }
        .btn-ghost {
            padding: 14px 36px; border-radius: var(--radius-pill);
            border: 1.5px solid rgba(255,255,255,.4); background: transparent;
            color: #fff; font-weight: 600; font-size: var(--text-base); cursor: pointer;
            transition: all var(--duration-base) var(--ease-out);
            backdrop-filter: blur(4px);
        }
        .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.7); }

        .hero-scroll {
            position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            color: rgba(255,255,255,.35); font-size: var(--text-xs); letter-spacing: var(--tracking-wider); text-transform: uppercase;
        }
        .hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold-500), transparent); animation: scrollPulse 2.5s ease-in-out infinite; }
        @keyframes scrollPulse { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: .3; transform: scaleY(.5); } }


        @media(max-width:640px) {
            .hero { min-height: 100svh; }
            .hero-amharic { font-size: 1.75rem; }
            .hero-ring-1 { width: 300px; height: 300px; }
            .hero-ring-2 { width: 450px; height: 450px; }
            .hero-ring-3 { width: 600px; height: 600px; }
            .hero-shape-1 { width: 300px; height: 300px; }
            .hero-shape-2 { width: 250px; height: 250px; }
        }

        /* ===== SECTION HEADING ===== */
        .sec-head { text-align: center; margin-bottom: var(--space-6); }
        .sec-eyebrow {
            font-size: var(--text-xs); font-weight: 600; letter-spacing: var(--tracking-wider);
            text-transform: uppercase; color: var(--color-primary); margin-bottom: 8px;
        }
        .sec-title {
            font-family: var(--font-display); font-size: var(--text-3xl);
            line-height: var(--leading-tight); color: var(--text-heading); font-weight: 500;
        }
        .sec-script { font-family: var(--font-script); font-size: 1.7rem; color: var(--color-accent); display: block; margin-bottom: 4px; }
        .sec-desc { font-size: var(--text-md); color: var(--text-muted); max-width: 560px; margin: 12px auto 0; line-height: var(--leading-relaxed); }

        /* ===== BRAND STORY ===== */
        .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
        @media(max-width:900px){ .story-grid { grid-template-columns: 1fr; gap: 40px; } }

        .story-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; }
        .story-visual-bg {
            position: absolute; width: 380px; height: 380px; border-radius: 50%;
            background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
            top: 50%; left: 50%; transform: translate(-50%, -50%);
        }
        .story-visual-ring {
            position: absolute; border-radius: 50%; border: 1px solid var(--teal-200);
            top: 50%; left: 50%; transform: translate(-50%, -50%);
        }
        .story-visual-ring-1 { width: 420px; height: 420px; opacity: .5; }
        .story-visual-ring-2 { width: 500px; height: 500px; opacity: .25; }
        .story-visual-ring-3 { width: 580px; height: 580px; opacity: .12; }

        .story-cup-wrap {
            position: relative; z-index: 2;
            width: 200px; height: 260px;
        }
        .story-cup-steam {
            position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
            display: flex; gap: 14px;
        }
        .story-cup-steam svg {
            animation: storySteamRise 3.8s ease-in-out infinite;
            transform-origin: bottom center;
        }
        .story-cup-steam svg:nth-child(1) { animation-delay: 0s; }
        .story-cup-steam svg:nth-child(2) { animation-delay: 1.2s; }
        .story-cup-steam svg:nth-child(3) { animation-delay: 2.4s; }
        @keyframes storySteamRise {
            0%   { transform: translateY(0)     scaleX(1);   opacity: 0; }
            10%  { opacity: .9; }
            35%  { transform: translateY(-16px) scaleX(1.25) translateX(6px);  opacity: .7; }
            68%  { transform: translateY(-34px) scaleX(.75)  translateX(-5px); opacity: .4; }
            100% { transform: translateY(-54px) scaleX(1.1)  translateX(3px);  opacity: 0; }
        }

        .story-badge-float {
            position: absolute; z-index: 3;
            background: var(--glass-bg); backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border); border-radius: var(--radius-md);
            padding: 20px 24px; text-align: center;
            box-shadow: var(--shadow-md);
        }
        .story-badge-float.top-right { top: 30px; right: 10px; }
        .story-badge-float.bottom-left { bottom: 40px; left: 10px; }
        .story-badge-num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--color-accent); line-height: 1; }
        .story-badge-label { font-size: var(--text-xs); color: var(--text-muted); margin-top: 4px; }

        .story-text h3 {
            font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600;
            color: var(--text-heading); margin-bottom: var(--space-3); line-height: var(--leading-snug);
        }
        .story-text h3 .accent { color: var(--color-primary); font-style: italic; }
        .story-text p { color: var(--text-body); line-height: var(--leading-relaxed); margin-bottom: var(--space-2); }
        .story-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: var(--space-4); }
        .story-feat { display: flex; align-items: center; gap: 12px; }
        .story-feat-icon {
            width: 44px; height: 44px; border-radius: var(--radius-sm);
            background: var(--teal-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
            transition: all var(--duration-base) var(--ease-out);
        }
        .story-feat:hover .story-feat-icon { background: var(--color-primary); }
        .story-feat:hover .story-feat-icon svg { color: #fff; }
        .story-feat-icon svg { width: 20px; height: 20px; color: var(--color-primary); transition: color var(--duration-fast); }
        .story-feat span { font-size: var(--text-sm); font-weight: 500; color: var(--text-heading); }

        .story-divider {
            width: 48px; height: 2px; background: var(--color-accent); margin: var(--space-3) 0;
            border-radius: 2px;
        }

        @media(max-width:900px) {
            .story-visual { min-height: 320px; }
            .story-visual-bg { width: 260px; height: 260px; }
            .story-visual-ring-1 { width: 300px; height: 300px; }
            .story-visual-ring-2 { width: 360px; height: 360px; }
            .story-visual-ring-3 { width: 420px; height: 420px; }
            .story-cup-wrap { width: 140px; height: 180px; }
            .story-badge-float.top-right { top: 10px; right: 0; padding: 14px 18px; }
            .story-badge-float.bottom-left { bottom: 20px; left: 0; padding: 14px 18px; }
            .story-badge-num { font-size: 1.6rem; }
        }

        /* ===== COFFEE CARDS ===== */
        .coffee-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        @media(max-width:992px){ .coffee-grid { grid-template-columns: repeat(2, 1fr); } }
        @media(max-width:640px){ .coffee-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
        .coffee-card {
            background: var(--color-surface); border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle); overflow: hidden; box-shadow: var(--shadow-sm);
            transition: all var(--duration-base) var(--ease-out);
            display: flex; flex-direction: column; cursor: pointer;
        }
        .coffee-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--teal-200); }
        .coffee-card-img {
            height: 200px; position: relative; overflow: hidden;
            background-size: cover; background-position: center;
            transition: transform var(--duration-slow) var(--ease-out);
        }
        .coffee-card:hover .coffee-card-img { transform: scale(1.04); }
        .coffee-card-badge {
            position: absolute; top: 12px; right: 12px;
            padding: 4px 12px; border-radius: var(--radius-pill);
            background: rgba(255,255,255,.95); backdrop-filter: blur(8px);
            font-size: var(--text-xs); font-weight: 700; color: var(--color-primary);
            z-index: 1;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        .coffee-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; background: var(--color-surface); }
        .coffee-card h3 { font-family: var(--font-display); font-size: var(--text-lg); color: var(--text-heading); margin: 0 0 8px; font-weight: 700; transition: color var(--duration-fast); }
        .coffee-card:hover h3 { color: var(--color-primary); }
        .coffee-card-meta { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 10px; }
        .coffee-card-notes { font-size: var(--text-sm); color: var(--text-body); font-style: italic; margin-bottom: 20px; line-height: 1.6; flex-grow: 1; }
        .coffee-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-subtle); padding-top: 16px; margin-top: auto; }
        .coffee-card-price { font-weight: 700; color: var(--color-primary-dark); font-size: var(--text-md); }
        .btn-order {
            padding: 8px 20px; border-radius: var(--radius-pill);
            border: 1.5px solid var(--color-primary); background: transparent;
            color: var(--color-primary); font-weight: 600; font-size: var(--text-xs);
            transition: all var(--duration-fast); cursor: pointer;
        }
        .btn-order:hover { background: var(--color-primary); color: #fff; box-shadow: 0 4px 12px rgba(15, 123, 120, 0.2); transform: translateY(-1px); }

        /* ===== PACKAGE SHOWCASE ===== */
        .coffee-intro { max-width: 640px; margin: 12px auto 0; text-align: center; color: var(--text-body); font-size: var(--text-sm); line-height: 1.7; }
        .pkg-showcase { display: grid; grid-template-columns: 300px 1fr; gap: 36px; align-items: center; margin-top: 32px; }
        .pkg-image-wrap { position: relative; }
        .pkg-image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: contain; max-height: 340px; }
        .pkg-cards { display: flex; flex-direction: column; gap: 16px; }
        .pkg-card { position: relative; display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: var(--color-surface); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); transition: all var(--duration-base) var(--ease-out); cursor: default; }
        .pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-primary); }
        .pkg-card--featured { border-color: var(--color-primary); background: linear-gradient(135deg, rgba(15,123,120,0.04), rgba(15,123,120,0.01)); }
        .pkg-card--featured:hover { box-shadow: 0 8px 30px rgba(15, 123, 120, 0.15); }
        .pkg-card-ribbon { position: absolute; top: -1px; right: 24px; background: var(--color-primary); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 14px 6px; border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
        .pkg-card-icon { flex-shrink: 0; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(15,123,120,0.08); color: var(--color-primary); }
        .pkg-card-icon svg { width: 26px; height: 26px; }
        .pkg-card--featured .pkg-card-icon { background: var(--color-primary); color: #fff; }
        .pkg-card-body { flex: 1; min-width: 0; }
        .pkg-card-body h3 { font-family: var(--font-display); font-size: var(--text-md); color: var(--text-heading); margin: 0 0 4px; font-weight: 700; }
        .pkg-card-body p { margin: 0; font-size: var(--text-xs); color: var(--text-muted); line-height: 1.5; }
        .pkg-card-price { flex-shrink: 0; font-weight: 800; font-size: var(--text-lg); color: var(--color-primary-dark); white-space: nowrap; }
        .pkg-card-order { flex-shrink: 0; padding: 8px 18px; background: var(--color-primary); color: #fff; border: none; border-radius: var(--radius-pill); font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700; cursor: pointer; transition: all var(--duration-fast); letter-spacing: .03em; text-transform: uppercase; }
        .pkg-card-order:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(15,123,120,.25); }
        .pkg-unit { font-size: var(--text-xs); font-weight: 500; color: var(--text-muted); }
        /* Package modal options */
        .modal-pkg-options { display: flex; flex-wrap: wrap; gap: 12px; margin: 16px 0; padding: 16px; background: var(--neutral-50); border-radius: var(--radius-md); border: 1px solid var(--border-subtle); }
        .pkg-opt-group { flex: 1; min-width: 140px; }
        .pkg-opt-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 6px; }
        .pkg-opt-select { width: 100%; padding: 10px 12px; border: 1px solid var(--border-subtle); border-radius: var(--radius-sm); background: var(--color-surface); color: var(--text-heading); font-family: var(--font-body); font-size: var(--text-sm); cursor: pointer; transition: border-color var(--duration-fast); appearance: auto; }
        .pkg-opt-select:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(15,123,120,.1); }
        @media(max-width:900px){ .pkg-showcase { grid-template-columns: 1fr; } .pkg-image-wrap { max-width: 320px; margin: 0 auto; } }
        @media(max-width:640px){ .pkg-card { flex-direction: column; text-align: center; gap: 12px; padding: 20px; } .pkg-card-price { font-size: var(--text-md); } .pkg-card-order { width: 100%; } .modal-pkg-options { flex-direction: column; } }

        /* ===== MENU ===== */
        .menu-tabs { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: var(--space-5); }
        .menu-tab {
            padding: 8px 20px; border-radius: var(--radius-pill); border: 1px solid var(--border-subtle);
            background: transparent; color: var(--text-muted); font-size: var(--text-sm); font-weight: 500;
            transition: all var(--duration-fast);
        }
        .menu-tab:hover { border-color: var(--color-primary); color: var(--color-primary); }
        .menu-tab.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
        .menu-filter-btn {
            padding: 8px 18px; border-radius: var(--radius-pill);
            border: 1.5px dashed var(--neutral-300); background: transparent;
            color: var(--text-muted); font-size: var(--text-sm); font-weight: 500;
            transition: all var(--duration-fast); cursor: pointer;
            opacity: .7;
        }
        .menu-filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); opacity: 1; }
        .menu-filter-btn.active {
            border-style: solid;
            background: rgba(72,187,120,.12);
            border-color: #48BB78;
            color: #276749;
            opacity: 1;
        }
        .menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        @media(max-width:992px){ .menu-grid { grid-template-columns: repeat(2, 1fr); } }
        @media(max-width:640px){ .menu-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }
        .menu-card {
            display: flex; flex-direction: column;
            background: var(--color-surface); border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle); overflow: hidden;
            box-shadow: var(--shadow-sm); transition: all var(--duration-base) var(--ease-out);
            position: relative; cursor: pointer;
        }
        .menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--teal-200); }
        .menu-card-img {
            height: 200px; position: relative; overflow: hidden;
            background-size: cover; background-position: center;
            background-color: var(--teal-50);
            transition: transform var(--duration-slow) var(--ease-out);
        }
        .menu-card:hover .menu-card-img { transform: scale(1.04); }
        .menu-card-tags {
            position: absolute; top: 12px; left: 12px;
            display: flex; flex-wrap: wrap; gap: 6px; z-index: 2;
        }
        .menu-card-tag {
            padding: 4px 10px; border-radius: var(--radius-pill);
            font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.05em; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(4px);
        }
        /* Tag colors */
        .menu-card-tag.traditional { background: rgba(214,179,106,.9); color: var(--neutral-900); }
        .menu-card-tag.vegetarian { background: rgba(72,187,120,.9); color: white; }
        .menu-card-tag.spicy { background: rgba(229,62,62,.9); color: white; }
        .menu-card-tag.popular { background: rgba(24,180,183,.9); color: white; }
        .menu-card-tag.chef-s-special { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: white; }
        .menu-card-tag.quick-bite { background: rgba(66,153,225,.9); color: white; }
        .menu-card-tag.feast { background: rgba(159,122,234,.9); color: white; }
        .menu-card-tag.sweet { background: rgba(237,137,189,.9); color: white; }
        .menu-card-tag.healthy { background: rgba(49,151,149,.9); color: white; }
        .menu-card-tag.must-try { background: linear-gradient(135deg, var(--teal-500), var(--teal-700)); color: white; }
        .menu-card-tag.brewed-fresh { background: rgba(203,110,61,.9); color: white; }
        .menu-card-tag.aromatic { background: rgba(236,108,127,.9); color: white; }
        .menu-card-tag.premium { background: rgba(45,55,72,.9); color: white; }
        .menu-card-tag.local-favorite { background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); color: white; }
        .menu-card-tag.single-origin { background: linear-gradient(135deg, var(--teal-500), var(--color-primary-dark)); color: white; }
        .menu-card-tag.light-roast { background: rgba(236,201,75,.9); color: var(--neutral-900); }
        .menu-card-tag.medium-roast { background: rgba(214,179,106,.9); color: var(--neutral-900); }
        .menu-card-tag.dark-roast { background: rgba(160,130,70,.9); color: white; }
        .menu-card-tag.medium-dark { background: rgba(180,150,85,.9); color: white; }
        .menu-card-tag.award-winning { background: linear-gradient(135deg, var(--gold-500), #C49B2E); color: white; }
        .menu-card-tag.fruity { background: rgba(236,108,127,.9); color: white; }
        .menu-card-tag.bold { background: rgba(113,63,18,.9); color: white; }
        .menu-card-tag.balanced { background: rgba(72,187,120,.9); color: white; }
        .menu-card-tag.mild { background: rgba(49,151,149,.9); color: white; }
        .menu-card-tag.raw { background: rgba(229,62,62,.8); color: white; }
        .menu-card-tag.vegan { background: rgba(122,197,73,.9); color: white; }
        .menu-card-tag.hearty { background: rgba(200,135,55,.9); color: white; }
        .menu-card-tag.snack { background: rgba(159,122,234,.9); color: white; }
        .menu-card-tag.chef-special { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: white; }

        /* ===== SKELETON LOADING ===== */
        .menu-skeleton-card {
            display: flex; flex-direction: column;
            background: var(--color-surface); border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle); overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .menu-skeleton-img {
            height: 200px;
            background: linear-gradient(135deg, var(--neutral-100) 30%, var(--neutral-50) 50%, var(--neutral-100) 70%);
            background-size: 200% 100%;
            animation: menuShimmer 1.8s ease-in-out infinite;
        }
        .menu-skeleton-body {
            padding: 24px; flex: 1; display: flex; flex-direction: column;
        }
        .menu-skeleton-line {
            height: 14px; border-radius: 8px; margin-bottom: 12px;
            background: linear-gradient(90deg, var(--neutral-100) 30%, var(--neutral-50) 50%, var(--neutral-100) 70%);
            background-size: 200% 100%;
            animation: menuShimmer 1.8s ease-in-out infinite;
        }
        .menu-skeleton-line-short { width: 55%; margin-bottom: 18px; }
        .menu-skeleton-line-desc { width: 90%; height: 10px; margin-bottom: 8px; }
        .menu-skeleton-line-desc:nth-child(3) { width: 70%; }
        .menu-skeleton-line-desc:nth-child(4) { width: 80%; margin-bottom: 0; }
        .menu-skeleton-footer {
            display: flex; justify-content: space-between; align-items: center;
            margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border-subtle);
        }
        .menu-skeleton-price {
            width: 80px; height: 18px; border-radius: 8px;
            background: linear-gradient(90deg, var(--neutral-100) 30%, var(--neutral-50) 50%, var(--neutral-100) 70%);
            background-size: 200% 100%;
            animation: menuShimmer 1.8s ease-in-out infinite;
        }
        .menu-skeleton-btn {
            width: 75px; height: 32px; border-radius: var(--radius-pill);
            background: linear-gradient(90deg, var(--neutral-100) 30%, var(--neutral-50) 50%, var(--neutral-100) 70%);
            background-size: 200% 100%;
            animation: menuShimmer 1.8s ease-in-out infinite;
        }
        @keyframes menuShimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        .menu-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; position: relative; z-index: 1; background: var(--color-surface); }
        .menu-card-name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--text-heading); margin-bottom: 8px; transition: color var(--duration-fast); }
        .menu-card:hover .menu-card-name { color: var(--color-primary); }
        .menu-card-desc { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6; flex-grow: 1; margin-bottom: 20px; }
        .menu-card-footer {
            display: flex; justify-content: space-between; align-items: center;
            margin-top: auto; padding-top: 16px;
            border-top: 1px solid var(--border-subtle);
        }
        .menu-card-price { font-weight: 700; color: var(--color-primary-dark); font-size: var(--text-md); white-space: nowrap; }
        .btn-menu-order {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 8px 18px; border-radius: var(--radius-pill);
            border: 1.5px solid var(--color-primary); background: transparent;
            color: var(--color-primary); font-weight: 600; font-size: var(--text-xs);
            transition: all var(--duration-fast) var(--ease-standard); cursor: pointer;
        }
        .btn-menu-order:hover { background: var(--color-primary); color: #fff; box-shadow: 0 4px 12px rgba(15, 123, 120, 0.2); transform: translateY(-1px); }
        .btn-menu-order svg { width: 14px; height: 14px; transition: transform var(--duration-fast); }
        .btn-menu-order:hover svg { transform: rotate(90deg); }

        /* ===== DISH CARDS ===== */
        .dish-card {
            background: var(--color-surface); border-radius: var(--radius-md);
            border: 1px solid var(--border-subtle); overflow: hidden;
            box-shadow: var(--shadow-sm); transition: all var(--duration-base) var(--ease-out);
            display: flex; flex-direction: column; cursor: pointer;
        }
        .dish-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--teal-200); }
        .dish-card-img { height: 200px; position: relative; overflow: hidden; background-size: cover; background-position: center; transition: transform var(--duration-slow) var(--ease-out); }
        .dish-card:hover .dish-card-img { transform: scale(1.04); }
        .dish-card-badge {
            position: absolute; top: 12px; left: 12px;
            padding: 4px 12px; border-radius: var(--radius-pill);
            background: var(--color-primary); color: #fff;
            font-size: var(--text-xs); font-weight: 700;
            z-index: 1;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        .btn-full {
            width: 100%; padding: 12px; border-radius: var(--radius-pill); border: none;
            background: var(--color-primary); color: #fff; font-weight: 600; font-size: var(--text-sm);
            transition: all var(--duration-fast) var(--ease-standard); cursor: pointer;
            margin-top: 16px; display: block; text-align: center;
        }
        .btn-full:hover { background: var(--color-primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(15, 123, 120, 0.2); }
        .btn-full:active { transform: scale(0.98); }
        .dish-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; background: var(--color-surface); }
        .dish-card-name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: var(--text-heading); margin-bottom: 8px; transition: color var(--duration-fast); }
        .dish-card:hover .dish-card-name { color: var(--color-primary); }
        .dish-card-meta { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 12px; flex-grow: 1; }
        .dish-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-subtle); padding-top: 16px; margin-top: auto; }
        .dish-card-price { font-weight: 700; color: var(--color-primary-dark); font-size: var(--text-md); }
        .dish-card-cal { font-size: var(--text-xs); color: var(--text-muted); font-weight: 500; }

        /* ===== CEREMONY (dark section) ===== */
        .ceremony {
            background: linear-gradient(135deg, var(--teal-900), var(--teal-700));
            color: #fff; position: relative; overflow: hidden;
        }
        .ceremony .sec-eyebrow { color: var(--gold-300); }
        .ceremony .sec-title { color: #fff; }
        .ceremony .sec-desc { color: rgba(255,255,255,.7); }
        .ceremony-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
        @media(max-width:900px){ .ceremony-grid { grid-template-columns: 1fr; gap: 32px; } }
        .ceremony-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
        .ceremony-img img { width: 100%; height: 100%; object-fit: cover; }
        .ceremony-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
        .ceremony-step { display: flex; gap: 16px; align-items: flex-start; }
        .ceremony-step-num {
            width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
            background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
            display: flex; align-items: center; justify-content: center;
            font-family: var(--font-display); font-size: var(--text-sm); font-weight: 600; color: var(--gold-300);
        }
        .ceremony-step-text h4 { font-family: var(--font-display); font-size: var(--text-md); margin: 0 0 4px; font-weight: 600; }
        .ceremony-step-text p { font-size: var(--text-sm); opacity: .7; margin: 0; line-height: 1.6; }

        /* ===== GALLERY ===== */
        .gallery-grid {
            display: grid; grid-template-columns: repeat(4, 1fr);
            grid-auto-rows: 200px; gap: 16px;
        }
        .gallery-item { border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; background: var(--neutral-100); }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); will-change: transform; }
        .gallery-item:hover img { transform: scale(1.08); }
        .gallery-item .gallery-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(7,55,53,.82) 0%, rgba(7,55,53,.1) 50%, transparent 100%);
            opacity: 0; transition: opacity var(--duration-base) var(--ease-out);
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: 24px 20px; z-index: 2;
        }
        .gallery-item:hover .gallery-overlay { opacity: 1; }
        .gallery-overlay .g-title {
            font-family: var(--font-display); font-size: var(--text-lg); color: #fff;
            font-weight: 600; transform: translateY(8px);
            transition: transform var(--duration-base) var(--ease-out);
        }
        .gallery-item:hover .gallery-overlay .g-title { transform: translateY(0); }
        .gallery-overlay .g-desc {
            font-size: var(--text-xs); color: rgba(255,255,255,.7);
            margin-top: 4px; transform: translateY(8px);
            transition: transform var(--duration-base) var(--ease-out) .05s;
        }
        .gallery-item:hover .gallery-overlay .g-desc { transform: translateY(0); }
        .gallery-item .gallery-zoom {
            position: absolute; top: 16px; right: 16px; z-index: 3;
            width: 36px; height: 36px; border-radius: 50%;
            background: rgba(255,255,255,.2); backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,.15);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; transform: scale(.7);
            transition: all var(--duration-base) var(--ease-out);
            color: #fff; font-size: 16px;
        }
        .gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
        .gallery-item .gallery-zoom:hover { background: var(--gold-500); color: var(--teal-900); transform: scale(1.1) !important; }

        /* Grid spans */
        .gallery-item.tall { grid-row: span 2; min-height: 0; }
        .gallery-item.wide { grid-column: span 2; }
        .gallery-item.featured { grid-column: span 2; grid-row: span 2; min-height: 0; }
        .gallery-item.full { grid-column: 1 / -1; height: 180px; }

        @media(max-width:900px){
            .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
            .gallery-item.featured { min-height: 0; }
            .gallery-item.wide { grid-column: span 1; }
            .gallery-item.full { grid-column: span 1; height: auto; grid-row: span 1; }
            .gallery-item.tall { grid-row: span 2; }
        }
        @media(max-width:480px){
            .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; gap: 12px; }
            .gallery-item.featured { grid-column: span 1; grid-row: span 1; }
            .gallery-item.wide { grid-column: span 1; }
            .gallery-item.tall { grid-row: span 1; }
            .gallery-item.full { grid-column: span 1; }
        }

        /* ===== LIGHTBOX ===== */
        .lightbox {
            position: fixed; inset: 0; z-index: 2000;
            background: rgba(7, 55, 53, 0.92);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden;
            transition: opacity .4s var(--ease-out), visibility .4s;
            cursor: zoom-out;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            will-change: opacity;
        }
        .lightbox.open { opacity: 1; visibility: visible; }

        .lightbox-inner {
            position: relative; max-width: 90vw; max-height: 90vh;
            display: flex; flex-direction: column; align-items: center;
            cursor: default;
        }

        .lightbox-img-wrap {
            position: relative; max-width: 100%; max-height: 75vh;
            border-radius: var(--radius-md); overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,.5);
        }
        .lightbox-img-wrap img {
            max-width: 100%; max-height: 75vh;
            display: block; object-fit: contain;
            background: rgba(0,0,0,.15);
        }

        .lightbox-info {
            display: flex; align-items: center; justify-content: center;
            gap: 20px; margin-top: 20px;
            color: #fff; text-align: center;
        }
        .lightbox-info .lb-counter {
            font-size: var(--text-xs); font-weight: 600;
            color: var(--gold-300); letter-spacing: .08em;
            background: rgba(255,255,255,.08);
            padding: 4px 14px; border-radius: var(--radius-pill);
            white-space: nowrap;
        }
        .lightbox-info .lb-title {
            font-family: var(--font-display); font-size: var(--text-md);
            font-weight: 600;
        }
        .lightbox-info .lb-desc {
            font-size: var(--text-sm); color: rgba(255,255,255,.6);
            display: none;
        }

        /* Lightbox nav arrows */
        .lightbox-nav {
            position: absolute; top: 50%; transform: translateY(-50%);
            z-index: 10;
            width: 52px; height: 52px; border-radius: 50%;
            border: 1px solid rgba(255,255,255,.15);
            background: rgba(255,255,255,.08);
            backdrop-filter: blur(12px);
            color: #fff; font-size: 26px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; opacity: 0;
            transition: all var(--duration-fast) var(--ease-out);
            user-select: none;
        }
        .lightbox:hover .lightbox-nav { opacity: 1; }
        .lightbox-nav:hover { background: rgba(255,255,255,.2); border-color: var(--gold-300); color: var(--gold-300); transform: translateY(-50%) scale(1.08); }
        .lightbox-nav:active { transform: translateY(-50%) scale(0.95); }
        .lightbox-nav.lb-prev { left: 24px; }
        .lightbox-nav.lb-next { right: 24px; }

        .lightbox-close {
            position: absolute; top: 24px; right: 24px; z-index: 10;
            width: 44px; height: 44px; border-radius: 50%;
            background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
            color: #fff; font-size: 28px; line-height: 1;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all var(--duration-fast);
            opacity: 0;
        }
        .lightbox:hover .lightbox-close { opacity: 1; }
        .lightbox-close:hover { background: rgba(255,255,255,.2); transform: rotate(90deg) scale(1.05); }

        @media(max-width:768px) {
            .lightbox-nav { width: 44px; height: 44px; font-size: 20px; }
            .lightbox-nav.lb-prev { left: 8px; }
            .lightbox-nav.lb-next { right: 8px; }
            .lightbox-close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 22px; }
            .lightbox-info { flex-direction: column; gap: 8px; }
            .lightbox-info .lb-desc { display: block; }
            .lightbox-img-wrap { max-height: 65vh; }
        }

        /* ===== TESTIMONIALS ===== */
        #testimonials { background: var(--color-background); }
        .testimonials-outer { position: relative; overflow: hidden; }
        .testimonials-outer::before,
        .testimonials-outer::after {
            content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
        }
        .testimonials-outer::before { left: 0; background: linear-gradient(to right, var(--color-background), transparent); }
        .testimonials-outer::after { right: 0; background: linear-gradient(to left, var(--color-background), transparent); }
        .testimonials-track { display: flex; gap: 24px; padding: 16px 0; width: max-content; will-change: transform; }
        .testimonial-card {
            min-width: 380px; max-width: 380px; flex-shrink: 0;
            background: var(--color-surface); border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle); padding: 36px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out);
            position: relative; overflow: hidden;
        }
        .testimonial-card::before {
            content: '\201C'; position: absolute; top: 16px; right: 24px;
            font-family: var(--font-display); font-size: 96px; line-height: 1;
            color: var(--color-primary); opacity: .07; pointer-events: none;
        }
        .testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
        @media(max-width:480px){ .testimonial-card { min-width: 300px; max-width: 300px; padding: 24px; } }
        .testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
        .testimonial-stars svg { width: 17px; height: 17px; fill: var(--color-accent); }
        .testimonial-quote {
            font-family: var(--font-display); font-size: .9375rem; font-style: italic;
            color: var(--text-heading); line-height: 1.75; margin-bottom: 24px;
        }
        .testimonial-author { display: flex; align-items: center; gap: 14px; }
        .testimonial-avatar {
            width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
            background: var(--teal-50); flex-shrink: 0;
            border: 2px solid var(--border-subtle);
        }
        .testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
        .testimonial-name { font-weight: 600; font-size: var(--text-sm); color: var(--text-heading); }
        .testimonial-role { font-size: var(--text-xs); color: var(--color-primary); margin-top: 2px; }

        /* ===== STATS ===== */
        .stats {
            background: var(--teal-900);
            padding: var(--space-7) var(--gutter);
            position: relative; overflow: hidden;
        }
        .stats::before {
            content: 'ፉፉቱ ኮፊ'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
            font-size: 160px; font-weight: 700; color: rgba(255,255,255,.03);
            pointer-events: none; white-space: nowrap; line-height: 1;
        }
        .stats-grid { display: flex; justify-content: center; gap: 0; flex-wrap: wrap; position: relative; z-index: 1; }
        .stat {
            text-align: center; flex: 1; min-width: 140px;
            padding: var(--space-3) var(--space-4);
            border-right: 1px solid rgba(255,255,255,.08);
        }
        .stat:last-child { border-right: none; }
        @media(max-width:640px){ .stat { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: var(--space-3) var(--space-2); } }
        .stat-value { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; color: var(--gold-300); line-height: 1; }
        .stat-label { font-size: var(--text-sm); color: rgba(255,255,255,.55); margin-top: 10px; letter-spacing: .03em; }

        /* ===== RESERVATION ===== */
        .res-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
        @media(max-width:900px){ .res-grid { grid-template-columns: 1fr; gap: 32px; } }
        .res-info h3 { font-family: var(--font-display); font-size: var(--text-2xl); color: var(--text-heading); margin-bottom: 16px; line-height: 1.2; }
        .res-info p { color: var(--text-body); line-height: var(--leading-relaxed); margin-bottom: var(--space-4); }
        .res-details { display: flex; flex-direction: column; gap: 16px; }
        .res-detail {
            display: flex; align-items: center; gap: 16px;
            padding: 16px; border-radius: var(--radius-md);
            background: var(--color-surface); border: 1px solid var(--border-subtle);
            transition: box-shadow var(--duration-fast), transform var(--duration-fast);
        }
        .res-detail:hover { box-shadow: var(--shadow-sm); transform: translateX(4px); }
        .res-detail-icon {
            width: 44px; height: 44px; border-radius: var(--radius-sm);
            background: var(--teal-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .res-detail-icon svg { width: 20px; height: 20px; color: var(--color-primary); stroke: var(--color-primary); }
        .res-detail-text strong { display: block; font-size: var(--text-sm); font-weight: 600; color: var(--text-heading); margin-bottom: 2px; }
        .res-detail-text span { font-size: var(--text-sm); color: var(--text-muted); }
        .res-form {
            background: var(--color-surface); border-radius: var(--radius-lg);
            padding: var(--space-5); box-shadow: var(--shadow-md);
        }
        .res-form h4 { font-family: var(--font-display); font-size: var(--text-xl); color: var(--text-heading); margin-bottom: var(--space-3); }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
        @media(max-width:640px){ .form-row { grid-template-columns: 1fr; } }
        .form-group { display: flex; flex-direction: column; gap: 6px; }
        .form-group.full { grid-column: span 2; }
        @media(max-width:640px){ .form-group.full { grid-column: span 1; } }
        .form-group label { font-size: var(--text-sm); font-weight: 500; color: var(--text-heading); }
        .form-group input, .form-group select, .form-group textarea {
            padding: 12px 16px; border: 1.5px solid var(--border-subtle); border-radius: var(--radius-sm);
            font-family: var(--font-body); font-size: var(--text-base); color: var(--text-heading);
            background: var(--color-background); transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
        }
        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(15,123,120,.12);
        }
        .form-group textarea { resize: vertical; min-height: 80px; }
        .form-submit {
            width: 100%; padding: 14px; border-radius: var(--radius-sm); border: none;
            background: var(--color-primary); color: #fff; font-weight: 600; font-size: var(--text-base);
            transition: all var(--duration-base) var(--ease-out); margin-top: 8px;
        }
        .form-submit:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

        /* ===== FOOTER ===== */
        .footer {
            position: relative;
            background: var(--teal-900); color: rgba(255,255,255,.7);
            padding: var(--space-6) var(--gutter) var(--space-3);
            overflow: hidden;
        }
        .footer-sweep {
            position: absolute; top: 0; left: 0;
            height: 2px; width: 0;
            background: linear-gradient(90deg, transparent 0%, var(--gold-500) 20%, var(--gold-300) 50%, var(--gold-500) 80%, transparent 100%);
            z-index: 1; pointer-events: none;
        }
        .footer-glow {
            position: absolute; inset: 0;
            background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(214,179,106,.06), transparent 70%);
            pointer-events: none; opacity: 0;
        }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: var(--space-4); }
        @media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
        @media(max-width:480px){ .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
        .footer-brand p { font-size: var(--text-sm); line-height: var(--leading-relaxed); max-width: 280px; }
        .footer-logo-img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; border: 1.5px solid rgba(255,255,255,.2); }
        .footer-brand-name { font-family: var(--font-display); font-size: var(--text-lg); color: #fff; font-weight: 600; margin-bottom: 2px; }
        .footer-am { display: block; font-size: var(--text-xs); color: var(--gold-300); letter-spacing: .06em; margin-bottom: 12px; }
        .footer-social { display: flex; gap: 12px; margin-top: 16px; }
        .footer-social a {
            width: 40px; height: 40px; border-radius: 50%;
            background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
            transition: all var(--duration-fast);
        }
        .footer-social a:hover { background: var(--color-accent); transform: translateY(-3px); }
        .footer-social svg { width: 18px; height: 18px; color: #fff; }
        .footer-col h4 { font-family: var(--font-display); font-size: var(--text-base); color: #fff; margin-bottom: 16px; font-weight: 600; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 8px; }
        .footer-col a { font-size: var(--text-sm); color: rgba(255,255,255,.6); transition: color var(--duration-fast); }
        .footer-col a:hover { color: var(--gold-300); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px;
            display: flex; justify-content: space-between; align-items: center; font-size: var(--text-sm);
        }
        @media(max-width:480px){ .footer-bottom { flex-direction: column; gap: 6px; text-align: center; } }
        /* ===== DETAIL MODAL ===== */
        /* ===== DETAIL MODAL ===== */
        .modal-backdrop {
            position: fixed; inset: 0; z-index: 1500;
            background: var(--modal-overlay);
            backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
            display: flex; align-items: center; justify-content: center;
            opacity: 0; visibility: hidden;
            transition: opacity var(--duration-base) var(--ease-out), visibility var(--duration-base);
            padding: var(--space-3);
        }
        .modal-backdrop.open { opacity: 1; visibility: visible; }
        .modal-content {
            position: relative; width: 100%; max-width: var(--modal-max-w);
            max-height: 85dvh; overflow-y: auto; overflow-x: hidden;
            background: var(--color-surface); border-radius: var(--radius-lg);
            border: 1px solid var(--border-subtle);
            box-shadow: var(--shadow-lg);
            transform: scale(0.95) translateY(10px);
            transition: transform var(--duration-base) var(--ease-out);
        }
        .modal-backdrop.open .modal-content { transform: scale(1) translateY(0); }
        .modal-close {
            position: absolute; top: var(--space-2); right: var(--space-2);
            width: var(--modal-close-size); height: var(--modal-close-size);
            border-radius: var(--radius-circle);
            background: var(--teal-50); border: none;
            color: var(--color-primary); font-size: var(--text-xl); display: flex;
            align-items: center; justify-content: center; cursor: pointer;
            transition: all var(--duration-fast); z-index: 10;
        }
        .modal-close:hover { background: var(--color-primary); color: var(--neutral-0); transform: scale(1.05); }
        .modal-grid { display: grid; grid-template-columns: 1fr 1.1fr; min-height: var(--modal-min-h); }
        .modal-image-side { background-size: cover; background-position: center; position: relative; min-height: 300px; overflow: hidden; }
        /* Gradient scrim behind the image action overlay */
        .modal-image-side::before {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(4,35,33,.82) 0%, rgba(4,35,33,.3) 52%, transparent 100%);
            pointer-events: none; z-index: 1;
        }
        /* Action bar: overlays image on desktop, sticky footer on mobile */
        .modal-image-action {
            position: absolute; bottom: 0; left: 0; z-index: 2;
            width: calc(100% / 2.1); /* matches 1fr in 1fr 1.1fr grid */
            padding: 16px 18px 18px;
        }
        .modal-image-action .modal-interactive {
            display: flex; align-items: center; justify-content: space-between;
            margin-bottom: 12px; border-top: none; padding-top: 0;
        }
        .modal-image-action .quantity-control {
            background: rgba(255,255,255,.15);
            border-color: rgba(255,255,255,.3);
        }
        .modal-image-action .btn-qty { color: #fff; }
        .modal-image-action #modalQty { color: #fff; }
        .modal-image-action .price-label { color: rgba(255,255,255,.7); }
        .modal-image-action .price-value { color: #fff; font-size: var(--text-sm); font-weight: 600; }
        .modal-info-side { padding: var(--space-4); display: flex; flex-direction: column; gap: 2px; overflow-y: auto; }
        .modal-tags-container { display: flex; flex-wrap: wrap; gap: var(--space-1); margin-bottom: var(--space-2); }
        .modal-title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
        .modal-meta-text { font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--color-primary); margin-bottom: var(--space-2); }
        .modal-desc-text { font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-relaxed); margin-bottom: var(--space-4); }
        .modal-interactive { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
        .quantity-control { display: flex; align-items: center; gap: var(--space-2); background: var(--teal-50); padding: 6px var(--space-2); border-radius: var(--radius-pill); border: 1px solid var(--teal-100); }
        .btn-qty { background: transparent; border: none; color: var(--color-primary); font-size: var(--text-md); font-weight: 700; width: var(--space-3); height: var(--space-3); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform var(--duration-fast); }
        .btn-qty:hover { transform: scale(1.2); }
        #modalQty { font-size: var(--text-base); font-weight: 700; color: var(--text-heading); min-width: 20px; text-align: center; }
        .modal-price-calc { text-align: right; }
        .price-label { display: block; font-size: var(--text-xs); color: var(--text-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: var(--tracking-wide); }
        .price-value { font-size: var(--text-sm); font-weight: 700; color: var(--color-primary-dark); }
        .btn-modal-action {
            width: 100%; padding: var(--space-2); border-radius: var(--radius-pill); border: none;
            background: var(--color-primary); color: var(--neutral-0); font-weight: 600; font-size: var(--text-base);
            transition: background .25s ease, transform .18s ease, box-shadow .18s ease; cursor: pointer;
            box-shadow: var(--shadow-primary-sm);
            display: flex; align-items: center; justify-content: center; gap: 8px;
        }
        .btn-modal-action:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-primary-md); }
        .btn-modal-action:active { transform: translateY(0); }
        .btn-modal-action.added {
            background: #2d7a4f; pointer-events: none;
            animation: btn-pop .25s ease;
        }
        @keyframes btn-pop {
            0%   { transform: scale(1); }
            40%  { transform: scale(1.04); }
            100% { transform: scale(1); }
        }
        /* Cart FAB bounce when item is added */
        @keyframes fab-bounce {
            0%,100% { transform: scale(1); }
            30%     { transform: scale(1.22); }
            60%     { transform: scale(.93); }
            80%     { transform: scale(1.07); }
        }
        .cart-fab.bounce { animation: fab-bounce .5s ease; }

        /* ===== MODAL DETAILS BAR ===== */
        .modal-details-bar {
            display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
            margin-bottom: var(--space-3); padding: var(--space-2) 0;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .modal-detail-item {
            display: flex; align-items: center; gap: 10px;
        }
        .modal-detail-icon {
            font-size: 1.15rem; line-height: 1; flex-shrink: 0;
        }
        .modal-detail-label {
            display: block; font-size: .65rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: .08em;
            color: var(--text-muted); margin-bottom: 1px;
        }
        .modal-detail-value {
            font-size: var(--text-sm); font-weight: 600; color: var(--text-heading);
        }
        .modal-detail-value.spice-mild { color: #48BB78; }
        .modal-detail-value.spice-medium { color: #D69E2E; }
        .modal-detail-value.spice-hot { color: #E53E3E; }
        .modal-detail-value.spice-very-hot { color: #9B2C2C; }

        /* ===== MODAL FLAVOR NOTES ===== */
        .modal-flavor-section {
            margin-bottom: var(--space-3);
        }
        .modal-flavor-label {
            display: block; font-size: .65rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: .08em;
            color: var(--color-primary); margin-bottom: 4px;
        }
        .modal-flavor-text {
            font-size: var(--text-sm); font-style: italic;
            color: var(--text-body); line-height: var(--leading-relaxed);
            padding: 8px 12px; background: var(--teal-50);
            border-radius: var(--radius-sm);
            border-left: 3px solid var(--color-primary);
        }

        /* ===== MODAL ALLERGENS ===== */
        .modal-allergens-text {
            font-size: var(--text-xs); color: var(--text-muted);
            font-weight: 500;
        }
        .modal-allergens-text:not(:empty) {
            color: var(--neutral-700);
        }
        /* ===== ORDER CART ===== */
        .cart-fab {
            position: fixed; bottom: 24px; right: 24px; z-index: 1500;
            width: 60px; height: 60px; border-radius: 50%;
            border: none; background: var(--color-primary); color: #fff;
            display: flex; align-items: center; justify-content: center;
            box-shadow: var(--shadow-lg); cursor: pointer;
            transition: transform var(--duration-fast), background var(--duration-fast);
        }
        .cart-fab:hover { transform: scale(1.06); background: var(--color-primary-dark); }
        .cart-fab svg { width: 26px; height: 26px; }
        .cart-count {
            position: absolute; top: -4px; right: -4px;
            background: var(--gold-500); color: var(--neutral-900);
            font-size: 12px; font-weight: 700; min-width: 22px; height: 22px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            border: 2px solid #fff;
        }
        .cart-overlay {
            position: fixed; inset: 0; background: rgba(7,55,53,.45);
            opacity: 0; visibility: hidden; transition: all var(--duration-base); z-index: 1800;
        }
        .cart-overlay.open { opacity: 1; visibility: visible; }
        .cart-drawer {
            position: fixed; top: 0; right: 0; height: 100%; width: 380px; max-width: 90vw;
            background: var(--neutral-0); box-shadow: -8px 0 32px rgba(0,0,0,.2);
            transform: translateX(100%); transition: transform var(--duration-base) var(--ease-out);
            z-index: 1900; display: flex; flex-direction: column;
        }
        .cart-drawer.open { transform: translateX(0); }
        .cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--border-subtle); }
        .cart-header h3 { font-family: var(--font-display); font-size: var(--text-lg); margin: 0; color: var(--text-heading); }
        .cart-close { background: none; border: none; font-size: 28px; line-height: 1; color: var(--text-muted); cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; }
        .cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 14px; }
        .cart-empty { color: var(--text-muted); text-align: center; margin-top: 40px; font-size: var(--text-sm); }
        .cart-item { display: flex; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--border-subtle); }
        .cart-item-img { width: 54px; height: 54px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
        .cart-item-info { flex: 1; min-width: 0; }
        .cart-item-name { font-weight: 600; font-size: var(--text-sm); color: var(--text-heading); }
        .cart-item-price { font-size: var(--text-xs); color: var(--text-muted); }
        .cart-item-qty { display: flex; align-items: center; gap: 8px; }
        .cart-item-qty button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-subtle); background: var(--neutral-0); color: var(--color-primary); font-size: 16px; line-height: 1; cursor: pointer; }
        .cart-item-qty span { min-width: 18px; text-align: center; font-weight: 600; font-size: var(--text-sm); }
        .cart-footer { padding: 20px 24px; border-top: 1px solid var(--border-subtle); }
        .cart-total-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-weight: 700; font-size: var(--text-md); color: var(--text-heading); }
        .cart-submit { width: 100%; padding: 14px; border: none; border-radius: var(--radius-pill); background: var(--color-primary); color: #fff; font-weight: 600; font-size: var(--text-sm); cursor: pointer; transition: background var(--duration-fast); }
        .cart-submit:hover { background: var(--color-primary-dark); }
        .cart-submit:disabled { background: var(--neutral-300); cursor: not-allowed; }
        .cart-note { font-size: var(--text-xs); color: var(--text-muted); text-align: center; margin: 10px 0 0; }
        /* Order confirmation panel */
        .cart-confirm {
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            padding: 40px 24px; text-align: center; gap: 12px; flex: 1;
        }
        .cart-confirm-icon { margin-bottom: 8px; }
        .cart-confirm-icon svg { width: 56px; height: 56px; }
        .cart-confirm-title { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; color: var(--text-heading); }
        .cart-confirm-msg { font-size: var(--text-sm); color: var(--text-body); }
        .cart-confirm-ref {
            display: flex; flex-direction: column; align-items: center; gap: 4px;
            background: var(--teal-50); border: 1px solid var(--teal-200);
            border-radius: var(--radius-md); padding: 16px 32px; margin: 8px 0;
        }
        .cart-confirm-ref-label { font-size: var(--text-xs); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--text-muted); }
        .cart-confirm-ref-code { font-family: ui-monospace, 'Courier New', monospace; font-size: var(--text-xl); font-weight: 700; color: var(--color-primary); letter-spacing: 0.05em; }
        .cart-confirm-note { font-size: var(--text-xs); color: var(--text-muted); }
        .cart-confirm-close {
            margin-top: 8px; padding: 12px 40px; border-radius: var(--radius-pill);
            background: var(--color-primary); color: #fff; border: none; font-size: var(--text-sm); font-weight: 600;
            cursor: pointer; transition: background var(--duration-fast);
        }
        .cart-confirm-close:hover { background: var(--color-primary-dark); }
        .cart-customer-fields { padding: 0 0 14px; display: flex; flex-direction: column; gap: 8px; }
        .cart-customer-fields input, .cart-customer-fields textarea, .cart-customer-fields select {
            width: 100%; padding: 10px 12px; border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
            background: var(--color-surface); color: var(--text-body); font-size: var(--text-sm); font-family: inherit;
            transition: border-color var(--duration-fast);
        }
        .cart-customer-fields input:focus, .cart-customer-fields textarea:focus, .cart-customer-fields select:focus {
            outline: none; border-color: var(--color-primary);
        }
        .cart-customer-fields textarea { resize: none; height: 64px; }
        .cart-customer-row { display: flex; gap: 8px; }
        .cart-customer-row input { flex: 1; }
        .cart-divider { border: none; border-top: 1px solid var(--border-subtle); margin: 4px 0 14px; }
        /* Review form */
        #reviewSection { background: var(--neutral-0); }
        .review-form-wrap { max-width: 560px; margin: 0 auto; padding: 40px 24px; }
        .review-form-wrap h3 { font-size: var(--text-xl); font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
        .review-form-wrap p { color: var(--text-muted); font-size: var(--text-sm); margin-bottom: 24px; }
        .star-picker { display: flex; gap: 6px; margin-bottom: 20px; }
        .star-picker button { background: none; border: none; cursor: pointer; padding: 2px; color: var(--neutral-300); transition: color var(--duration-fast); }
        .star-picker button svg { width: 28px; height: 28px; fill: currentColor; }
        .star-picker button.active, .star-picker button:hover ~ button { /* handled in JS */ }
        .star-picker button.active { color: var(--color-accent); }
        .review-form { display: flex; flex-direction: column; gap: 12px; }
        .review-form input, .review-form textarea {
            padding: 12px 14px; border: 1px solid var(--border-subtle); border-radius: var(--radius-sm);
            background: var(--color-surface); color: var(--text-body); font-size: var(--text-sm); font-family: inherit;
        }
        .review-form input:focus, .review-form textarea:focus { outline: none; border-color: var(--color-primary); }
        .review-form textarea { resize: vertical; min-height: 100px; }
        .review-submit { padding: 13px 32px; border: none; border-radius: var(--radius-pill); background: var(--color-primary); color: #fff; font-weight: 600; cursor: pointer; transition: background var(--duration-fast); width: 100%; }
        .review-submit:hover { background: var(--color-primary-dark); }
        .review-submit:disabled { background: var(--neutral-300); cursor: not-allowed; }
        .review-success { display: none; text-align: center; padding: 24px; color: var(--color-primary); font-weight: 600; }
        @media(max-width:480px){ .cart-fab { bottom: 16px; right: 16px; width: 54px; height: 54px; } }

        /* Tablet: centered modal, single column */
        @media(max-width:768px) {
            .modal-content { max-width: 480px; max-height: 90dvh; overflow-y: auto; }
            .modal-grid { grid-template-columns: 1fr; min-height: unset; }
            .modal-image-side { height: 180px; }
            .modal-info-side { padding: var(--space-4); }
            .modal-desc-text { margin-bottom: var(--space-3); }
            .modal-pkg-options { flex-direction: column; gap: 10px; padding: 12px; }
            .modal-details-bar { grid-template-columns: 1fr 1fr; gap: 8px; }
        }

        /* Mobile: polished centered pop-up card */
        @media(max-width:640px) {
            .modal-backdrop { padding: var(--space-2); align-items: flex-end; }

            .modal-content {
                max-width: 100%; max-height: 92dvh;
                overflow: hidden; overflow-x: hidden;
                border-radius: var(--radius-lg) var(--radius-lg) 0 0;
                border-color: transparent;
                display: flex; flex-direction: column;
                justify-content: space-between;
            }

            /* Scrollable middle area */
            .modal-grid {
                overflow-y: auto; -webkit-overflow-scrolling: touch;
                flex: 1; min-height: 0;
            }

            /* Image: shorter */
            .modal-image-side { height: 160px; min-height: 140px; }
            .modal-image-side::after {
                content: ''; position: absolute; inset: 0;
                background: linear-gradient(to bottom, transparent 30%, var(--color-surface) 100%);
                pointer-events: none;
            }

            /* Info side */
            .modal-info-side {
                padding: var(--space-1) var(--space-3) var(--space-3);
                margin-top: calc(-1 * var(--space-5));
                position: relative; z-index: 1;
                background: var(--color-surface);
            }

            /* Close button: glass pill */
            .modal-close {
                background: var(--glass-bg);
                backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
                border: 1px solid var(--glass-border);
                color: var(--neutral-900);
            }
            .modal-close:hover { background: var(--color-primary); color: var(--neutral-0); border-color: transparent; }

            .modal-tags-container { margin-bottom: var(--space-1); }
            .modal-title { font-size: var(--text-lg); margin-bottom: 4px; }
            .modal-meta-text { font-size: .65rem; margin-bottom: var(--space-1); }
            .modal-desc-text { font-size: var(--text-xs); margin-bottom: var(--space-2); line-height: 1.5; }

            /* Package options stack on mobile */
            .modal-pkg-options { flex-direction: column; gap: 8px; padding: 10px; margin: 8px 0; }
            .pkg-opt-group { min-width: unset; }
            .pkg-opt-select { padding: 8px 10px; font-size: var(--text-sm); }
            .pkg-opt-label { font-size: 10px; margin-bottom: 4px; }

            /* Details bar: 2-col compact */
            .modal-details-bar { grid-template-columns: 1fr 1fr; gap: 6px; padding: 8px 0; }
            .modal-detail-item { gap: 6px; }
            .modal-detail-icon { font-size: .95rem; }
            .modal-detail-label { font-size: .6rem; }
            .modal-detail-value { font-size: var(--text-xs); }

            /* Flavor section compact */
            .modal-flavor-label { font-size: .65rem; }
            .modal-flavor-text { font-size: var(--text-xs); }

            /* Qty buttons: filled teal circles */
            .btn-qty {
                background: var(--color-primary); color: var(--neutral-0);
                border-radius: var(--radius-circle); width: 26px; height: 26px;
            }
            .btn-qty:hover { background: var(--color-primary-dark); transform: scale(1.1); }

            /* Price: teal accent */
            .price-value { color: var(--color-primary); }

            /* CTA: sticky at bottom */
            .modal-image-action {
                position: relative; z-index: 2;
                padding: 12px var(--space-3) calc(var(--space-3) + env(safe-area-inset-bottom));
                background: var(--color-surface);
                border-top: 1px solid var(--border-subtle);
                margin-top: auto;
            }
            .modal-image-action .modal-interactive { margin-bottom: 8px; }
            .btn-modal-action {
                background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
                letter-spacing: var(--tracking-wide);
                font-size: var(--text-sm);
                padding: 10px var(--space-2);
            }
            .btn-modal-action:hover { background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); }
        }

        /* ===== MOBILE IMPROVEMENTS ===== */
        /* Tablet: section titles start shrinking from desktop 3rem */
        @media(max-width:768px) {
            .sec-title { font-size: 2rem; }
            .sec-head { margin-bottom: var(--space-5); }
            .res-form { padding: var(--space-4); }
        }

        /* Large phone / small tablet */
        @media(max-width:640px) {
            .sec-title { font-size: 1.7rem; }
            /* Hero CTA buttons: equal width when they wrap to second line */
            .hero-btns .btn-gold,
            .hero-btns .btn-ghost { flex: 1 1 160px; text-align: center; }
            /* Story visual: prevent ring bleeds past viewport edge */
            .story-visual { overflow: hidden; }
            /* Back-to-top position */
            .back-to-top { bottom: 76px; right: 16px; }
            /* Coffee / menu grid: remove max-width cap so cards fill viewport naturally */
            .coffee-grid, .menu-grid { max-width: 100%; }
        }

        /* Phone */
        @media(max-width:480px) {
            .sec-title { font-size: 1.5rem; }
            .sec-head { margin-bottom: var(--space-4); }
            /* Hero buttons: side-by-side with smaller padding on mobile */
            .hero-btns { gap: 10px; }
            .hero-btns .btn-gold,
            .hero-btns .btn-ghost { flex: 1 1 120px; padding: 12px 20px; font-size: var(--text-sm); }
            /* Story visual: scale rings down to fit <480px viewport */
            .story-visual { min-height: 280px; }
            .story-visual-bg { width: 210px; height: 210px; }
            .story-visual-ring-1 { width: 250px; height: 250px; }
            .story-visual-ring-2 { width: 300px; height: 300px; }
            .story-visual-ring-3 { width: 350px; height: 350px; }
            .story-cup-wrap { width: 110px; height: 145px; }
            .story-badge-float { padding: 10px 14px; }
            .story-badge-num { font-size: 1.25rem; }
            /* Story feature grid: 1-col on tiny phones */
            .story-features { grid-template-columns: 1fr; gap: 12px; }
            /* Reservation form: compact on phone */
            .res-form { padding: var(--space-3); }
            /* Menu tabs: fit more on one row */
            .menu-tab { padding: 6px 14px; font-size: var(--text-xs); }
            /* Card images: slightly shorter so body text isn't cut off */
            .coffee-card-img, .menu-card-img, .dish-card-img { height: 170px; }
            /* Stats counter: smaller on phone */
            .stat-value { font-size: 1.6rem; }
            /* Back-to-top position */
            .back-to-top { right: 16px; }
        }



/* ===== INTERACTIVE STATES & ACCESSIBILITY ENHANCEMENTS ===== */

/* Unified focus indicators */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 3px solid var(--teal-500) !important;
    outline-offset: 3px !important;
}

/* Button & interactive transitions */
.btn-gold, .btn-ghost, .btn-order, .btn-menu-order, .btn-primary-nav, .btn-outline-nav, .form-submit, .review-submit, .cart-submit {
    transition: all var(--duration-fast) var(--ease-out) !important;
}

/* Specific active/pressed states */
.btn-gold:active, .btn-primary-nav:active, .form-submit:active, .review-submit:active, .cart-submit:active {
    transform: scale(0.96) !important;
}

.btn-ghost:active, .btn-outline-nav:active {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(0.96) !important;
}

.btn-order:active, .btn-menu-order:active {
    transform: scale(0.95) !important;
}

/* Specific disabled states */
.btn-gold:disabled, .btn-ghost:disabled, .btn-order:disabled, .btn-menu-order:disabled, .btn-primary-nav:disabled, .btn-outline-nav:disabled, .form-submit:disabled, .review-submit:disabled, .cart-submit:disabled {
    opacity: 0.65 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

/* Button Loading, Success, Error States */
.btn-loading {
    opacity: 0.85 !important;
    pointer-events: none !important;
    cursor: wait !important;
}

.btn-success-state {
    background-color: #2e7d32 !important;
    color: #ffffff !important;
    border-color: #2e7d32 !important;
    box-shadow: none !important;
    pointer-events: none !important;
}

.btn-error-state {
    background-color: #d32f2f !important;
    color: #ffffff !important;
    border-color: #d32f2f !important;
    box-shadow: none !important;
}

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btnSpin .6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

.btn-check, .btn-error-icon {
    display: inline-block;
    margin-right: 8px;
    font-weight: bold;
}

/* Visual contrast enhancements for gold on light backgrounds */
.story-badge-num {
    color: var(--gold-700) !important; /* Higher contrast gold for light themes */
}

[data-theme="light"] .nav.scrolled .nav-links a:hover {
    color: var(--teal-700) !important; /* Highly visible hover color instead of light gold */
}

[data-theme="light"] .nav.scrolled .nav-links a.active {
    color: var(--teal-600) !important; /* Active scrolled link uses primary brand color instead of light gold */
}

/* Star picker touch target size */
.star-picker button {
    min-width: 44px !important;
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
