/* =========================================================
   BALAJI PURE VEG — Premium Restaurant Stylesheet
   Luxury Minimalism + Modern Indian Restaurant
   ========================================================= */

:root {
  /* Color Palette */
  --green: #1F4D3A;
  --green-deep: #143427;
  --green-light: #2f6b51;
  --cream: #F8F4EC;
  --cream-dark: #efe7d6;
  --gold: #D9A441;
  --gold-light: #e8c074;
  --gold-deep: #b8862c;
  --charcoal: #222222;
  --charcoal-soft: #444444;
  --white: #FFFFFF;
  --muted: #7d7a73;

  /* Type */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Effects */
  --shadow-sm: 0 4px 16px rgba(31, 77, 58, 0.08);
  --shadow-md: 0 12px 40px rgba(31, 77, 58, 0.12);
  --shadow-lg: 0 24px 70px rgba(31, 77, 58, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
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(--serif); font-weight: 600; line-height: 1.12; color: var(--green); letter-spacing: -0.01em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Reusable bits ---------- */
.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-block;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.divider-leaf {
  display: flex; align-items: center; justify-content: center; gap: 14px; margin: 16px auto 0;
  color: var(--gold);
}
.divider-leaf::before, .divider-leaf::after {
  content: ''; height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold));
}
.divider-leaf::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em; transition: all 0.4s var(--ease); position: relative; overflow: hidden;
  font-family: var(--sans);
}
.btn-primary { background: var(--gold); color: var(--green-deep); box-shadow: 0 10px 28px rgba(217, 164, 65, 0.4); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 16px 38px rgba(217, 164, 65, 0.5); }
.btn-outline { border: 1.5px solid var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: var(--cream); transform: translateY(-3px); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,0.7); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--green); transform: translateY(-3px); }
.btn-lg { padding: 18px 40px; font-size: 1.02rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 22px 0; transition: all 0.45s var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  padding: 13px 0; box-shadow: 0 6px 30px rgba(0,0,0,0.07);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.5rem; color: var(--green-deep);
  box-shadow: 0 4px 14px rgba(217,164,65,0.45); flex-shrink: 0;
}
.brand-text { line-height: 1.05; }
.brand-name { font-family: var(--serif); font-weight: 700; font-size: 1.32rem; color: #fff; letter-spacing: 0.01em; transition: color 0.4s; }
.brand-tag { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--gold-light); font-weight: 600; }
.navbar.scrolled .brand-name { color: var(--green); }

.nav-menu { display: flex; align-items: center; gap: 38px; }
.nav-menu a {
  color: #fff; font-weight: 500; font-size: 0.95rem; position: relative; transition: color 0.3s;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--gold); transition: width 0.35s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.navbar.scrolled .nav-menu a { color: var(--charcoal); }
.navbar.scrolled .nav-menu a:hover { color: var(--green); }

.nav-cta { background: var(--gold); color: var(--green-deep); padding: 11px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.35s var(--ease); box-shadow: 0 6px 18px rgba(217,164,65,0.4); }
.nav-cta:hover { transform: translateY(-2px); background: var(--gold-light); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1100; }
.menu-toggle span { width: 26px; height: 2.5px; background: #fff; border-radius: 4px; transition: all 0.35s var(--ease); }
.navbar.scrolled .menu-toggle span { background: var(--green); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--green); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--green); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, rgba(20,52,39,0.92) 0%, rgba(20,52,39,0.66) 45%, rgba(20,52,39,0.4) 100%);
}
.hero-content { max-width: 760px; padding: 130px 0 80px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem); color: #fff; margin-bottom: 22px; line-height: 1.06;
}
.hero h1 .accent { color: var(--gold-light); font-style: italic; }
.hero-sub { color: rgba(255,255,255,0.9); font-size: clamp(1rem, 2vw, 1.18rem); max-width: 620px; margin-bottom: 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.trust-bar { display: flex; flex-wrap: wrap; gap: 14px 26px; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.92); font-size: 0.9rem; font-weight: 500; }
.trust-item i { color: var(--gold-light); font-size: 0.85rem; }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll .mouse { width: 22px; height: 36px; border: 1.5px solid rgba(255,255,255,0.6); border-radius: 14px; position: relative; }
.hero-scroll .mouse::after { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--gold-light); border-radius: 3px; animation: scrollWheel 1.6s infinite; }
@keyframes scrollWheel { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 18px; } }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories { padding: 100px 0; background: var(--cream); }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; height: 280px;
  box-shadow: var(--shadow-sm); transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: block;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.cat-card:hover img { transform: scale(1.1); }
.cat-card .cat-overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,52,39,0.92) 0%, rgba(20,52,39,0.25) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; transition: background 0.4s;
}
.cat-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 4px; }
.cat-card .cat-preview { color: var(--gold-light); font-size: 0.82rem; max-height: 0; opacity: 0; overflow: hidden; transition: all 0.45s var(--ease); }
.cat-card:hover .cat-preview { max-height: 60px; opacity: 1; margin-top: 4px; }
.cat-card .cat-arrow { position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(6px); display: grid; place-items: center; color: #fff; transition: all 0.4s; transform: translateY(-6px); opacity: 0; }
.cat-card:hover .cat-arrow { transform: translateY(0); opacity: 1; background: var(--gold); color: var(--green-deep); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { padding: 110px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.why-card {
  text-align: center; padding: 48px 32px; border-radius: var(--radius-lg);
  background: var(--cream); transition: all 0.45s var(--ease); border: 1px solid transparent;
}
.why-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--cream-dark); }
.why-icon { width: 78px; height: 78px; margin: 0 auto 24px; border-radius: 50%; background: var(--green); display: grid; place-items: center; color: var(--gold-light); font-size: 1.8rem; transition: all 0.45s var(--ease); }
.why-card:hover .why-icon { background: var(--gold); color: var(--green-deep); transform: rotate(-8deg) scale(1.06); }
.why-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.why-card p { color: var(--muted); font-size: 0.96rem; }

/* ============================================================
   SIGNATURE DISHES SLIDER
   ============================================================ */
.signature { padding: 110px 0; background: var(--green); position: relative; overflow: hidden; }
.signature::before { content: ''; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(217,164,65,0.18), transparent 70%); }
.signature .section-head h2 { color: #fff; }
.signature .eyebrow { color: var(--gold-light); }
.signature .section-head p { color: rgba(255,255,255,0.7); }
.slider-wrap { position: relative; }
.slider-track { display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 8px 4px 28px; scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.slider-track::-webkit-scrollbar { display: none; }
.dish-card {
  flex: 0 0 300px; scroll-snap-align: start; background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); transition: transform 0.45s var(--ease);
}
.dish-card:hover { transform: translateY(-8px); }
.dish-img { height: 220px; overflow: hidden; position: relative; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.dish-card:hover .dish-img img { transform: scale(1.08); }
.dish-badge { position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--green-deep); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 30px; }
.dish-info { padding: 22px; }
.dish-info h3 { font-size: 1.32rem; margin-bottom: 6px; }
.dish-info p { color: var(--muted); font-size: 0.86rem; margin-bottom: 14px; min-height: 38px; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; }
.dish-price { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; color: var(--green); }
.dish-price small { font-size: 0.8rem; color: var(--gold-deep); font-family: var(--sans); font-weight: 600; }
.veg-dot { width: 16px; height: 16px; border: 1.5px solid #2e8b3d; display: inline-grid; place-items: center; border-radius: 3px; }
.veg-dot::after { content: ''; width: 8px; height: 8px; background: #2e8b3d; border-radius: 50%; }

.slider-nav { display: flex; gap: 12px; justify-content: center; margin-top: 18px; }
.slider-btn { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4); color: #fff; display: grid; place-items: center; transition: all 0.35s var(--ease); }
.slider-btn:hover { background: var(--gold); color: var(--green-deep); border-color: var(--gold); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding: 110px 0; background: var(--cream); position: relative; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.review-card {
  background: rgba(255,255,255,0.65); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8); border-radius: var(--radius-lg); padding: 36px 30px;
  box-shadow: var(--shadow-sm); transition: all 0.45s var(--ease); position: relative;
}
.review-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.review-card .quote-icon { font-size: 2.6rem; color: var(--gold); opacity: 0.35; font-family: var(--serif); line-height: 0.5; margin-bottom: 10px; }
.review-stars { color: var(--gold); margin-bottom: 14px; font-size: 0.95rem; }
.review-text { color: var(--charcoal-soft); font-size: 0.98rem; margin-bottom: 22px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--green); color: var(--gold-light); display: grid; place-items: center; font-weight: 700; font-family: var(--serif); font-size: 1.1rem; }
.review-author strong { display: block; color: var(--green); font-size: 0.98rem; }
.review-author span { color: var(--muted); font-size: 0.8rem; }

/* ============================================================
   GALLERY / INSTAGRAM
   ============================================================ */
.gallery { padding: 110px 0; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item .ig-overlay { position: absolute; inset: 0; background: rgba(31,77,58,0.65); display: grid; place-items: center; color: #fff; font-size: 1.6rem; opacity: 0; transition: opacity 0.4s; }
.gallery-item:hover .ig-overlay { opacity: 1; }
.gallery-cta { text-align: center; margin-top: 44px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { padding: 120px 0; background: linear-gradient(rgba(20,52,39,0.9), rgba(20,52,39,0.9)), url('https://www.genspark.ai/api/files/s/JKsdpdQx') center/cover fixed; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(2rem, 5vw, 3.4rem); margin-bottom: 18px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 540px; margin: 0 auto 34px; }
.cta-banner .hero-actions { justify-content: center; margin-bottom: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-deep); color: rgba(255,255,255,0.75); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 44px; margin-bottom: 56px; }
.footer .brand-name { color: #fff; }
.footer-about p { margin-top: 18px; font-size: 0.92rem; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 22px; font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; }
.footer-col a, .footer-col p { display: block; color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact i { color: var(--gold-light); width: 20px; margin-right: 8px; }
.footer-contact p { display: flex; align-items: flex-start; }
.newsletter-form { display: flex; gap: 8px; margin-top: 16px; }
.newsletter-form input { flex: 1; padding: 13px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: #fff; font-family: inherit; font-size: 0.88rem; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button { width: 48px; height: 48px; border-radius: 50%; background: var(--gold); color: var(--green-deep); display: grid; place-items: center; flex-shrink: 0; transition: all 0.3s; }
.newsletter-form button:hover { background: var(--gold-light); }
.social-row { display: flex; gap: 12px; margin-top: 22px; }
.social-row a { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: rgba(255,255,255,0.8); transition: all 0.35s var(--ease); }
.social-row a:hover { background: var(--gold); color: var(--green-deep); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ============================================================
   PAGE HEADER (sub pages)
   ============================================================ */
.page-hero { position: relative; padding: 180px 0 90px; text-align: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(20,52,39,0.88), rgba(20,52,39,0.8)); }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5.5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 14px auto 0; }
.breadcrumb { margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-controls { position: sticky; top: 64px; z-index: 90; background: rgba(248,244,236,0.96); backdrop-filter: blur(12px); padding: 22px 0; box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
.menu-search { max-width: 560px; margin: 0 auto 18px; position: relative; }
.menu-search input { width: 100%; padding: 15px 20px 15px 50px; border-radius: 50px; border: 1.5px solid var(--cream-dark); background: #fff; font-family: inherit; font-size: 0.98rem; transition: border 0.3s; }
.menu-search input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(217,164,65,0.12); }
.menu-search i { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--gold-deep); }
.cat-filters { display: flex; gap: 10px; overflow-x: auto; padding: 4px 24px; scrollbar-width: none; max-width: var(--maxw); margin: 0 auto; flex-wrap: nowrap; }
.cat-filters::-webkit-scrollbar { display: none; }
.filter-chip { white-space: nowrap; padding: 9px 20px; border-radius: 50px; background: #fff; border: 1.5px solid var(--cream-dark); color: var(--charcoal-soft); font-size: 0.88rem; font-weight: 500; transition: all 0.3s var(--ease); flex-shrink: 0; }
.filter-chip:hover { border-color: var(--gold); color: var(--green); }
.filter-chip.active { background: var(--green); color: var(--cream); border-color: var(--green); }

.menu-body { padding: 56px 0 90px; background: var(--white); }
.menu-cat { margin-bottom: 64px; scroll-margin-top: 200px; }
.menu-cat-head { display: flex; align-items: center; gap: 18px; margin-bottom: 8px; }
.menu-cat-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.menu-cat-head .line { flex: 1; height: 1px; background: var(--cream-dark); }
.menu-cat > .cat-desc { color: var(--muted); margin-bottom: 28px; font-size: 0.96rem; }

.menu-subcat { margin-top: 34px; }
.menu-subcat h3 { font-size: 1.35rem; color: var(--gold-deep); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; font-family: var(--serif); }
.menu-subcat h3 i { font-size: 0.9rem; }

.dish-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 40px; }
.dish-row {
  display: flex; align-items: flex-start; gap: 14px; padding: 14px 4px;
  border-bottom: 1px dashed var(--cream-dark); transition: all 0.3s;
}
.dish-row:hover { background: var(--cream); border-radius: 12px; padding-left: 12px; padding-right: 12px; border-bottom-color: transparent; }
.dish-row .veg-dot { margin-top: 5px; flex-shrink: 0; }
.dish-row .dish-detail { flex: 1; }
.dish-row .dish-name { font-weight: 600; color: var(--charcoal); font-size: 1rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dish-row .dish-name .tag { font-size: 0.62rem; background: var(--gold); color: var(--green-deep); padding: 2px 8px; border-radius: 20px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.dish-row .dish-desc { color: var(--muted); font-size: 0.82rem; margin-top: 2px; }
.dish-row .dish-rate { font-family: var(--serif); font-weight: 700; color: var(--green); font-size: 1.12rem; white-space: nowrap; }

.menu-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.menu-empty i { font-size: 2.5rem; color: var(--cream-dark); margin-bottom: 16px; display:block; }

.menu-note { text-align: center; margin-top: 40px; padding: 24px; background: var(--cream); border-radius: var(--radius); color: var(--muted); font-size: 0.86rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 100px 0; }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-imgs { position: relative; }
.about-imgs img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; height: 480px; object-fit: cover; }
.about-imgs .badge-circle { position: absolute; bottom: -28px; right: -20px; width: 150px; height: 150px; border-radius: 50%; background: var(--gold); color: var(--green-deep); display: grid; place-items: center; text-align: center; box-shadow: var(--shadow-md); padding: 20px; }
.about-imgs .badge-circle strong { font-family: var(--serif); font-size: 2rem; display: block; line-height: 1; }
.about-imgs .badge-circle span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.about-text-block p { color: var(--charcoal-soft); margin-bottom: 18px; font-size: 1.02rem; }
.value-list { margin-top: 24px; display: grid; gap: 14px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list i { color: var(--gold); margin-top: 4px; }
.value-list strong { color: var(--green); }

.stats-strip { background: var(--green); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item strong { font-family: var(--serif); font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--gold-light); display: block; line-height: 1; }
.stat-item span { color: rgba(255,255,255,0.8); font-size: 0.92rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 8px; display: block; }

/* ============================================================
   VISIT PAGE
   ============================================================ */
.visit-section { padding: 100px 0; }
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: stretch; }
.info-cards { display: grid; gap: 20px; }
.info-card { background: var(--cream); border-radius: var(--radius); padding: 28px; display: flex; gap: 18px; align-items: flex-start; transition: all 0.4s var(--ease); }
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); background: #fff; }
.info-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--green); color: var(--gold-light); display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0; }
.info-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.info-card p { color: var(--charcoal-soft); font-size: 0.94rem; }
.info-card a { color: var(--green); font-weight: 600; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.dining-options { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.dining-pill { display: flex; align-items: center; gap: 10px; padding: 12px 22px; background: var(--white); border: 1.5px solid var(--cream-dark); border-radius: 50px; font-weight: 600; color: var(--green); font-size: 0.92rem; }
.dining-pill i { color: var(--gold-deep); }
.visit-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hours-table { width: 100%; margin-top: 8px; }
.hours-table tr { border-bottom: 1px solid var(--cream-dark); }
.hours-table td { padding: 9px 0; font-size: 0.92rem; }
.hours-table td:first-child { color: var(--charcoal-soft); font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--green); font-weight: 600; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-split { gap: 40px; }
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; width: 78%; max-width: 340px; height: 100vh;
    background: var(--green-deep); flex-direction: column; justify-content: center; gap: 30px;
    padding: 60px 40px; transition: right 0.5s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { color: #fff !important; font-size: 1.3rem; font-family: var(--serif); }
  .navbar.scrolled .nav-menu a { color: #fff !important; }
  .nav-cta { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { grid-template-columns: 1fr; }
  .about-imgs { order: -1; }
  .about-imgs img { height: 360px; }
  .visit-grid { grid-template-columns: 1fr; }
  .dish-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { background-attachment: scroll; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 120px 0 70px; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .section-head { margin-bottom: 40px; }
  .categories, .why, .signature, .reviews, .gallery, .about-story, .visit-section { padding: 70px 0; }
  .cta-banner { padding: 80px 0; }
  .about-imgs .badge-circle { width: 110px; height: 110px; right: 10px; }
}
