/* ================================================================
   THE WEEKLY MENU — Global Stylesheet
   ================================================================ */

/* ── TOKENS ── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    #8B6F2E;
  --gold-pale:   rgba(201,168,76,0.12);
  --charcoal:    #0E0D0B;
  --dark:        #161410;
  --surface:     #1C1A16;
  --surface2:    #231F19;
  --cream:       #F2EBD9;
  --cream-dim:   #C8BFA8;
  --warm-white:  #FAF6EE;
  --red:         #C0392B;
  --radius:      4px;
  --transition:  0.3s ease;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--charcoal);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }

/* ── TYPOGRAPHY ── */
.serif {
  font-family: 'Cormorant Garamond', serif;
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 6%;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14,13,11,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 6%;
  border-bottom-color: var(--gold-pale);
}

.logo {
  display: flex; flex-direction: column; line-height: 1; gap: 2px;
}
.logo-eyebrow {
  font-size: 10px; letter-spacing: 0.35em;
  color: var(--gold); text-transform: uppercase; font-weight: 400;
}
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 600;
  color: var(--warm-white); letter-spacing: 0.03em;
}

.site-nav {
  display: flex; gap: 36px; align-items: center;
}
.site-nav a {
  color: var(--cream-dim); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400;
  position: relative; transition: color var(--transition);
  padding-bottom: 4px;
}
.site-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.site-nav a:hover,
.site-nav a.active { color: var(--gold); }
.site-nav a:hover::after,
.site-nav a.active::after { width: 100%; }

.header-cta {
  border: 1px solid var(--gold); color: var(--gold);
  padding: 9px 22px; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.header-cta:hover { background: var(--gold); color: var(--charcoal); }

/* hamburger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; z-index: 300;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.35s, opacity 0.35s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--gold); overflow: hidden; white-space: nowrap;
  padding: 13px 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  color: var(--charcoal); font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; margin: 0 40px;
}
.ticker-track span::before { content: '✦'; margin-right: 40px; opacity: 0.45; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION HELPERS ── */
.section { padding: 100px 8%; }
.section-sm { padding: 70px 8%; }

.section-label {
  display: flex; align-items: center; gap: 14px; margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 30px; height: 1px; background: var(--gold); flex-shrink: 0;
}
.section-label span {
  font-size: 10px; letter-spacing: 0.30em; color: var(--gold); text-transform: uppercase;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300; line-height: 1.08;
  color: var(--warm-white);
}
.section-title em { font-style: italic; color: var(--gold-light); }

.section-body {
  font-size: 16px; color: var(--cream-dim);
  line-height: 1.85; font-weight: 300;
  max-width: 560px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-block;
  background: var(--gold); color: var(--charcoal);
  padding: 15px 36px; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600; border-radius: var(--radius);
  transition: background var(--transition), transform 0.2s;
  border: none;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(242,235,217,0.28);
  color: var(--cream); padding: 15px 36px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), transform 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold); padding: 15px 36px;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); }

/* ── PAGE HERO BANNER ── */
.page-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: flex-end;
  padding: 0 8% 70px;
  overflow: hidden; margin-top: 0;
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(14,13,11,0.96) 0%, rgba(14,13,11,0.55) 60%, rgba(14,13,11,0.35) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .section-title { font-size: clamp(44px, 6vw, 80px); }

/* ── DIVIDER ── */
.divider {
  height: 1px; background: var(--gold-pale); margin: 0 8%;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--gold-pale);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 60px; padding: 70px 8% 50px;
}
.footer-brand .logo-name { font-size: 22px; }
.footer-tagline { font-size: 12px; color: var(--gold-dim); margin-top: 8px; letter-spacing: 0.1em; }
.footer-about { font-size: 13px; color: var(--cream-dim); line-height: 1.8; margin-top: 16px; }

.footer-heading {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-links-col { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
  font-size: 13px; color: var(--cream-dim); transition: color var(--transition);
}
.footer-links-col a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px; font-size: 13px; color: var(--cream-dim);
}
.footer-contact-item .icon { flex-shrink: 0; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--gold-pale);
  padding: 20px 8%;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--gold-dim);
}
.footer-bottom a { color: var(--gold-dim); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 54px; height: 54px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 22px;
  z-index: 300; box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 32px rgba(37,211,102,0.55); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity 0.85s ease, transform 0.85s 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; }

/* ── GRAIN OVERLAY ── */
.grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ── HOMEPAGE SPECIFIC ── */

/* Hero */
.home-hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; padding: 0 8%; overflow: hidden;
}
.home-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(125deg, rgba(14,13,11,0.93) 0%, rgba(14,13,11,0.55) 55%, rgba(14,13,11,0.88) 100%),
              url('https://images.unsplash.com/photo-1603894584373-5ac82b2ae398?w=1900&q=80') center/cover no-repeat;
  animation: heroZoom 14s ease-out forwards;
}
.home-hero-content { position: relative; z-index: 3; max-width: 720px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 10px; letter-spacing: 0.34em; color: var(--gold); text-transform: uppercase;
}
.home-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 300; line-height: 1.03; letter-spacing: -0.01em;
  color: var(--warm-white); margin-bottom: 22px;
}
.home-hero h1 em { font-style: italic; color: var(--gold-light); }
.home-hero .sub {
  font-size: 16px; color: var(--cream-dim);
  line-height: 1.75; max-width: 460px;
  margin-bottom: 44px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badges {
  position: absolute; bottom: 50px; right: 8%; z-index: 3;
  display: flex; flex-direction: column; gap: 10px;
  animation: fadeIn 1.4s 0.8s both;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.badge {
  background: rgba(22,20,16,0.88); backdrop-filter: blur(8px);
  border: 1px solid var(--gold-pale); border-radius: var(--radius);
  padding: 12px 18px; display: flex; align-items: center; gap: 12px;
}
.badge-icon { font-size: 20px; }
.badge-text { font-size: 12px; color: var(--cream-dim); }
.badge-text strong { display: block; color: var(--cream); font-size: 14px; font-weight: 500; }

/* Featured Dishes Grid */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin-top: 60px;
}
.dish-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: default;
}
.dish-card.large { grid-row: span 2; aspect-ratio: auto; }
.dish-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.dish-card:hover .dish-img { transform: scale(1.07); }
.dish-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,13,11,0.95) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
}
.dish-tag {
  display: inline-block; background: var(--gold); color: var(--charcoal);
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; padding: 4px 10px; border-radius: 2px;
  margin-bottom: 8px; width: fit-content;
}
.dish-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400;
  color: var(--warm-white); line-height: 1.2; margin-bottom: 5px;
}
.dish-price { color: var(--gold-light); font-size: 14px; font-weight: 300; }

/* About split */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; padding: 100px 8%;
  background: var(--surface);
}
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 55%; height: 55%;
  border: 1px solid rgba(201,168,76,0.18); border-radius: 2px; z-index: 0;
}
.about-img {
  width: 100%; height: 500px; object-fit: cover;
  border-radius: var(--radius); position: relative; z-index: 1;
}
.about-stats { display: flex; gap: 40px; margin-top: 44px; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px; font-weight: 300; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 11px; letter-spacing: 0.1em; color: var(--cream-dim);
  text-transform: uppercase; margin-top: 5px;
}

/* Reviews */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin-top: 60px;
}
.review-card {
  background: var(--surface); padding: 40px 32px;
  transition: background var(--transition);
}
.review-card:hover { background: var(--surface2); }
.stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 16px; }
.review-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 300; font-style: italic;
  color: var(--cream); line-height: 1.65; margin-bottom: 22px;
}
.review-divider { width: 30px; height: 1px; background: var(--gold); margin-bottom: 18px; }
.reviewer-name { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); }
.reviewer-info { font-size: 11px; color: var(--gold-dim); margin-top: 4px; }

/* Gallery */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 250px 250px;
  gap: 3px;
}
.g-item { overflow: hidden; }
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(4) { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.45s;
  filter: brightness(0.82);
}
.g-item:hover img { transform: scale(1.08); filter: brightness(1); }

/* ── MENU PAGE ── */
.menu-controls {
  background: var(--surface); padding: 28px 8%;
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
  position: sticky; top: 64px; z-index: 100;
  border-bottom: 1px solid var(--gold-pale);
}
.menu-search {
  background: var(--surface2); border: 1px solid var(--gold-pale);
  color: var(--cream); padding: 10px 18px; border-radius: var(--radius);
  font-size: 14px; font-family: inherit; width: 240px;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.menu-search::placeholder { color: var(--cream-dim); }
.menu-search:focus { outline: none; border-color: var(--gold); }

.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 8px 18px; border-radius: 30px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--gold-pale); color: var(--cream-dim);
  cursor: pointer; transition: background var(--transition), color var(--transition), border-color var(--transition);
  background: transparent;
}
.pill.active, .pill:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }

.menu-category { padding: 70px 8% 0; }
.menu-category:last-child { padding-bottom: 100px; }
.category-heading {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 36px; padding-bottom: 18px;
  border-bottom: 1px solid var(--gold-pale);
}
.category-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 300; color: var(--warm-white);
}
.category-count {
  font-size: 11px; letter-spacing: 0.14em; color: var(--gold-dim); margin-top: 6px;
}
.category-emoji { font-size: 28px; }

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3px;
}
.menu-item-card {
  background: var(--surface); padding: 22px 24px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background var(--transition); cursor: default;
  border-left: 2px solid transparent;
}
.menu-item-card:hover { background: var(--surface2); border-left-color: var(--gold); }
.item-info {}
.item-name { font-size: 15px; color: var(--cream); font-weight: 400; }
.item-veg {
  display: inline-block; width: 10px; height: 10px;
  border: 1.5px solid #22c55e; border-radius: 2px;
  margin-right: 6px; vertical-align: middle; position: relative;
}
.item-veg::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px; background: #22c55e; border-radius: 50%;
}
.item-nonveg {
  display: inline-block; width: 10px; height: 10px;
  border: 1.5px solid var(--red); border-radius: 2px;
  margin-right: 6px; vertical-align: middle; position: relative;
}
.item-nonveg::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 5px; height: 5px; background: var(--red); border-radius: 50%;
}
.item-price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; color: var(--gold);
  white-space: nowrap; margin-left: 20px;
}

.no-results {
  padding: 60px 8%; text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; color: var(--cream-dim); display: none;
}

/* ── PLANS PAGE ── */
.plans-hero-section { padding: 100px 8%; background: var(--surface); }

.includes-bar {
  background: var(--surface2); padding: 0 8%;
  border-top: 1px solid var(--gold-pale);
  border-bottom: 1px solid var(--gold-pale);
}
.includes-inner {
  display: flex; justify-content: center; gap: 0; flex-wrap: wrap;
}
.include-item {
  padding: 22px 36px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--cream-dim);
  border-right: 1px solid var(--gold-pale);
}
.include-item:last-child { border-right: none; }
.include-item .i-icon { font-size: 20px; }
.include-item strong { color: var(--cream); }

.plans-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  margin-top: 60px;
}
.plan-card {
  background: var(--surface); padding: 52px 44px;
  transition: background var(--transition); position: relative;
}
.plan-card.featured { background: var(--gold); }
.plan-card:not(.featured):hover { background: var(--surface2); }

.plan-badge {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 2px; margin-bottom: 28px;
}
.plan-card.featured .plan-badge { background: var(--charcoal); color: var(--gold); }
.plan-card:not(.featured) .plan-badge { background: var(--gold-pale); color: var(--gold); }

.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 300;
  color: var(--warm-white); margin-bottom: 10px;
}
.plan-card.featured .plan-name { color: var(--charcoal); }

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; font-weight: 600; line-height: 1;
  color: var(--gold-light);
}
.plan-card.featured .plan-price { color: var(--charcoal); }
.plan-price sub { font-size: 20px; font-weight: 300; }

.plan-divider { height: 1px; background: var(--gold-pale); margin: 28px 0; }
.plan-card.featured .plan-divider { background: rgba(14,13,11,0.2); }

.plan-desc { font-size: 14px; color: var(--cream-dim); line-height: 1.75; margin-bottom: 20px; }
.plan-card.featured .plan-desc { color: rgba(14,13,11,0.7); }

.plan-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 36px; }
.plan-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--cream-dim);
}
.plan-card.featured .plan-feature { color: rgba(14,13,11,0.8); }
.plan-feature::before { content: '✓'; color: var(--gold); font-size: 12px; }
.plan-card.featured .plan-feature::before { color: var(--charcoal); }

.plan-cta-dark {
  display: inline-block; padding: 14px 30px;
  background: var(--charcoal); color: var(--gold);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--radius); transition: opacity var(--transition);
}
.plan-cta-dark:hover { opacity: 0.85; }

.plan-cta-border {
  display: inline-block; padding: 14px 30px;
  border: 1px solid var(--gold-pale); color: var(--gold);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--radius); transition: border-color var(--transition), background var(--transition);
}
.plan-cta-border:hover { border-color: var(--gold); background: var(--gold-pale); }

/* FAQ */
.faq-section { background: var(--surface2); padding: 100px 8%; }
.faq-list { max-width: 760px; margin: 52px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--gold-pale);
}
.faq-q {
  width: 100%; padding: 22px 0; text-align: left;
  font-size: 15px; color: var(--cream); font-weight: 400;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; background: none; border: none; font-family: inherit;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  color: var(--gold); font-size: 20px; font-weight: 300;
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  font-size: 14px; color: var(--cream-dim); line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 22px; }

/* ── BULK PAGE ── */
.serves-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 3px; margin-top: 52px;
}
.serve-card {
  background: var(--surface); padding: 36px 28px;
  text-align: center; transition: background var(--transition);
  border-bottom: 2px solid transparent; cursor: default;
}
.serve-card:hover { background: var(--surface2); border-bottom-color: var(--gold); }
.serve-icon { font-size: 36px; margin-bottom: 16px; }
.serve-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--warm-white); margin-bottom: 8px; }
.serve-desc { font-size: 13px; color: var(--cream-dim); line-height: 1.7; }

.process-section { background: var(--surface2); padding: 100px 8%; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; margin-top: 60px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: var(--gold-pale); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--charcoal);
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-title { font-size: 15px; color: var(--cream); font-weight: 500; margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--cream-dim); line-height: 1.7; }

.bulk-form-section { background: var(--surface); padding: 100px 8%; }
.bulk-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.bulk-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field {
  background: var(--surface2); border: 1px solid var(--gold-pale);
  color: var(--cream); padding: 14px 18px; border-radius: var(--radius);
  font-size: 14px; font-family: inherit; width: 100%;
  transition: border-color var(--transition);
}
.form-field::placeholder { color: var(--cream-dim); }
.form-field:focus { outline: none; border-color: var(--gold); }
textarea.form-field { resize: vertical; min-height: 120px; }
select.form-field { cursor: pointer; }
select.form-field option { background: var(--surface2); }

.contact-highlights { display: flex; flex-direction: column; gap: 28px; }
.contact-highlight-item { display: flex; gap: 18px; align-items: flex-start; }
.ch-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border: 1px solid var(--gold-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.ch-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.ch-value { font-size: 15px; color: var(--cream); line-height: 1.6; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; margin-top: 60px;
}
.contact-form-section {}
.contact-info-section {}

.info-card {
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 32px; padding-bottom: 32px;
  border-bottom: 1px solid var(--gold-pale);
}
.info-card:last-child { border-bottom: none; }
.info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1px solid var(--gold-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.info-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.info-value { font-size: 15px; color: var(--cream); line-height: 1.7; }
.info-value a { color: var(--gold-light); transition: color var(--transition); }
.info-value a:hover { color: var(--gold); }

.map-wrapper {
  margin-top: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--gold-pale); height: 320px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; filter: grayscale(50%) sepia(10%); }

/* ── MOBILE RESPONSIVENESS ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .site-header { padding: 16px 5%; }
  .site-nav { display: none; flex-direction: column; position: fixed; inset: 0;
    background: var(--dark); justify-content: center; align-items: center; gap: 28px;
    z-index: 250; }
  .site-nav.mobile-open { display: flex; }
  .site-nav a { font-size: 18px; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }

  .hero-badges { display: none; }
  .home-hero h1 { font-size: 44px; }

  .about-split { grid-template-columns: 1fr; gap: 44px; }
  .about-img { height: 320px; }
  .about-img-wrap::before { display: none; }

  .dishes-grid { grid-template-columns: 1fr 1fr; }
  .dish-card.large { grid-row: span 1; grid-column: span 2; aspect-ratio: 16/9; }

  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item:nth-child(1), .g-item:nth-child(4) { grid-column: span 1; }
  .g-item { height: 180px; }

  .plans-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 36px 28px; }

  .serves-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }

  .bulk-form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 52px 6% 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .menu-controls { position: static; }
  .menu-search { width: 100%; }

  .includes-inner { flex-direction: column; }
  .include-item { border-right: none; border-bottom: 1px solid var(--gold-pale); }
  .include-item:last-child { border-bottom: none; }

  .section, .section-sm { padding: 64px 6%; }
  .about-split, .bulk-form-section, .contact-section { padding: 64px 6%; }
  .page-hero { padding: 0 6% 50px; }
}
@media(max-width:768px){
    .bulk-section-home{grid-template-columns:1fr!important;}
    .bulk-section-home>div:first-child{height:240px!important;}
    .bulk-section-home>div:last-child{padding:48px 6%!important;}
  }

  /* ── Review card enhancements ── */
  .review-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
  }
  .google-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    color: rgba(255,255,255,.45);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
  }

  .review-top-row .stars {
    margin-bottom: 0;
  }

  /* ── Zomato float adjustments — remove padding ── */
  .zomato-float, .wa-float {
    padding: 0;
    overflow: hidden;
  }

  /* ── Zomato Brand Buttons ── */
  .btn-zomato {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e23744;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 13px 26px;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(226,55,68,.35);
  }
  .btn-zomato::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform .55s ease;
  }
  .btn-zomato:hover::before { transform: translateX(100%); }
  .btn-zomato:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(226,55,68,.5);
  }
  .zomato-flame {
    display: inline-block;
    animation: flicker 1.4s ease-in-out infinite alternate;
    font-size: 15px;
  }
  @keyframes flicker {
    0%   { transform: scale(1) rotate(-4deg); opacity:.9; }
    40%  { transform: scale(1.15) rotate(3deg); opacity:1; }
    70%  { transform: scale(1.05) rotate(-2deg); opacity:.95; }
    100% { transform: scale(1.2) rotate(5deg); opacity:1; }
  }

  /* ── Header Zomato button ── */
  .header-zomato-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e23744;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 2px 12px rgba(226,55,68,.3);
    white-space: nowrap;
  }
  .header-zomato-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(226,55,68,.5);
  }
  @media(max-width:900px){ .header-zomato-btn { display: none; } }

  /* ── Floating Zomato pill ── */
  .zomato-float {
    position: fixed;
    bottom: 92px;   /* sits just above the WhatsApp float */
    right: 24px;
    z-index: 999;
    background: #e23744;
    color: #fff;
    font-size: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(226,55,68,.5);
    animation: zomato-pulse 2.5s ease-in-out infinite;
    transition: transform .2s;
  }
  .zomato-float:hover {
    transform: scale(1.12);
    animation-play-state: paused;
  }
  @keyframes zomato-pulse {
    0%, 100% { box-shadow: 0 4px 18px rgba(226,55,68,.5); }
    50%       { box-shadow: 0 4px 30px rgba(226,55,68,.8), 0 0 0 8px rgba(226,55,68,.12); }
  }

  /* ── Footer Map ── */
  .footer-map-row {
    width: 100%;
    height: 280px;
    border-top: 1px solid rgba(255,255,255,.07);
    overflow: hidden;
    line-height: 0;
  }
  .footer-map-row iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(30%) contrast(1.05);
    opacity: .92;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  @media(max-width:768px){
    .footer-map-row { height: 200px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }
