/* ============================================================
   HOME KITCHEN — Global Stylesheet
   style.css — shared across all pages
   ============================================================ */

/* ── RESET & VARIABLES ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --olive:        #4a5c2a;
    --olive-dark:   #3a4a20;
    --olive-light:  #6b7d3f;
    --olive-glow:   rgba(74,92,42,0.08);
    --cream-gold:   #d8c7a3;
    --cream:        #f5efe7;
    --cream-2:      #ede4d8;
    --white:        #ffffff;
    --text:         #1f1f1f;
    --text-muted:   #6b6b5f;
    --border:       #e8e0d4;
    --border-light: #f0ebe3;
    --shadow:       rgba(31,31,31,0.06);
    --shadow-md:    rgba(31,31,31,0.10);
    --radius-sm:    4px;
    --radius:       8px;
    --radius-lg:    12px;
    --radius-pill:  30px;
}

html  { scroll-behavior: smooth; }
body  { font-family: 'Poppins', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; line-height: 1.6; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
input, select, textarea, button { font-family: inherit; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container-hk { max-width: 1140px; margin: 0 auto; padding: 0 40px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.section-label {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--olive-light);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    display: block;
}
.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 500;
    color: var(--text);
    line-height: 1.15;
    letter-spacing: 0.02em;
}
.section-title span { color: var(--olive); }
.section-title.light { color: #fff; }
.section-title.light span { color: rgba(255,255,255,0.75); }

.divider {
    width: 40px; height: 2px;
    background: var(--olive);
    margin: 14px 0 24px;
    opacity: 0.55;
    border: none;
}
.divider.center { margin: 14px auto 24px; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--olive); color: #fff;
    padding: 13px 28px;
    font-size: 0.83rem; font-weight: 600; letter-spacing: 0.04em;
    border: none; border-radius: var(--radius-sm);
    cursor: pointer; transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}
.btn-primary:hover { background: var(--olive-dark); transform: translateY(-1px); color: #fff; }

.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--olive);
    padding: 12px 28px;
    font-size: 0.83rem; font-weight: 600; letter-spacing: 0.04em;
    border: 1.5px solid var(--olive); border-radius: var(--radius-sm);
    cursor: pointer; transition: all 0.2s;
    white-space: nowrap;
}
.btn-secondary:hover { background: var(--olive); color: #fff; }

.btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    padding: 12px 28px;
    font-size: 0.83rem; font-weight: 600; letter-spacing: 0.04em;
    border: 1.5px solid rgba(255,255,255,0.5); border-radius: var(--radius-sm);
    cursor: pointer; transition: all 0.2s;
    white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ── DAILY SPECIAL BANNER ────────────────────────────────────── */
#daily-banner {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    display: none;
}
.daily-inner {
    display: flex; align-items: center; gap: 16px;
    padding: 10px 40px; flex-wrap: wrap;
    max-width: 1140px; margin: 0 auto;
}
.daily-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--olive); color: #fff;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em;
    padding: 4px 12px; border-radius: var(--radius-pill);
    flex-shrink: 0; white-space: nowrap;
}
.daily-dot {
    width: 5px; height: 5px;
    background: rgba(255,255,255,0.85); border-radius: 50%;
    animation: hk-pulse 1.6s ease-in-out infinite;
}
@keyframes hk-pulse { 0%,100%{opacity:0.4} 50%{opacity:1} }
.daily-content { flex: 1; min-width: 0; }
.daily-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem; color: var(--text);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.daily-name span { color: var(--olive); font-style: italic; }
.daily-desc { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.daily-price { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 500; color: var(--olive); flex-shrink: 0; }
.daily-btn {
    background: var(--olive); color: #fff; border: none;
    padding: 8px 16px; border-radius: var(--radius-pill);
    font-size: 0.72rem; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: background 0.2s;
    flex-shrink: 0;
}
.daily-btn:hover { background: var(--olive-dark); }

/* ── NAVBAR ──────────────────────────────────────────────────── */
#navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px var(--shadow-md); }
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1140px; margin: 0 auto;
}
.nav-logo { padding: 10px 24px; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; height: 64px; list-style: none; }
.nav-links li a {
    display: flex; align-items: center; height: 64px;
    padding: 0 20px;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.02em;
    color: var(--text-muted);
    border-right: 1px solid var(--border-light);
    transition: color 0.2s, background 0.2s;
}
.nav-links li a:hover { color: var(--olive); background: var(--cream); }
.nav-cta {
    background: var(--olive) !important;
    color: #fff !important;
    border-right: none !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    padding: 0 24px !important;
}
.nav-cta:hover { background: var(--olive-dark) !important; color: #fff !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 20px 24px; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--text); border-radius: 2px; }
.nav-mobile {
    display: none; position: fixed; inset: 0;
    background: #fff; z-index: 999;
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    font-family: 'Oswald', sans-serif; font-size: 1.8rem; font-weight: 400;
    letter-spacing: 0.06em; color: var(--text); transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--olive); }
.nav-mobile-close {
    position: absolute; top: 20px; right: 24px;
    font-size: 1.4rem; cursor: pointer;
    color: var(--text-muted); background: none; border: none;
}

/* ── CAROUSEL ────────────────────────────────────────────────── */
#carousel { position: relative; overflow: hidden; }
.carousel-slides { display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1); }
.carousel-slide {
    min-width: 100%; position: relative; overflow: hidden;
    min-height: 520px; display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

/* LEFT — text content */
.slide-text {
    position: relative; z-index: 2;
    padding: 80px 60px 80px 80px;
    background: var(--white);
    display: flex; flex-direction: column; justify-content: center;
    height: 100%;
}
.slide-badge {
    display: inline-block; font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.08em; padding: 5px 14px;
    border-radius: var(--radius-pill); margin-bottom: 20px;
    align-self: flex-start;
}
.badge-olive { background: var(--olive); color: #fff; }
.badge-cream { background: var(--cream-2); color: var(--olive); }
.badge-new   { background: #c0392b; color: #fff; }

.slide-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 400; color: var(--text);
    letter-spacing: 0.02em; line-height: 1.05;
    margin-bottom: 14px;
}
.slide-title span { color: var(--olive); }
.slide-price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem; font-weight: 500;
    color: var(--olive); margin-bottom: 10px;
}
.slide-desc {
    font-size: 0.92rem; color: var(--text-muted);
    line-height: 1.85; margin-bottom: 32px;
    max-width: 380px; font-weight: 300;
}
.slide-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* RIGHT — food photo */
.slide-image {
    position: relative; height: 50%; min-height: 520px;
    overflow: hidden; background: transparent;
    display: flex; align-items: center; justify-content: center;
}
.slide-image img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
    transition: transform 0.6s ease;
}
.carousel-slide:hover .slide-image img { transform: scale(1.03); }
.slide-image-placeholder {
    width: 100%; height: 100%; min-height: 520px;
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem; background: var(--cream);
}

/* Carousel controls */
.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.9); color: var(--text);
    border: 1px solid var(--border); width: 44px; height: 44px;
    border-radius: 50%; cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px var(--shadow);
}
.carousel-arrow:hover { background: var(--white); box-shadow: 0 4px 16px var(--shadow-md); }
.carousel-arrow.left  { left: 20px; }
.carousel-arrow.right { right: 20px; }
.carousel-dots {
    position: absolute; bottom: 24px; left: 0; right: 0;
    display: flex; justify-content: center; gap: 8px; z-index: 10;
}
.carousel-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--border); cursor: pointer;
    transition: all 0.3s; border: none;
}
.carousel-dot.active { background: var(--olive); width: 20px; border-radius: 3px; }
.carousel-progress {
    position: absolute; bottom: 0; left: 0;
    height: 2px; background: var(--olive); opacity: 0.4;
    transition: width 0.1s linear; z-index: 10;
}

/* ── QUICK ORDER BAR ─────────────────────────────────────────── */
#quick-bar {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.qb-inner {
    display: flex; align-items: stretch;
    max-width: 1140px; margin: 0 auto;
}
.qb-item {
    flex: 1; padding: 16px 20px;
    border-right: 1px solid var(--border);
    cursor: pointer; display: flex; align-items: center; gap: 12px;
    transition: background 0.2s; text-decoration: none;
}
.qb-item:hover { background: var(--cream-2); }
.qb-item:last-child { border-right: none; }
.qb-icon { font-size: 1.2rem; flex-shrink: 0; }
.qb-label { font-size: 0.6rem; color: var(--text-muted); letter-spacing: 0.08em; margin-bottom: 2px; text-transform: uppercase; }
.qb-val   { font-size: 0.82rem; font-weight: 500; color: var(--text); }
.qb-arrow { margin-left: auto; font-size: 0.65rem; color: var(--olive); opacity: 0.45; flex-shrink: 0; }

/* ── MOST POPULAR ────────────────────────────────────────────── */
#popular { background: var(--white); padding: 64px 0; }
.pop-label {
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
    color: var(--olive); margin-bottom: 28px;
    display: flex; align-items: center; gap: 14px;
}
.pop-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.pop-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.pop-card {
    background: var(--white); border: 1px solid var(--border-light);
    border-radius: var(--radius); overflow: hidden;
    cursor: pointer; transition: box-shadow 0.25s, transform 0.2s;
}
.pop-card:hover { box-shadow: 0 8px 32px var(--shadow-md); transform: translateY(-3px); }
.pop-card.top { border: 1.5px solid var(--olive); }

/* Image container — any size fits */
.pop-img {
    width: 100%; aspect-ratio: 1/1;
    overflow: hidden; position: relative; background: var(--cream);
}
.pop-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.5s ease;
}
.pop-card:hover .pop-img img { transform: scale(1.05); }
.pop-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem;
}
.pop-badge {
    position: absolute; top: 10px; left: 10px;
    font-size: 0.6rem; font-weight: 600; letter-spacing: 0.06em;
    padding: 4px 10px; border-radius: var(--radius-pill);
}
.pop-badge.olive { background: var(--olive); color: #fff; }
.pop-badge.light { background: rgba(74,92,42,0.1); color: var(--olive); }
.pop-body { padding: 16px 18px 18px; }
.pop-name  { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.pop-price { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; line-height: 1.5; }
.pop-add {
    width: 100%; background: var(--olive); color: #fff;
    border: none; padding: 10px; border-radius: var(--radius-sm);
    font-size: 0.75rem; font-weight: 600; cursor: pointer;
    transition: background 0.2s; letter-spacing: 0.02em;
}
.pop-add:hover { background: var(--olive-dark); }

/* ── COUNTDOWN BAR ───────────────────────────────────────────── */
#countdown-bar {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.cd-inner {
    display: flex; align-items: center;
    max-width: 1140px; margin: 0 auto;
    padding: 0 40px; gap: 24px;
}
.cd-status { display: flex; align-items: center; gap: 8px; padding: 14px 0; flex-shrink: 0; }
.cd-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.cd-dot.open   { background: #4a7a2a; animation: hk-pulse 2.5s ease-in-out infinite; }
.cd-dot.closed { background: var(--text-muted); opacity: 0.3; }
.cd-status-label { font-size: 0.75rem; font-weight: 500; }
.cd-status-label.open   { color: #4a7a2a; }
.cd-status-label.closed { color: var(--text-muted); }
.cd-timer { flex: 1; }
.cd-timer-label { font-size: 0.62rem; color: var(--text-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.cd-timer-value { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 400; color: var(--text); letter-spacing: 0.04em; }
.cd-timer-value span { color: var(--olive); }
.cd-cta {
    background: var(--olive); color: #fff; border: none;
    padding: 9px 20px; border-radius: var(--radius-sm);
    font-size: 0.75rem; font-weight: 600;
    cursor: pointer; white-space: nowrap; transition: background 0.2s;
    flex-shrink: 0;
}
.cd-cta:hover { background: var(--olive-dark); }

/* ── TICKER ──────────────────────────────────────────────────── */
#ticker {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    display: none;
}
.ticker-inner {
    display: flex; align-items: stretch;
    max-width: 1140px; margin: 0 auto;
}
.ticker-badge {
    display: flex; align-items: center; gap: 7px;
    padding: 0 20px;
    border-right: 1px solid var(--border);
    font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em;
    color: var(--olive); flex-shrink: 0; white-space: nowrap;
}
.ticker-track { flex: 1; height: 42px; position: relative; overflow: hidden; }
.ticker-item {
    position: absolute; width: 100%; height: 42px;
    display: flex; align-items: center; gap: 12px;
    padding: 0 20px; font-size: 0.8rem; color: var(--text-muted);
    transition: transform 0.8s ease, opacity 0.8s ease;
}
.ticker-item.active { transform: translateY(0); opacity: 1; }
.ticker-item.above  { transform: translateY(-42px); opacity: 0; }
.ticker-item.below  { transform: translateY(42px); opacity: 0; }
.t-av {
    width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 600; color: #fff; flex-shrink: 0;
}
.ticker-count {
    padding: 0 20px; display: flex; align-items: center;
    border-left: 1px solid var(--border);
    font-size: 0.72rem; color: var(--text-muted);
    white-space: nowrap; flex-shrink: 0;
}
.ticker-count strong { color: var(--text); }

/* ── PRESS BAR ───────────────────────────────────────────────── */
#press-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}
.press-inner {
    display: flex; align-items: center; gap: 20px;
    flex-wrap: wrap; justify-content: center;
    max-width: 1140px; margin: 0 auto; padding: 0 40px;
}
.press-label { font-size: 0.65rem; font-weight: 500; color: var(--text-muted); white-space: nowrap; }
.press-item {
    display: flex; align-items: center; gap: 12px;
    padding: 6px 16px;
    border: 1px solid var(--border-light); border-radius: var(--radius-pill);
    text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.press-item:hover { border-color: var(--olive); background: var(--cream); }
.press-outlet { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.press-headline {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 0.8rem; color: var(--text-muted);
    max-width: 300px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.press-divider { width: 1px; height: 14px; background: var(--border); flex-shrink: 0; }
.press-arrow { font-size: 0.65rem; color: var(--olive); opacity: 0.45; transition: opacity 0.2s, transform 0.2s; }
.press-item:hover .press-arrow { opacity: 1; transform: translateX(3px); }

/* ── ABOUT ───────────────────────────────────────────────────── */
#about { background: var(--cream); padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 0.95rem; line-height: 2; color: var(--text-muted); margin-bottom: 18px; }
.about-text strong { color: var(--text); font-weight: 600; }
.pull-quote {
    border-left: 2px solid var(--olive);
    padding: 18px 24px; margin: 28px 0;
    background: rgba(74,92,42,0.05);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.pull-quote p {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 1.05rem; color: var(--text); line-height: 1.75; margin-bottom: 10px;
}
.pull-quote cite { font-size: 0.72rem; font-weight: 600; color: var(--olive); font-style: normal; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.pillar {
    padding: 20px; background: var(--white);
    border: 1px solid var(--border-light); border-radius: var(--radius);
    transition: box-shadow 0.25s;
}
.pillar:hover { box-shadow: 0 4px 16px var(--shadow); }
.pillar-icon  { font-size: 1.1rem; color: var(--olive); margin-bottom: 8px; }
.pillar-title { font-size: 0.82rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.pillar-text  { font-size: 0.76rem; color: var(--text-muted); line-height: 1.65; }
.about-visual { position: relative; }

/* About image — any size fits */
.about-img-wrap { width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.7s ease; }
.about-img-wrap:hover img { transform: scale(1.03); }
.about-badge {
    position: absolute; bottom: -20px; left: -20px;
    width: 110px; height: 110px; background: var(--olive);
    border-radius: 50%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    padding: 12px; box-shadow: 0 8px 24px rgba(74,92,42,0.25);
}
.about-badge-num  { font-family: 'Oswald', sans-serif; font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1; }
.about-badge-text { font-size: 0.54rem; font-weight: 600; color: rgba(255,255,255,0.85); line-height: 1.4; margin-top: 4px; }
.about-address {
    position: absolute; bottom: -72px; right: 0;
    background: var(--white); border: 1px solid var(--border);
    padding: 14px 18px; border-radius: var(--radius);
    display: flex; align-items: flex-start; gap: 10px;
    box-shadow: 0 2px 12px var(--shadow);
}
.about-address i { color: var(--olive); margin-top: 3px; font-size: 0.78rem; }
.about-address-text { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }
.about-address-text strong { color: var(--text); display: block; font-size: 0.82rem; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
#how { background: var(--white); padding: 90px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.how-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 24px; margin-top: 56px;
    max-width: 900px; margin-left: auto; margin-right: auto;
}
.how-step { padding: 40px 28px; text-align: center; background: var(--cream); border-radius: var(--radius); }
.how-num  { font-family: 'Oswald', sans-serif; font-size: 3.5rem; font-weight: 400; color: rgba(74,92,42,0.1); line-height: 1; margin-bottom: 12px; }
.how-icon { font-size: 1.5rem; color: var(--olive); margin-bottom: 14px; }
.how-title{ font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.how-text { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; }

/* ── MENU ────────────────────────────────────────────────────── */
#menu { background: var(--cream); padding: 100px 0; }
.menu-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.menu-tabs {
    display: flex; gap: 4px;
    background: var(--white); padding: 4px;
    border-radius: var(--radius-pill); border: 1px solid var(--border);
    flex-wrap: wrap;
}
.menu-tab {
    padding: 8px 20px; font-size: 0.75rem; font-weight: 500;
    color: var(--text-muted); cursor: pointer;
    border-radius: var(--radius-pill); transition: all 0.2s;
    border: none; background: transparent; white-space: nowrap;
}
.menu-tab.active { background: var(--olive); color: #fff; }
.menu-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }

/* Menu card — any image size fits */
.menu-card {
    background: var(--white); border: 1px solid var(--border-light);
    border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s;
}
.menu-card.visible { opacity: 1; transform: translateY(0); }
.menu-card:hover { box-shadow: 0 8px 28px var(--shadow-md); }
.menu-card-img {
    width: 100%; aspect-ratio: 4/3;
    overflow: hidden; background: var(--cream); flex-shrink: 0;
}
.menu-card-img img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img img { transform: scale(1.04); }
.menu-card-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem;
}
.menu-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.menu-card-tag {
    display: inline-block; font-size: 0.62rem; font-weight: 600;
    color: var(--olive); background: rgba(74,92,42,0.08);
    padding: 3px 10px; border-radius: var(--radius-pill);
    margin-bottom: 10px; align-self: flex-start;
}
.menu-card-tag.hero { background: rgba(74,92,42,0.14); }
.menu-card-tag.new  { background: rgba(192,57,43,0.1); color: #c0392b; }
.menu-card-name { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.menu-card-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; flex: 1; }
.menu-card-includes { display: flex; flex-direction: column; gap: 3px; margin-bottom: 12px; flex: 1; }
.menu-card-includes span { font-size: 0.75rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.menu-card-includes span::before { content: '·'; color: var(--olive); font-size: 1rem; line-height: 1; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border-light); }
.menu-card-price { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 500; color: var(--olive); }
.menu-card-order { font-size: 0.72rem; font-weight: 600; color: var(--olive); cursor: pointer; transition: opacity 0.2s; background: none; border: none; padding: 0; opacity: 0.55; }
.menu-card-order:hover { opacity: 1; }
.menu-card.no-photo { padding: 24px; }
.menu-card.no-photo .menu-card-body { padding: 0; }
.menu-note { text-align: center; margin-top: 40px; font-size: 0.8rem; color: var(--text-muted); font-style: italic; }

/* Wing flavor pills */
.flavor-pills { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.flavor-pill {
    font-size: 0.65rem; font-weight: 500;
    padding: 4px 10px; border-radius: var(--radius-pill);
    border: 1px solid var(--border); color: var(--text-muted);
    cursor: pointer; transition: all 0.15s; background: var(--white);
    white-space: nowrap;
}
.flavor-pill:hover, .flavor-pill.active { background: var(--olive); color: #fff; border-color: var(--olive); }

/* ── PRESS FEATURE ───────────────────────────────────────────── */
#press { background: var(--white); padding: 90px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.press-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.press-quote-wrap {
    position: relative; padding: 44px;
    background: var(--cream); border-radius: var(--radius);
    border: 1px solid var(--border-light);
}
.press-quote-mark {
    font-family: 'Playfair Display', serif; font-size: 6rem; line-height: 1;
    color: rgba(74,92,42,0.1); position: absolute; top: -4px; left: 28px;
    pointer-events: none; user-select: none;
}
.press-quote-text {
    font-family: 'Playfair Display', serif; font-style: italic;
    font-size: 1.1rem; color: var(--text); line-height: 1.75;
    position: relative; z-index: 1; margin-bottom: 24px;
}
.press-quote-attr  { display: flex; align-items: center; gap: 14px; }
.press-quote-dash  { width: 24px; height: 1px; background: var(--olive); flex-shrink: 0; }
.press-quote-name  { font-size: 0.78rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 2px; }
.press-quote-title { font-size: 0.7rem; color: var(--text-muted); }
.press-outlet-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(74,92,42,0.06); border: 1px solid rgba(74,92,42,0.15);
    padding: 7px 14px; border-radius: var(--radius-pill); margin-bottom: 24px;
}
.press-outlet-badge i   { color: var(--olive); }
.press-outlet-badge span{ font-size: 0.7rem; font-weight: 600; color: var(--olive); }
.press-headline { font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 500; color: var(--text); line-height: 1.25; margin-bottom: 16px; }
.press-headline span { color: var(--olive); }
.press-excerpt { font-size: 0.9rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 28px; }
.press-read-more {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; color: var(--olive);
    border-bottom: 1px solid rgba(74,92,42,0.25); padding-bottom: 3px;
    transition: border-color 0.2s, gap 0.2s;
}
.press-read-more:hover { border-color: var(--olive); gap: 16px; }

/* ── ORDER CTA ───────────────────────────────────────────────── */
#order {
    background: url('../images/AdobeStock_298330268.jpeg') center 40%/cover no-repeat;
    position: relative; padding: 130px 0; text-align: center;
}
#order::before { content: ''; position: absolute; inset: 0; background: rgba(15,20,8,0.80); }
.order-content { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; padding: 0 24px; }
.order-content p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.85; margin-bottom: 44px; }
.order-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── REVIEWS ─────────────────────────────────────────────────── */
#reviews { background: var(--cream); padding: 100px 0; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 56px; }
.review-card {
    background: var(--white); padding: 36px 32px;
    border: 1px solid var(--border-light); border-radius: var(--radius);
    transition: box-shadow 0.25s;
}
.review-card:hover { box-shadow: 0 6px 24px var(--shadow); }
.review-stars { color: var(--olive); font-size: 0.88rem; letter-spacing: 3px; margin-bottom: 16px; opacity: 0.8; }
.review-text  { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.97rem; color: var(--text); line-height: 1.82; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
    width: 40px; height: 40px; border-radius: 50%; background: var(--olive);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; font-weight: 600; color: #fff; flex-shrink: 0;
}
.review-name   { font-size: 0.82rem; font-weight: 600; color: var(--text); display: block; }
.review-detail { font-size: 0.72rem; color: var(--text-muted); }

/* ── FEEDBACK ────────────────────────────────────────────────── */
#feedback { background: var(--white); padding: 100px 0; border-top: 1px solid var(--border); }
.feedback-inner { max-width: 560px; margin: 0 auto; padding: 0 24px; text-align: center; }
.feedback-box {
    background: var(--cream); border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: 48px 40px; margin-top: 44px;
}
.star-rating  { display: flex; justify-content: center; gap: 10px; margin-bottom: 24px; }
.star-rating label { font-size: 2rem; color: var(--border); cursor: pointer; transition: color 0.15s, transform 0.15s; }
.star-rating label:hover, .star-rating label.active { color: var(--olive); transform: scale(1.12); }
.fb-field {
    width: 100%; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 12px 14px;
    color: var(--text); font-family: 'Poppins', sans-serif; font-size: 0.83rem;
    outline: none; transition: border-color 0.2s; margin-bottom: 10px;
}
.fb-field::placeholder { color: var(--text-muted); opacity: 0.6; }
.fb-field:focus { border-color: var(--olive); }
textarea.fb-field { resize: vertical; min-height: 100px; }
.fb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feedback-submit {
    width: 100%; background: var(--olive); color: #fff; border: none;
    border-radius: var(--radius-sm); padding: 14px;
    font-family: 'Poppins', sans-serif; font-size: 0.82rem; font-weight: 600;
    cursor: pointer; transition: background 0.2s; margin-top: 4px;
}
.feedback-submit:hover { background: var(--olive-dark); }
.feedback-success { display: none; padding: 16px 0; }
.feedback-success i { font-size: 2.5rem; color: var(--olive); display: block; margin-bottom: 14px; }
.feedback-success p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.feedback-success a { color: var(--olive); text-decoration: underline; }

/* ── FIND US ─────────────────────────────────────────────────── */
#find-us { background: var(--cream); padding: 90px 0 0; border-top: 1px solid var(--border); }
.map-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 16px; }
.map-layout { display: grid; grid-template-columns: 1fr 300px; gap: 16px; }
.map-embed-wrap { height: 420px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); }
.map-embed-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(20%) contrast(1.02) brightness(0.95); }
.map-info-panel { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 28px 24px; display: flex; flex-direction: column; gap: 22px; }
.map-panel-heading { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); padding-bottom: 10px; border-bottom: 1px solid var(--border-light); }
.map-addr { font-size: 0.9rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.map-addr-sub { font-size: 0.7rem; color: var(--text-muted); margin-top: 3px; }
.map-hours-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border-light); font-size: 0.78rem; }
.map-hours-row:last-child { border-bottom: none; }
.map-hours-day    { color: var(--text-muted); }
.map-hours-time   { color: var(--text); font-weight: 500; }
.map-hours-closed { color: var(--text-muted); font-style: italic; opacity: 0.5; }
.map-platform {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; background: var(--cream);
    border: 1px solid var(--border-light); border-radius: var(--radius-sm);
    margin-bottom: 6px; text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.map-platform:last-child { margin-bottom: 0; }
.map-platform:hover { border-color: var(--olive); background: rgba(74,92,42,0.04); }
.map-platform-dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.map-platform-name { font-size: 0.78rem; font-weight: 500; color: var(--text); flex: 1; }
.map-platform-arrow{ font-size: 0.65rem; color: var(--olive); opacity: 0.4; }
.map-dir-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--olive); color: #fff; padding: 11px;
    border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 600;
    margin-top: 8px; text-decoration: none; transition: background 0.2s;
}
.map-dir-btn:hover { background: var(--olive-dark); color: #fff; }

/* ── INSTAGRAM ───────────────────────────────────────────────── */
#instagram { background: var(--white); padding: 90px 0; border-top: 1px solid var(--border); }
.ig-header  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.ig-handle  { display: flex; align-items: center; gap: 14px; }
.ig-avatar  { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.ig-handle-name { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.ig-handle-sub  { font-size: 0.72rem; color: var(--text-muted); }
.ig-follow-btn  {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--olive); color: var(--olive);
    padding: 10px 20px; border-radius: var(--radius-pill);
    font-size: 0.75rem; font-weight: 600; cursor: pointer;
    background: transparent; transition: all 0.2s; text-decoration: none;
}
.ig-follow-btn:hover { background: var(--olive); color: #fff; }
.ig-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.ig-post {
    aspect-ratio: 1; background: var(--cream);
    position: relative; overflow: hidden; cursor: pointer;
    border: 1px solid var(--border-light); border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
}
.ig-post img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.ig-post:hover img { transform: scale(1.05); }
.ig-post-overlay {
    position: absolute; inset: 0; background: rgba(74,92,42,0.35);
    display: flex; align-items: center; justify-content: center;
    gap: 14px; opacity: 0; transition: opacity 0.3s;
    font-size: 0.78rem; color: #fff; font-weight: 600;
}
.ig-post:hover .ig-post-overlay { opacity: 1; }
.ig-cta-row { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.ig-cta-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 600; color: var(--olive);
    border-bottom: 1px solid rgba(74,92,42,0.25); padding-bottom: 3px;
    text-decoration: none; transition: border-color 0.2s, gap 0.2s;
}
.ig-cta-link:hover { border-color: var(--olive); gap: 16px; }
.ig-api-note { font-size: 0.72rem; color: var(--text-muted); font-style: italic; }

/* ── FOOTER ──────────────────────────────────────────────────── */
#footer { background: #1a1f0e; padding: 72px 0 40px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 56px; margin-bottom: 56px; }
.footer-logo img { height: 52px; margin-bottom: 18px; }
.footer-about { font-size: 0.82rem; color: rgba(232,228,216,0.55); line-height: 1.85; margin-bottom: 22px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
    width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; color: rgba(232,228,216,0.55);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--olive); color: #fff; background: var(--olive); }
.footer-press-note {
    display: flex; align-items: center; gap: 9px;
    padding: 12px 16px; margin-top: 18px;
    background: rgba(216,199,163,0.07); border: 1px solid rgba(216,199,163,0.15);
    border-radius: var(--radius-sm);
}
.footer-press-note i    { color: var(--cream-gold); font-size: 0.72rem; flex-shrink: 0; }
.footer-press-note span { font-size: 0.7rem; color: rgba(255,255,255,0.35); line-height: 1.5; }
.footer-press-note a    { color: var(--cream-gold); }
.footer-heading { font-family: 'Oswald', sans-serif; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.82rem; color: rgba(232,228,216,0.55); transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: #fff; }
.footer-links a i { font-size: 0.62rem; color: var(--olive-light); }
.footer-info { list-style: none; }
.footer-info li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.82rem; color: rgba(232,228,216,0.55); line-height: 1.6; }
.footer-info li i { color: var(--olive-light); margin-top: 3px; flex-shrink: 0; font-size: 0.72rem; }
.footer-info a { color: rgba(232,228,216,0.55); transition: color 0.2s; }
.footer-info a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.footer-copy span { color: var(--olive-light); }

/* ── MOBILE STICKY BAR ───────────────────────────────────────── */
#mobile-sticky {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 900; background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px var(--shadow-md);
    padding: 12px 16px; flex-direction: row; align-items: center; gap: 10px;
}
.ms-text  { flex: 1; }
.ms-title { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.ms-sub   { font-size: 0.68rem; color: var(--text-muted); }
.ms-btn   { background: var(--olive); color: #fff; border: none; padding: 10px 18px; border-radius: var(--radius-sm); font-size: 0.78rem; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background 0.2s; }
.ms-btn:hover { background: var(--olive-dark); }

/* ── ORDER MODAL ─────────────────────────────────────────────── */
.hk-modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(31,31,31,0.55); z-index: 2000;
    align-items: center; justify-content: center;
    padding: 24px; backdrop-filter: blur(4px);
}
.hk-modal-overlay.open { display: flex; }
.hk-modal {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); width: 100%; max-width: 540px;
    padding: 44px 38px 38px; position: relative;
    animation: hk-modal-in 0.28s ease; max-height: 90vh; overflow-y: auto;
}
@keyframes hk-modal-in { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
.hk-modal-close { position: absolute; top: 16px; right: 20px; font-size: 1.3rem; color: var(--text-muted); cursor: pointer; background: none; border: none; line-height: 1; transition: color 0.2s; }
.hk-modal-close:hover { color: var(--text); }
.modal-title { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 500; color: var(--text); margin-bottom: 6px; letter-spacing: 0.02em; }
.modal-sub   { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; font-style: italic; font-family: 'Playfair Display', serif; }
.modal-capture { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.modal-capture-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; display: block; }
.modal-fields { display: flex; flex-direction: column; gap: 9px; margin-bottom: 12px; }
.modal-field-wrap { position: relative; display: flex; align-items: center; }
.modal-field-icon { position: absolute; left: 13px; color: var(--text-muted); font-size: 0.76rem; pointer-events: none; opacity: 0.7; }
.modal-field-wrap input {
    width: 100%; background: var(--cream); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 11px 13px 11px 36px;
    color: var(--text); font-family: 'Poppins', sans-serif; font-size: 0.82rem;
    outline: none; transition: border-color 0.2s;
}
.modal-field-wrap input::placeholder { color: var(--text-muted); opacity: 0.6; }
.modal-field-wrap input:focus { border-color: var(--olive); background: var(--white); }
.modal-field-wrap input.err { border-color: #c0392b; }
.sms-consent { display: flex; align-items: flex-start; gap: 9px; margin-top: 10px; }
.sms-consent input { width: 15px; height: 15px; margin-top: 2px; accent-color: var(--olive); flex-shrink: 0; cursor: pointer; }
.sms-consent label { font-size: 0.7rem; color: var(--text-muted); line-height: 1.5; cursor: pointer; }
.sms-consent label span { color: var(--text); }
.platform-section-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; display: block; }
.platform-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.platform-card {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 14px; background: var(--cream);
    border: 1px solid var(--border-light); border-radius: var(--radius);
    cursor: pointer; transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
}
.platform-card:hover { border-color: var(--olive); background: rgba(74,92,42,0.04); }
.platform-icon { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 800; flex-shrink: 0; color: #fff; }
.platform-icon.otter { background: var(--olive); }
.platform-icon.uber  { background: #000; border: 1px solid #333; }
.platform-icon.grub  { background: #f63440; }
.platform-icon.door  { background: #eb1700; }
.platform-info { flex: 1; }
.platform-name  { font-size: 0.78rem; font-weight: 600; color: var(--text); display: block; margin-bottom: 1px; }
.platform-sub   { font-size: 0.65rem; color: var(--text-muted); }
.platform-arrow { font-size: 0.65rem; color: var(--olive); opacity: 0.4; flex-shrink: 0; }

/* ── RETURNING CUSTOMER BANNER ───────────────────────────────── */
.returning-banner {
    background: rgba(74,92,42,0.06); border: 1px solid rgba(74,92,42,0.15);
    border-radius: var(--radius); padding: 12px 16px; margin-bottom: 20px;
    display: none; align-items: center; gap: 12px;
}
.returning-banner.visible { display: flex; }
.returning-banner i { color: var(--olive); font-size: 1rem; flex-shrink: 0; }
.returning-banner p { font-size: 0.82rem; color: var(--text); line-height: 1.5; }
.returning-banner p strong { color: var(--olive); }

/* ── FORM FIELDS (shared) ────────────────────────────────────── */
.form-field {
    width: 100%; background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 12px 14px;
    color: var(--text); font-family: 'Poppins', sans-serif; font-size: 0.83rem;
    outline: none; transition: border-color 0.2s;
}
.form-field::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-field:focus { border-color: var(--olive); }
.form-field.err { border-color: #c0392b; }
.form-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; display: block; }
.form-label .req { color: #c0392b; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-error { font-size: 0.72rem; color: #c0392b; margin-top: 6px; display: none; }
.form-error.visible { display: block; }

/* ── UTILITIES ───────────────────────────────────────────────── */
.text-olive   { color: var(--olive); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.mt-8         { margin-top: 8px; }
.mt-16        { margin-top: 16px; }
.mt-24        { margin-top: 24px; }
.mt-32        { margin-top: 32px; }
.mb-8         { margin-bottom: 8px; }
.mb-16        { margin-bottom: 16px; }
.mb-24        { margin-bottom: 24px; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 991px) {
    .container-hk { padding: 0 24px; }
    .carousel-slide { grid-template-columns: 1fr; min-height: auto; }
    .slide-text { padding: 60px 32px; min-height: 360px; }
    .slide-image { min-height: 280px; }
    .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .about-visual { display: none; }
    .press-feature { grid-template-columns: 1fr; gap: 44px; }
    .menu-grid { grid-template-columns: repeat(2,1fr); }
    .reviews-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .how-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
    .map-layout { grid-template-columns: 1fr; }
    .map-embed-wrap { height: 260px; }
    .ig-grid { grid-template-columns: repeat(2,1fr); }
    .pop-grid { grid-template-columns: repeat(2,1fr); }
    .qb-inner { flex-wrap: wrap; }
    .qb-item { min-width: 50%; border-bottom: 1px solid var(--border); }
}

@media (max-width: 767px) {
    .container-hk { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .menu-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .platform-cards { grid-template-columns: 1fr; }
    .hk-modal { padding: 32px 20px 26px; }
    .fb-row { grid-template-columns: 1fr; }
    .feedback-box { padding: 28px 20px; }
    .pillars { grid-template-columns: 1fr; }
    .ig-grid { grid-template-columns: repeat(2,1fr); }
    .pop-grid { grid-template-columns: repeat(2,1fr); }
    #mobile-sticky { display: flex; }
    body { padding-bottom: 68px; }
    .slide-title { font-size: clamp(2rem, 8vw, 3rem); }
    .slide-text { padding: 48px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .daily-inner { padding: 10px 20px; }
    .cd-inner { padding: 0 20px; }
}