/* ============================================
   ASIF'S MELTING POT
   Light theme · Halal Comfort Food
   ============================================ */

:root {
    /* Surfaces */
    --bg: #ffffff;
    --bg-soft: #f9fafb;
    --bg-muted: #f3f4f6;
    --bg-dark: #1c1917;
    --bg-darker: #101828;

    /* Accents */
    --yellow: #facc15;
    --yellow-hover: #eab308;
    --yellow-soft: #fef9c3;
    --green: #00c758;
    --green-deep: #0d542b;

    /* Text */
    --text: #1c1917;
    --text-body: #4a5565;
    --text-muted: #6a7282;
    --text-faint: #99a1af;
    --on-dark: #ffffff;

    /* Borders */
    --border: #e7e5e4;
    --border-soft: #f3f4f6;

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --max-width: 1200px;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; width: 100%; }
.section { padding: 90px 0; }

/* ---------- SECTION HEADER ---------- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow-hover);
    margin-bottom: 12px;
}
.eyebrow-light { color: var(--yellow); }
.section-title { font-size: 42px; font-weight: 700; color: var(--text); }
.section-title.light { color: #fff; }
.section-subtitle { font-size: 16px; color: var(--text-muted); margin-top: 16px; }
.section-subtitle.light { color: rgba(255,255,255,0.7); }

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 999px;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 11px 24px; font-size: 14px; }
.btn-primary { background: var(--yellow); color: var(--text); box-shadow: 0 8px 20px rgba(250,204,21,0.35); }
.btn-primary:hover { background: var(--yellow-hover); }
.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.6); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: #fff; color: var(--text); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--text); }
.btn-outline:hover { background: var(--text); color: #fff; }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-outline-dark { background: transparent; color: var(--text); border: 2px solid var(--text); }
.btn-outline-dark:hover { background: var(--text); color: #fff; }

.center-cta { text-align: center; margin-top: 48px; }
.text-link { color: var(--yellow-hover); font-weight: 600; font-size: 14px; transition: gap 0.2s ease; }
.text-link:hover { color: var(--green-deep); }

/* ---------- SCROLL REVEAL ---------- */
.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 76px;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
.nav-container { max-width: var(--max-width); height: 100%; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 48px; width: auto; border-radius: 6px; }
/* white logo over hero, dark logo when scrolled */
.logo-light { display: block; }
.logo-dark  { display: none; }
.navbar.scrolled .logo-light { display: none; }
.navbar.scrolled .logo-dark  { display: block; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 15px; color: rgba(255,255,255,0.9); transition: color 0.2s ease; }
.navbar.scrolled .nav-links a { color: var(--text-body); }
.nav-links a:hover { color: var(--yellow); }
.navbar.scrolled .nav-links a:hover { color: var(--yellow-hover); }
.nav-cta { background: var(--yellow); color: var(--text); font-family: var(--font-heading); font-weight: 600; font-size: 14px; padding: 10px 22px; border-radius: 999px; transition: transform 0.15s ease, background 0.2s ease; }
.nav-cta:hover { transform: translateY(-2px); background: var(--yellow-hover); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { width: 26px; height: 2px; background: #fff; transition: 0.3s; }
.navbar.scrolled .hamburger span { background: var(--text); }

.mobile-menu { position: fixed; inset: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); z-index: 1100; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; align-items: center; justify-content: center; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close { position: absolute; top: 24px; right: 28px; font-size: 38px; color: var(--text); line-height: 1; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.mobile-nav-links a { font-family: var(--font-heading); font-size: 26px; font-weight: 600; color: var(--text); }
.mobile-nav-links a:hover { color: var(--yellow-hover); }
.mobile-cta { background: var(--yellow); padding: 12px 32px; border-radius: 999px; font-size: 20px !important; }

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    transform: scale(1.05);
}
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(28,25,23,0.55), rgba(28,25,23,0.75)); }
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 24px; }
.hero-badge { display: inline-block; background: rgba(250,204,21,0.18); border: 1px solid var(--yellow); color: var(--yellow); padding: 7px 18px; border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: 1px; }
.hero-title { font-size: 68px; font-weight: 800; color: #fff; margin-top: 20px; }
.hero-title span { display: block; }
.hero-accent { color: var(--yellow); }
.hero-text { font-size: 18px; color: rgba(255,255,255,0.85); max-width: 600px; margin: 22px auto 0; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; color: #fff; opacity: 0.7; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,10px); } }

/* Hero load reveal */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.loaded { animation: fadeUp 0.7s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ============================================
   SIGNATURE DISHES
   ============================================ */
.signatures { background: var(--bg); }
.signatures-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dish-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease; display: flex; flex-direction: column; }
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dish-img { position: relative; height: 200px; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dish-card:hover .dish-img img { transform: scale(1.07); }
.dish-badge { position: absolute; top: 12px; left: 12px; background: var(--text); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; }
.dish-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.dish-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.dish-head h3 { font-size: 17px; font-weight: 600; }
.dish-price { color: var(--yellow-hover); font-weight: 700; font-size: 18px; font-family: var(--font-heading); flex-shrink: 0; }
.dish-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; flex: 1; }
.btn-cart { background: var(--bg-muted); color: var(--text); font-family: var(--font-heading); font-weight: 600; font-size: 14px; padding: 11px; border-radius: 10px; transition: background 0.2s ease, color 0.2s ease; }
.btn-cart:hover { background: var(--yellow); }

/* ============================================
   CHEF'S CURATED MENU (dark)
   ============================================ */
.chefs-section { background: var(--bg-dark); }
.chefs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.chef-card { position: relative; height: 380px; border-radius: var(--radius); overflow: hidden; }
.chef-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.chef-card:hover img { transform: scale(1.08); }
.chef-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%); }
.chef-overlay h3 { color: #fff; font-size: 20px; font-weight: 600; }
.chef-meta { color: var(--yellow); font-size: 14px; font-weight: 500; margin: 6px 0 12px; }
.chef-link { color: #fff; font-weight: 600; font-size: 14px; transition: color 0.2s ease; }
.chef-link:hover { color: var(--yellow); }
.chefs-section .center-cta .btn-primary { box-shadow: 0 8px 24px rgba(250,204,21,0.25); }

/* ============================================
   EXPLORE MENU TABS
   ============================================ */
.menu-section { background: var(--bg-soft); }
.menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.menu-tab { background: var(--bg); border: 1px solid var(--border); color: var(--text-body); font-family: var(--font-heading); font-weight: 500; padding: 10px 24px; border-radius: 999px; font-size: 14px; transition: all 0.2s ease; }
.menu-tab:hover { border-color: var(--yellow); color: var(--yellow-hover); }
.menu-tab.active { background: var(--yellow); border-color: var(--yellow); color: var(--text); font-weight: 600; }
.menu-panel { display: none; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu-panel.active { display: grid; animation: fadeTab 0.25s ease; }
@keyframes fadeTab { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.menu-item-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.menu-item-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-item-card img { width: 100%; height: 170px; object-fit: cover; }
.menu-item-info { padding: 18px; position: relative; }
.menu-item-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 6px; padding-right: 60px; }
.menu-item-info p { font-size: 13px; color: var(--text-muted); }
.menu-item-price { position: absolute; top: 18px; right: 18px; color: var(--yellow-hover); font-weight: 700; font-family: var(--font-heading); font-size: 16px; }

/* ============================================
   EVENTS
   ============================================ */
.events-section { background: var(--bg); }
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.event-card { display: flex; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.event-card img { width: 200px; object-fit: cover; flex-shrink: 0; }
.event-body { padding: 28px; }
.event-pill { display: inline-block; background: var(--green); color: #fff; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.event-body h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.event-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }

/* ============================================
   ABOUT
   ============================================ */
.about-section { background: var(--bg-soft); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); }
.about-stat { position: absolute; bottom: -24px; right: -24px; background: var(--yellow); border-radius: var(--radius); padding: 22px 28px; text-align: center; box-shadow: var(--shadow-lg); }
.about-stat-num { display: block; font-family: var(--font-heading); font-size: 44px; font-weight: 800; color: var(--text); line-height: 1; }
.about-stat-label { font-size: 13px; font-weight: 600; color: var(--text); }
.about-text .section-title { text-align: left; }
.about-text p { color: var(--text-body); margin: 16px 0; }
.about-features { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-features li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text); }
.check { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--green); color: #fff; font-size: 13px; flex-shrink: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg); }
.rating-badge { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; }
.rating-num { font-family: var(--font-heading); font-size: 28px; font-weight: 800; color: var(--text); }
.rating-stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; }
.rating-count { color: var(--text-muted); font-size: 14px; }
.testimonials-carousel { overflow: hidden; }
.carousel-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testi-card { flex: 0 0 calc((100% - 48px) / 3); background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.testi-card > p { font-size: 15px; color: var(--text-body); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-author strong { font-size: 15px; font-weight: 600; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: #9ca3af; cursor: pointer; transition: background 0.2s ease, width 0.2s ease; }
.carousel-dot.active { background: var(--yellow-hover); width: 26px; border-radius: 5px; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { background: var(--bg-soft); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(28,25,23,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================
   BLOG
   ============================================ */
.blog-section { background: var(--bg); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-date { font-size: 13px; color: var(--text-faint); font-weight: 500; }
.blog-body h3 { font-size: 19px; font-weight: 600; margin: 10px 0; }
.blog-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { background: var(--yellow); padding: 80px 0; text-align: center; }
.cta-content h2 { font-size: 42px; font-weight: 800; color: var(--text); }
.cta-content p { font-size: 17px; color: rgba(28,25,23,0.7); max-width: 600px; margin: 16px auto 0; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--bg-darker); color: rgba(255,255,255,0.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; }
.footer-logo { height: 54px; width: auto; border-radius: 6px; }
.footer-about { font-size: 14px; margin: 16px 0; line-height: 1.7; }
.halal-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(0,199,88,0.12); border: 1px solid rgba(0,199,88,0.3); border-radius: 12px; padding: 10px 16px; margin-bottom: 20px; }
.halal-dot { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; font-size: 14px; flex-shrink: 0; }
.halal-badge strong { display: block; color: #fff; font-size: 13px; }
.halal-badge span { font-size: 12px; color: var(--green); }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; transition: background 0.2s ease, color 0.2s ease; }
.footer-socials a:hover { background: var(--yellow); color: var(--text); }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 12px; font-size: 14px; }
.footer-col a { transition: color 0.2s ease; }
.footer-col a:hover { color: var(--yellow); }
.footer-contact-list li { line-height: 1.6; }
.footer-hours-list li { display: flex; justify-content: space-between; gap: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px; max-width: var(--max-width); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.back-to-top { color: var(--yellow); font-weight: 600; transition: color 0.2s ease; }
.back-to-top:hover { color: #fff; }

/* ============================================
   POPUP
   ============================================ */
.popup-overlay { position: fixed; inset: 0; background: rgba(28,25,23,0.6); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.popup-overlay.open { opacity: 1; visibility: visible; }
.popup-modal { position: relative; width: 460px; max-width: 90vw; background: #fff; border-radius: 20px; padding: 40px; text-align: center; box-shadow: var(--shadow-lg); transform: scale(0.85); opacity: 0; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease; }
.popup-overlay.open .popup-modal { transform: scale(1); opacity: 1; }
.popup-close { position: absolute; top: 16px; right: 20px; font-size: 28px; color: var(--text-faint); line-height: 1; transition: color 0.2s ease; }
.popup-close:hover { color: var(--text); }
.popup-badge { display: inline-block; background: var(--yellow-soft); color: var(--yellow-hover); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; margin-bottom: 16px; }
.popup-modal h2 { font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.popup-modal > p { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.popup-form input { width: 100%; border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; font-size: 15px; font-family: inherit; }
.popup-form input:focus { outline: 2px solid var(--yellow); outline-offset: 1px; }
.popup-form button { width: 100%; background: var(--yellow); color: var(--text); font-family: var(--font-heading); font-weight: 600; border-radius: 10px; padding: 14px; font-size: 16px; margin-top: 12px; transition: background 0.2s ease; }
.popup-form button:hover { background: var(--yellow-hover); }
.popup-disclaimer { color: var(--text-faint); font-size: 12px; margin-top: 14px; }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 9998; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; color: #fff; line-height: 1; padding: 12px; transition: color 0.2s ease; }
.lightbox-close { top: 24px; right: 32px; font-size: 40px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 56px; }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 56px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--yellow); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .signatures-grid { grid-template-columns: repeat(2, 1fr); }
    .chefs-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 54px; }
    .section-title { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .menu-panel.active { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .section { padding: 64px 0; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero-title { font-size: 42px; }
    .section-title { font-size: 30px; }
    .events-grid { grid-template-columns: 1fr; }
    .event-card { flex-direction: column; }
    .event-card img { width: 100%; height: 200px; }
    .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .about-stat { right: 16px; bottom: -20px; }
    .testi-card { flex: 0 0 100%; }
    .blog-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-content h2 { font-size: 32px; }
    .footer-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
    .signatures-grid { grid-template-columns: 1fr; }
    .chefs-grid { grid-template-columns: 1fr; }
    .menu-panel.active { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 36px; }
    .hero-buttons .btn { width: 100%; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .scroll-reveal, .reveal { opacity: 1 !important; transform: none !important; }
}
