@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── VARIABLES ────────────────────────────────────────────── */
:root {
  --maroon:      oklch(32% 0.12 25);
  --maroon-deep: oklch(24% 0.10 25);
  --gold:        oklch(74% 0.14 80);
  --copper:      oklch(58% 0.12 50);
  --cream:       oklch(97% 0.025 85);
  --cream-card:  oklch(98.5% 0.018 85);
  --border:      oklch(85% 0.04 75);
  --text-dark:   oklch(22% 0.08 25);
  --text-maroon: oklch(30% 0.11 25);

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1340px;
  --nav-h: 72px;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font-family: inherit; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2rem;
}
.navbar-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.logo-link { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.logo-img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid var(--gold); }
.logo-text h1 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-maroon);
  line-height: 1.1;
}
.logo-text span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-maroon);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { border-bottom-color: var(--gold); color: var(--text-dark); }
.btn-nav {
  background: #f5c518;
  color: var(--maroon-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 2px solid var(--maroon-deep);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--maroon-deep); color: #f5c518; transform: translateY(-1px); }

/* ─── HAMBURGER / MOBILE NAV ─────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-maroon);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 2px solid var(--gold);
  z-index: 99;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px rgba(74,14,26,0.12);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav ul {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav ul li a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-maroon);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.05em;
  transition: color 0.15s;
}
.mobile-nav ul li:last-child a { border-bottom: none; }
.mobile-nav ul li a.active,
.mobile-nav ul li a:hover { color: var(--gold-dark, #b8860b); }
.mobile-nav .btn-gold {
  width: 100%;
  justify-content: center;
  padding: 0.85rem;
  font-size: 0.85rem;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.88; }
.btn-dark-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.55);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-dark-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); }
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f5c518;
  color: var(--maroon-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: 2px solid var(--maroon-deep);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn-dark:hover { background: var(--maroon-deep); color: #f5c518; transform: translateY(-1px); }
.btn-gold-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--text-dark);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-gold-outline:hover { opacity: 0.88; }

/* ─── SECTION LABELS ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.section-label.light { color: var(--gold); }
.section-label .diamond { font-size: 0.55rem; }

/* ─── DIVIDER ─────────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem auto;
}
.divider-line { flex: 1; height: 1px; background: var(--border); max-width: 120px; }
.divider-diamond { color: var(--gold); font-size: 0.55rem; }
.divider.light .divider-line { background: rgba(255,255,255,0.25); }
.divider.light .divider-diamond { color: var(--gold); }

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--maroon);
  min-height: calc(100vh - var(--nav-h));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@keyframes hero-bg-shift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}
.hero-mandala {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  opacity: 0.18;
  pointer-events: none;
  animation: spin-slow 60s linear infinite;
}
.hero-mandala-right {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 380px;
  opacity: 0.12;
  pointer-events: none;
  animation: spin-slow 80s linear infinite reverse;
}
@keyframes spin-slow { to { transform: translateY(-50%) rotate(360deg); } }
.hero-mandala-right { animation: spin-slow2 80s linear infinite reverse; }
@keyframes spin-slow2 { to { transform: rotate(360deg); } }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes hero-glow {
  from { box-shadow: 0 0 40px rgba(0,0,0,0.4), 0 0 12px rgba(201,168,76,0.15); border-color: rgba(201,168,76,0.3); }
  to   { box-shadow: 0 0 80px rgba(0,0,0,0.5), 0 0 40px rgba(201,168,76,0.55); border-color: rgba(201,168,76,0.75); }
}

.hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.hero-text { color: #fff; }


.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 0.05em;
  animation: hero-fade-up 0.9s ease both;
  animation-delay: 0.1s;
}
.hero-title .gold { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  max-width: 420px;
  line-height: 1.5;
  margin: 1.4rem 0 1.1rem;
  text-align: center;
  animation: hero-fade-up 0.9s ease both;
  animation-delay: 0.3s;
}
.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  animation: hero-fade-up 0.9s ease both;
  animation-delay: 0.5s;
}
.hero-badges {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  animation: hero-fade-up 0.9s ease both;
  animation-delay: 0.7s;
}
.hero-badges .sep { color: rgba(255,255,255,0.3); }
.hero-badges .star { color: var(--gold); }
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-circle {
  width: min(500px, 46vw);
  height: min(500px, 46vw);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(201,168,76,0.35);
  animation: hero-fade-up 1s ease both 0.2s, hero-float 5s ease-in-out infinite 1.2s, hero-glow 3s ease-in-out infinite alternate 1.2s;
}
.hero-image-circle img,
.hero-image-circle video { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; display: block; }

/* ─── MAROON SECTIONS ────────────────────────────────────────── */
.section-maroon {
  background: var(--maroon);
  color: #fff;
  padding: 2.5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero + .section-maroon { padding-top: 1rem; }

/* ─── MARQUEE TICKER ─────────────────────────────────────────── */
.marquee {
  background: linear-gradient(135deg, #f5c518 0%, #e0b016 50%, #f5c518 100%);
  border-top: 1.5px solid var(--maroon-deep);
  border-bottom: 1.5px solid var(--maroon-deep);
  overflow: hidden;
  padding: 0.45rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  /* animation applied by JS after clones are ready */
}
.marquee-track.is-ready {
  animation: marquee-scroll var(--marquee-speed, 38s) linear infinite;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  flex-shrink: 0;
}
.marquee:hover .marquee-track.is-ready { animation-play-state: paused; }
.marquee .m-item {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--maroon-deep);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  line-height: 1.2;
}
.marquee .m-sep {
  color: var(--maroon-deep);
  font-size: 0.85rem;
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * var(--marquee-content-w, 50%))); }
}
@media (max-width: 768px) {
  .marquee { padding: 0.35rem 0; }
  .marquee .m-item { font-size: 0.9rem; }
  .marquee-content { gap: 1rem; padding-right: 1rem; }
}
.section-maroon .mandala-bg {
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 420px;
  opacity: 0.10;
  pointer-events: none;
}

/* ─── CREAM SECTIONS ─────────────────────────────────────────── */
.section-cream {
  background: var(--cream);
  padding: 5rem 2rem;
}
.page-hero + .section-cream { padding-top: 2rem; }
.section-cream.alt { background: oklch(95% 0.02 82); }

/* ─── INNER WRAPPER ──────────────────────────────────────────── */
.inner {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* ─── SECTION HEADERS ─────────────────────────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  margin: 0.4rem 0;
}
.section-head h2.light { color: #fff; }
.section-head h2.maroon { color: var(--text-maroon); }
.section-head p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0.6rem auto 0;
}
.section-head p.dark { color: var(--text-dark); opacity: 0.75; }

/* ─── FEAST SECTION ──────────────────────────────────────────── */
.feast-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  font-style: italic;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}
.feast-welcome {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.feast-image {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.5), 0 0 0 1px oklch(70% 0.14 80 / 0.2);
  opacity: 0;
  transform: scale(0.96) translateY(24px);
  transition: opacity 0.8s ease, transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.feast-image img {
  width: 100%;
  height: auto;
  display: block;
}
.feast-image.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ─── SCROLL REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* catering card spring rise */
.reveal-flip {
  opacity: 0;
  transform: translateY(50px) scale(0.93);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-flip.delay-1 { transition-delay: 0.14s; }
.reveal-flip.delay-2 { transition-delay: 0.28s; }
.reveal-flip.delay-3 { transition-delay: 0.42s; }
.reveal-flip.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ─── TODAY'S THALI ──────────────────────────────────────────── */
.today-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 2.5rem;
}
/* traditional frame wrapper */
.today-image-frame {
  position: relative;
  padding: 9px;
  border: 2px solid var(--gold);
  border-radius: 16px;
  background: var(--cream);
}
.today-image-frame::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(212,166,70,0.45);
  border-radius: 11px;
  pointer-events: none;
  z-index: 1;
}
.tif-corner {
  position: absolute;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.7rem;
  background: var(--cream);
  border-radius: 50%;
  z-index: 5;
}
.tif-corner.tl { top: -9px;  left: -9px; }
.tif-corner.tr { top: -9px;  right: -9px; }
.tif-corner.bl { bottom: -9px; left: -9px; }
.tif-corner.br { bottom: -9px; right: -9px; }
.tif-side {
  position: absolute;
  color: var(--gold);
  font-size: 0.5rem;
  background: var(--cream);
  padding: 0 3px;
  z-index: 5;
  line-height: 1;
}
.tif-side.t { top: -6px;  left: 50%; transform: translateX(-50%); }
.tif-side.b { bottom: -6px; left: 50%; transform: translateX(-50%); }
.tif-side.l { left: -6px; top: 50%; transform: translateY(-50%); padding: 3px 0; }
.tif-side.r { right: -6px; top: 50%; transform: translateY(-50%); padding: 3px 0; }

.today-image-wrap { position: relative; border-radius: 8px; overflow: hidden; }
.today-image-wrap img { width: 100%; height: 520px; object-fit: cover; }
.today-badge {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  padding: 1rem 1.4rem;
  background: linear-gradient(0deg, rgba(30,6,6,0.9) 0%, transparent 100%);
}
.today-badge .day-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.2rem;
}
.today-badge .thali-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
}
.platter-box {
  position: relative;
  background: oklch(97.5% 0.025 78);
  border: 2px solid var(--gold);
  box-shadow:
    inset 0 0 0 5px oklch(97.5% 0.025 78),
    inset 0 0 0 6px oklch(74% 0.14 80 / 0.35),
    0 4px 20px rgba(0,0,0,0.07);
  border-radius: 4px;
  padding: 1.75rem 1.75rem 1.5rem;
}
.platter-corner {
  position: absolute;
  width: 24px; height: 24px;
  background: oklch(97.5% 0.025 78);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.65rem;
  z-index: 2;
  line-height: 1;
}
.platter-corner.tl { top: -1px;    left: -1px;  }
.platter-corner.tr { top: -1px;    right: -1px; }
.platter-corner.bl { bottom: -1px; left: -1px;  }
.platter-corner.br { bottom: -1px; right: -1px; }
.platter-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0.75rem;
  border-bottom: none;
}
.platter-header h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-maroon);
  letter-spacing: 0.02em;
  text-align: center;
}
.platter-header .item-count { display: none; }
.platter-divider {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
}
.pd-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, oklch(74% 0.14 80 / 0.5));
}
.pd-line-r {
  background: linear-gradient(to left, transparent, oklch(74% 0.14 80 / 0.5));
}
.pd-gem {
  color: var(--gold);
  font-size: 0.38rem;
  flex-shrink: 0;
}
.platter-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.42rem;
  margin-top: 1rem;
}
.platter-cat { display: contents; }
.cat-label { display: none; }
.cat-items { display: contents; }
.cat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: linear-gradient(135deg, oklch(99% 0.018 85), oklch(96.5% 0.04 75));
  border: 1px solid oklch(74% 0.14 80 / 0.4);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-maroon);
  line-height: 1.3;
  transition: background 0.2s, box-shadow 0.2s;
}
.cat-item:hover {
  background: linear-gradient(135deg, oklch(97% 0.04 80), oklch(95% 0.06 72));
  box-shadow: 0 2px 8px oklch(74% 0.14 80 / 0.18);
}
.cat-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.38rem;
  flex-shrink: 0;
  opacity: 0.85;
}
.platter-cat-link {
  margin-top: 0.3rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}
.platter-cat-link a {
  color: var(--text-maroon);
  font-size: 0.83rem;
  font-weight: 500;
  transition: opacity 0.2s;
}
.platter-cat-link a:hover { opacity: 0.7; }

/* Category badge colours — warm Indian palette */
.cat-drink   .cat-label { background: oklch(87% 0.10 205); color: oklch(26% 0.11 205); }
.cat-starter .cat-label { background: oklch(84% 0.17  75); color: oklch(28% 0.12  75); }
.cat-main    .cat-label { background: oklch(58% 0.18  30); color: #fff; }
.cat-bread   .cat-label { background: oklch(80% 0.14  60); color: oklch(28% 0.12  60); }
.cat-rice    .cat-label { background: oklch(71% 0.13 140); color: oklch(24% 0.10 140); }
.cat-sides   .cat-label { background: oklch(76% 0.10  95); color: oklch(27% 0.09  95); }
.cat-sweet   .cat-label { background: oklch(72% 0.19  10); color: #fff; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--maroon-deep);
  padding: 3.5rem 2rem;
}
.cta-banner .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner .label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 400;
  color: #fff;
}
.cta-banner h2 span { color: var(--gold); font-style: italic; }
.cta-banner p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.4rem;
}

/* ─── PROMISE CARDS ──────────────────────────────────────────── */
.promise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.promise-card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.promise-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--maroon);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  z-index: 0;
}
.promise-card:hover::before { transform: translateY(0); }
.promise-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(74,14,26,0.22);
}
.promise-card > * { position: relative; z-index: 1; }
.promise-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
  transition: background 0.35s ease, color 0.35s ease;
}
.promise-card:hover .promise-icon {
  background: rgba(255,255,255,0.15);
  color: var(--gold);
}
.promise-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-maroon);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
  transition: color 0.35s ease;
}
.promise-card:hover h3 { color: var(--gold); }
.promise-card p {
  font-size: 0.82rem;
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.6;
  transition: color 0.35s ease, opacity 0.35s ease;
}
.promise-card:hover p { color: rgba(255,245,204,0.85); opacity: 1; }

/* ─── TWO-COL FEATURE ─────────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.feature-image {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.feature-image img { width: 100%; height: 420px; object-fit: cover; }
.about-interior-img {
  overflow: hidden;
  border-radius: 50% 50% 12px 12px / 40% 40% 12px 12px;
  max-width: 460px;
  width: 100%;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 6px oklch(74% 0.14 80 / 0.15), 0 16px 48px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.about-interior-img img { width: 100%; aspect-ratio: 3 / 4 !important; height: auto !important; object-fit: cover !important; object-position: center top; display: block; }
.catering-img-wrap { max-width: 480px; margin: 0 auto; }
.catering-img-wrap img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center center; display: block; }
.feature-image-natural img {
  filter: brightness(1.02) contrast(0.96) saturate(0.92);
}
.feature-image-fit {
  max-width: 380px;
  margin: 0 auto;
}
.feature-image-fit img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto !important;
  object-fit: cover;
  filter: none !important;
}

/* Ornate traditional frame for restaurant interior */
.feature-image-ornate {
  border-radius: 14px;
  padding: 6px;
  background:
    linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  box-shadow:
    0 12px 36px rgba(74,14,26,0.28),
    inset 0 0 0 1px rgba(212,175,55,0.45);
  position: relative;
  overflow: hidden;
}
.feature-image-ornate::before,
.feature-image-ornate::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  background: url('https://rajbhogthali.com/wp-content/uploads/2024/12/mandala.png') no-repeat center / contain;
  opacity: 0.12;
  filter: brightness(2) sepia(1) hue-rotate(15deg) saturate(2);
  pointer-events: none;
  z-index: 0;
}
.feature-image-ornate::before { top: -80px; left: -80px; }
.feature-image-ornate::after  { bottom: -80px; right: -80px; }
.feature-image-ornate img {
  border-radius: 9px;
  border: 1px solid rgba(212,175,55,0.7);
  filter: brightness(1.15) contrast(1.08) saturate(1.1);
  position: relative;
  z-index: 1;
  display: block;
}
.feature-image-ornate .corner-flourish {
  position: absolute;
  width: 38px;
  height: 38px;
  color: var(--gold);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.feature-image-ornate .corner-flourish.tl { top: 4px; left: 4px; }
.feature-image-ornate .corner-flourish.tr { top: 4px; right: 4px; }
.feature-image-ornate .corner-flourish.bl { bottom: 4px; left: 4px; }
.feature-image-ornate .corner-flourish.br { bottom: 4px; right: 4px; }
.feature-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--maroon-deep);
  color: #fff;
  border-radius: 10px;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-head);
}
.feature-badge .num {
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.feature-badge .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-top: 0.1rem; }
.about-subhead {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--copper);
  margin: 0.4rem 0 1rem;
  font-weight: 400;
}
.feature-text .sublabel {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.6rem;
}
.about-title-box {
  position: relative;
  border: 1.5px solid var(--gold);
  border-radius: 4px;
  padding: 1.4rem 1.8rem 1.2rem;
  text-align: center;
  margin-bottom: 1.4rem;
}
.about-title-box::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(212,166,70,0.3);
  border-radius: 2px;
  pointer-events: none;
}
.atb-corner {
  position: absolute;
  font-size: 0.55rem;
  color: var(--gold);
  line-height: 1;
}
.atb-corner.tl { top: -6px; left: -6px; }
.atb-corner.tr { top: -6px; right: -6px; }
.atb-corner.bl { bottom: -6px; left: -6px; }
.atb-corner.br { bottom: -6px; right: -6px; }
.feature-text h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: var(--text-maroon);
  line-height: 1.12;
  margin-bottom: 0.5rem;
}
.feature-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-dark);
  opacity: 0.82;
  margin-bottom: 1rem;
}
.feature-text .divider { justify-content: flex-start; margin: 1.2rem 0 1.4rem; }
.feature-text .divider .divider-line { max-width: 60px; }
.feature-text .tags {
  display: flex;
  gap: 1.2rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--copper);
  margin: 0.5rem 0 1.2rem;
}

/* ─── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--maroon);
  padding: 4rem 2rem 2.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero .mandala-bg {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 400px;
  opacity: 0.10;
  pointer-events: none;
}
.page-hero .mandala-bg-left {
  position: absolute;
  left: -60px; top: 50%;
  transform: translateY(-50%);
  width: 340px;
  opacity: 0.10;
  pointer-events: none;
}
.page-hero .label {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  color: var(--gold);
  font-style: italic;
  line-height: 1.05;
}
.page-hero p {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── MENU PAGE ──────────────────────────────────────────────── */
.schedule-info,
.section-head p.schedule-info {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-dark);
  opacity: 0.65;
  margin: 0 auto;
  max-width: none;
  line-height: 1.4;
}
/* ── DAY TABS ──────────────────────────────── */
.day-tabs {
  display: flex;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.day-tab {
  flex: 1;
  padding: 0.9rem 0.5rem 0.85rem;
  background: transparent;
  border: none;
  border-right: 1px solid oklch(74% 0.14 80 / 0.3);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  transition: background 0.18s;
  font-family: var(--font-body);
  position: relative;
}
.day-tab:last-child { border-right: none; }
.day-tab:hover:not(.active) { background: oklch(97% 0.025 85); }
.day-tab.active { background: var(--maroon); }
.day-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top: 6px solid var(--maroon);
  z-index: 3;
}
.dt-day {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
}
.day-tab.active .dt-day { color: rgba(255,255,255,0.55); }
.dt-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-maroon);
  line-height: 1.1;
}
.day-tab.active .dt-name { color: var(--gold); }
.day-tab-closed { opacity: 0.5; }
.day-tab-closed .dt-name { color: #999; font-style: italic; }
.day-tab-closed:hover:not(.active) { background: oklch(96% 0.01 0); }
.day-tab-closed.active { background: #555; }
.day-tab-closed.active .dt-day { color: rgba(255,255,255,0.5); }
.day-tab-closed.active .dt-name { color: rgba(255,255,255,0.7); }
.day-tab-closed.active::after { border-top-color: #555; }

.dt-today-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 2px;
}

/* ── THALI SHOWCASE CARD ───────────────────── */
.thali-showcase {
  position: relative;
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, #4a0e1a 0%, #5d1220 50%, #4a0e1a 100%);
  padding: 14px;
  transition: opacity 0.18s ease, transform 0.18s ease;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(74,14,26,0.35);
  animation: showcaseFadeIn 0.7s ease;
}
.thali-showcase::before,
.thali-showcase::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  background: url('https://rajbhogthali.com/wp-content/uploads/2024/12/mandala.png') no-repeat center / contain;
  opacity: 0.08;
  filter: brightness(2) sepia(1) hue-rotate(15deg) saturate(2);
  pointer-events: none;
  z-index: 0;
}
.thali-showcase::before {
  top: -120px;
  left: -120px;
  animation: mandalaSpin 60s linear infinite;
}
.thali-showcase::after {
  bottom: -120px;
  right: -120px;
  animation: mandalaSpinReverse 75s linear infinite;
}
.thali-frame {
  border: 1px solid rgba(212, 175, 55, 0.45);
  background: transparent;
  padding: 2.75rem 3.5rem 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.showcase-corner {
  position: absolute;
  width: 28px; height: 28px;
  background: #4a0e1a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  z-index: 2;
  line-height: 1;
  animation: cornerPulse 2.4s ease-in-out infinite;
}
.showcase-corner.tl { top: -1px; left: -1px; }
.showcase-corner.tr { top: -1px; right: -1px; animation-delay: 0.6s; }
.showcase-corner.bl { bottom: -1px; left: -1px; animation-delay: 1.2s; }
.showcase-corner.br { bottom: -1px; right: -1px; animation-delay: 1.8s; }
.sc-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  font-weight: 600;
  text-align: center;
}
.sc-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff8e1;
  line-height: 1.1;
  margin: 0 0 0.35rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  text-align: center;
}
.sc-day {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--gold);
  opacity: 1;
  text-align: center;
}
.thali-frame .divider-line {
  background: rgba(212, 175, 55, 0.5);
}
.thali-frame .divider-diamond {
  color: var(--gold);
}
.showcase-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.6rem;
  margin-top: 2rem;
}
.item-pill {
  font-size: 0.88rem;
  padding: 0.38rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50px;
  background: rgba(255, 248, 225, 0.08);
  color: #fff8e1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  backdrop-filter: blur(2px);
  transition: all 0.25s ease;
  animation: pillFadeIn 0.5s ease backwards;
}
.item-pill:hover {
  background: var(--gold);
  color: #4a0e1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212,175,55,0.35);
}
.showcase-items .item-pill:nth-child(1)  { animation-delay: 0.05s; }
.showcase-items .item-pill:nth-child(2)  { animation-delay: 0.10s; }
.showcase-items .item-pill:nth-child(3)  { animation-delay: 0.15s; }
.showcase-items .item-pill:nth-child(4)  { animation-delay: 0.20s; }
.showcase-items .item-pill:nth-child(5)  { animation-delay: 0.25s; }
.showcase-items .item-pill:nth-child(6)  { animation-delay: 0.30s; }
.showcase-items .item-pill:nth-child(7)  { animation-delay: 0.35s; }
.showcase-items .item-pill:nth-child(8)  { animation-delay: 0.40s; }
.showcase-items .item-pill:nth-child(9)  { animation-delay: 0.45s; }
.showcase-items .item-pill:nth-child(10) { animation-delay: 0.50s; }
.showcase-items .item-pill:nth-child(n+11) { animation-delay: 0.55s; }

@keyframes showcaseFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes mandalaSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes mandalaSpinReverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}
@keyframes cornerPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.15); opacity: 0.7; }
}
@keyframes pillFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.menu-divider { margin: 4rem 0 3rem; text-align: center; }
.menu-divider h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-maroon);
  margin: 0.5rem 0;
}
.menu-divider p { font-size: 0.9rem; opacity: 0.7; }

/* ─── À LA CARTE DECORATIVE FRAME ───────────────────────────── */
.alacarte-frame {
  position: relative;
  display: inline-block;
  border: 1.5px solid var(--gold);
  padding: 1.75rem 4rem 1.5rem;
  text-align: center;
  margin: 0 auto;
}
.alacarte-frame::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1px solid oklch(74% 0.14 80 / 0.4);
  pointer-events: none;
}
.af-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.55rem;
  background: var(--cream);
  line-height: 1;
}
.af-corner.tl { top: -9px;  left: -9px; }
.af-corner.tr { top: -9px;  right: -9px; }
.af-corner.bl { bottom: -9px; left: -9px; }
.af-corner.br { bottom: -9px; right: -9px; }
.af-eyebrow {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.4rem;
}
.af-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-maroon);
  line-height: 1.1;
  margin: 0;
}

/* ─── À LA CARTE SEARCH + FILTER ─────────────────────────────── */
.alacarte-controls {
  margin: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.alacarte-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: 1rem;
  width: 16px;
  height: 16px;
  color: var(--copper);
  pointer-events: none;
}
.alacarte-search {
  width: 100%;
  padding: 0.75rem 2.8rem 0.75rem 2.6rem;
  border: 1.5px solid var(--maroon);
  border-radius: 50px;
  background: var(--cream-card);
  font-size: 0.88rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.alacarte-search:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,166,70,0.15);
}
.alacarte-search::placeholder { color: rgba(74,14,26,0.35); }
.search-clear {
  position: absolute;
  right: 0.9rem;
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 0.75rem;
  color: var(--copper);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}
.alacarte-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-pill {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-maroon);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.filter-pill:hover { border-color: var(--gold); color: var(--maroon); }
.filter-pill.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--gold);
}
.alacarte-empty {
  text-align: center;
  padding: 3rem 0;
  color: var(--copper);
  font-size: 0.95rem;
  font-style: italic;
}
.alacarte-grid { display: flex; flex-direction: column; gap: 3.5rem; }
.alacarte-cat-title {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-maroon);
  padding-bottom: 0.6rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid oklch(74% 0.14 80 / 0.4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.alacarte-cat-title::before { content: '◆'; color: var(--gold); font-size: 0.5rem; }
.alacarte-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
}
.menu-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px dashed var(--border);
}
.menu-card-img {
  width: 95px;
  height: 95px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.menu-card-body { flex: 1; min-width: 0; padding-top: 0.25rem; }
.menu-card-header {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.5rem;
}
.menu-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-shrink: 1;
  min-width: 0;
  line-height: 1.2;
}
.menu-card-dots {
  flex: 1;
  flex-shrink: 0;
  min-width: 20px;
  height: 0;
  border-bottom: 2px dotted oklch(60% 0.04 75 / 0.5);
  margin: 0 0.5rem;
  align-self: center;
  margin-bottom: 3px;
}
.menu-card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1e7e34;
  white-space: nowrap;
  flex-shrink: 0;
  width: 4.2rem;
  text-align: right;
}
.menu-card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.menu-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-dark);
  opacity: 0.55;
  font-style: italic;
}

/* ─── CATERING PAGE ──────────────────────────────────────────── */
.catering-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}
.catering-card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}
.catering-card .icon {
  width: 40px; height: 40px;
  background: var(--maroon-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.catering-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-maroon);
  margin-bottom: 0.4rem;
}
.catering-card p { font-size: 0.83rem; color: var(--text-dark); opacity: 0.72; line-height: 1.6; }

.catering-form-wrap {
  max-width: 100%;
  margin: 4rem 0 0;
  text-align: center;
  background: oklch(40% 0.13 25);
  border-radius: 20px;
  padding: 3rem 4.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212,166,70,0.35);
}
.catering-form-wrap::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212,166,70,0.15);
  border-radius: 12px;
  pointer-events: none;
  z-index: 0;
}
.catering-form-mandala-r {
  position: absolute !important;
  top: -70px; right: -70px;
  width: 420px; height: 420px;
  object-fit: contain;
  opacity: 0.09;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.catering-form-mandala-l {
  position: absolute !important;
  bottom: -70px; left: -70px;
  width: 360px; height: 360px;
  object-fit: contain;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.catering-form-corner {
  position: absolute !important;
}
.catering-form-wrap > *:not(.catering-form-mandala-r):not(.catering-form-mandala-l):not(.catering-form-corner) { position: relative; z-index: 1; }
.catering-form-wrap .section-label { color: #ffe8a0; opacity: 1; font-weight: 700; }
.catering-form-wrap h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #ffe8a0;
  margin: 0.4rem 0 0;
}
.catering-form-wrap .divider .divider-line { background: rgba(255,232,160,0.4); }
.catering-form-wrap .divider-diamond { color: #ffe8a0; }
.catering-form-corner {
  position: absolute;
  z-index: 2;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
}
.catering-form-corner.tl { top: 18px; left: 24px; }
.catering-form-corner.tr { top: 18px; right: 24px; }
.catering-form-corner.bl { bottom: 18px; left: 24px; }
.catering-form-corner.br { bottom: 18px; right: 24px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; text-align: left; }
.form-group label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-maroon);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
  font-family: var(--font-body);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: oklch(50% 0.05 50 / 0.5); }
.form-group select { color: var(--text-dark); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,166,70,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* Catering form overrides — dark maroon background */
.catering-form-wrap .form-group label { color: #ffe8a0; font-weight: 700; }
.catering-form-wrap .form-group input,
.catering-form-wrap .form-group select,
.catering-form-wrap .form-group textarea {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,220,100,0.4);
  color: #fff5cc;
}
.catering-form-wrap .form-group input::placeholder,
.catering-form-wrap .form-group textarea::placeholder { color: rgba(255,232,160,0.55); }
.catering-form-wrap .form-group select { color: #fff5cc; }
.catering-form-wrap .form-group select option { background: oklch(38% 0.13 25); color: #fff5cc; }
.catering-form-wrap .form-group input:focus,
.catering-form-wrap .form-group select:focus,
.catering-form-wrap .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.13);
  box-shadow: 0 0 0 3px rgba(212,166,70,0.18);
}
.form-group.full { grid-column: 1 / -1; }
.form-submit { margin-top: 1.75rem; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.form-submit .or { font-size: 0.8rem; color: rgba(255,232,160,0.6); font-weight: 500; }
.form-submit .phone-alt { font-size: 0.9rem; color: #ffe8a0; font-weight: 700; letter-spacing: 0.02em; }

/* ─── ABOUT PAGE ─────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.value-card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
}
.value-card .icon {
  width: 40px; height: 40px;
  background: var(--maroon-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-maroon);
  margin-bottom: 0.4rem;
}
.value-card p { font-size: 0.82rem; color: var(--text-dark); opacity: 0.72; line-height: 1.65; }

.beyond-section {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  padding: 4rem 2rem;
}
.beyond-section h2 {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--text-maroon);
  margin: 0.4rem 0 0.75rem;
}
.beyond-section p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.beyond-section a {
  color: var(--text-maroon);
  font-weight: 500;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--copper);
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.beyond-section a:hover { opacity: 0.7; }

/* ─── CONTACT PAGE ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 400;
  color: var(--text-maroon);
  margin: 0.5rem 0 1.5rem;
}
.contact-info .divider { justify-content: flex-start; }
.contact-items { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item .icon-wrap {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--maroon);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-item .icon-wrap svg {
  width: 18px; height: 18px;
}
.contact-item .ci-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.2rem;
}
.contact-item .ci-value {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}
.contact-item .ci-sub { font-size: 0.82rem; color: var(--text-dark); opacity: 0.6; margin-top: 0.1rem; }

.contact-form-card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}
.contact-form-card h3 {
  font-family: var(--font-head);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--text-maroon);
  margin-bottom: 1.75rem;
}
.contact-form-card .form-group label { color: var(--text-maroon) !important; }
.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
  background: var(--cream) !important;
  border: 1.5px solid var(--maroon) !important;
  color: var(--text-dark) !important;
}
.contact-form-card .form-group input::placeholder,
.contact-form-card .form-group textarea::placeholder { color: oklch(55% 0.05 50 / 0.55) !important; }

/* ─── INSTAGRAM GALLERY ──────────────────────────────────────── */
.insta-section { padding-bottom: 5rem; }
.insta-profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto 0;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.insta-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.insta-avatar img { width: 100%; height: 100%; object-fit: cover; }
.insta-profile-info { display: flex; flex-direction: column; gap: 0.4rem; }
.insta-username {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-maroon);
  letter-spacing: 0.01em;
}
.insta-stats {
  display: flex;
  gap: 1.2rem;
  font-size: 0.78rem;
  color: var(--text-dark);
  opacity: 0.75;
}
.insta-stats strong { color: var(--text-maroon); font-weight: 700; }
.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--maroon);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  width: fit-content;
}
.insta-follow-btn:hover { background: var(--gold); color: var(--maroon); }
.insta-handle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
.insta-icon-sm { width: 16px; height: 16px; color: var(--copper); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.insta-tile {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1 / 1;
  display: block;
  background: #e8e0d0;
}
.insta-tile img, .insta-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.insta-tile:hover img, .insta-tile:hover video { transform: scale(1.05); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-tile:hover .insta-overlay { opacity: 1; }
.insta-overlay-icon { width: 28px; height: 28px; }
.behold-wrap { margin-top: 1.5rem; }
.behold-wrap behold-widget { display: block; width: 100%; }
.insta-video-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--maroon-deep);
  color: rgba(255,255,255,0.75);
  padding: 4rem 2rem 0;
  position: relative;
  overflow: hidden;
}
.footer-mandala {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  opacity: 0.08;
  pointer-events: none;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.footer-brand { max-width: 360px; }
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(201,168,76,0.4); }
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
}
.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}
.footer-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-btns .btn-gold { font-size: 0.72rem; padding: 0.6rem 1.3rem; }
.footer-btns .btn-dark-outline { font-size: 0.72rem; padding: 0.6rem 1.3rem; border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.85); }
.footer-col h4 {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col p, .footer-col address {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  font-style: normal;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: var(--gold);
  font-weight: 600;
}
.footer-bottom a:hover {
  color: #fff;
}

/* ─── WHATSAPP FLOATING BUTTON ───────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--maroon);
  border: 2px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 4px 20px rgba(74,14,26,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: wa-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
  animation-delay: 1s;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.08);
  background: var(--gold);
  box-shadow: 0 8px 28px rgba(74,14,26,0.4);
}
.whatsapp-float:hover svg path[fill="#fff"] { fill: var(--maroon); }
.whatsapp-float svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
@keyframes wa-pop {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── GOOGLE REVIEWS WIDGET ─────────────────── */
.gr-widget {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--maroon);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 2rem;
  overflow: hidden;
}
.gr-panel {
  flex-shrink: 0;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.gr-panel-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
}
.gr-panel-name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff8e1;
  margin-top: 0.25rem;
}
.gr-panel-stars {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.gr-star-row { color: var(--gold); font-size: 1rem; letter-spacing: 0.04em; }
.gr-panel-score { font-weight: 700; font-size: 1rem; color: #fff8e1; }
.gr-panel-count { font-size: 0.78rem; color: rgba(255,248,225,0.76); }
.gr-write-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--maroon-deep);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  text-decoration: none;
  transition: background 0.2s;
}
.gr-write-btn:hover { background: #f5c518; }
.gr-write-btn svg path {
  stroke: var(--maroon-deep);
}
.gr-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.gr-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  animation: gr-scroll 28s linear infinite;
}
@keyframes gr-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-1 * var(--gr-loop-w, 50%))); }
}
.gr-card {
  flex-shrink: 0;
  width: 260px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.gr-card-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.gr-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  text-transform: uppercase;
}
.gr-meta { flex: 1; min-width: 0; }
.gr-name { font-weight: 700; font-size: 0.88rem; color: #222; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gr-date { font-size: 0.72rem; color: #999; }
.gr-google-icon { flex-shrink: 0; }
.gr-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.06em; }
.gr-text {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #555;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gr-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  color: var(--maroon);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, opacity 0.2s;
  z-index: 2;
}
.gr-arrow:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.gr-prev { left: 0; }
.gr-next { right: 0; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
/* ── TESTIMONIALS ─────────────────────────── */
.rating-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0 2.5rem;
  flex-wrap: nowrap;
}
.rating-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 2rem;
  min-width: 140px;
  flex: 1;
  max-width: 220px;
}
.rb-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.05em; }
.rb-score { font-size: 1.5rem; font-weight: 700; font-family: var(--font-head); color: var(--maroon); line-height: 1; }
.rb-source { font-size: 0.72rem; color: #888; letter-spacing: 0.04em; text-transform: uppercase; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tc-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.05em; }
.testimonial-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #444;
  flex: 1;
  font-style: italic;
  margin: 0;
}
.tc-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .promise-cards { grid-template-columns: repeat(2, 1fr); }
  .catering-cards { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { max-width: 100%; }
  .alacarte-grid { gap: 2rem; }
  .alacarte-cards { grid-template-columns: 1fr 1fr; gap: 0 2rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  body { overflow-x: hidden; }
  .navbar { padding: 0 1.25rem; }
  .navbar-inner { gap: 0.75rem; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: block; }
  .hero { min-height: unset; padding: 2rem 0; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 1.25rem 1.25rem 1.5rem; gap: 1rem; }
  .hero-subtitle { margin: 0.4rem auto 0.9rem; }
  .hero-buttons { justify-content: center; margin-bottom: 0.9rem; }
  .hero-badges { justify-content: center; flex-wrap: wrap; }
  .hero-image-circle { width: min(280px, 70vw); height: min(280px, 70vw); }
  .section-maroon { padding: 2.25rem 1.25rem; }
  .section-cream { padding: 3rem 1.25rem; }
  .feast-heading { margin-bottom: 0.75rem; }
  .page-hero + .section-cream { padding-top: 1rem; padding-bottom: 0.5rem; }
  .page-hero + .section-cream .section-head { margin-bottom: 0.75rem !important; }
  .schedule-info { font-size: 0.72rem; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .feature-text { text-align: center; }
  .feature-text .divider { justify-content: center !important; }
  .feature-text .tags { justify-content: center; }
  .feature-text .btn-dark { align-self: center; margin-left: auto; margin-right: auto; }
  .today-grid { grid-template-columns: 1fr; }
  .promise-cards { grid-template-columns: 1fr; }
  .catering-cards { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner .inner { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .alacarte-cards { grid-template-columns: 1fr; gap: 0; }
  .menu-card-img { display: block; width: 70px; height: 70px; flex-shrink: 0; }
  .menu-card { padding: 0.9rem 0; gap: 0.85rem; align-items: center; }
  .menu-card-body { min-width: 0; }
  .menu-card-header { display: grid; grid-template-columns: 1fr auto; align-items: start; gap: 0.5rem; margin-bottom: 0.4rem; }
  .menu-card-name { white-space: normal; word-break: break-word; line-height: 1.3; }
  .menu-card-dots { display: none; }
  .menu-card-price { width: auto; text-align: right; align-self: start; padding-top: 0.1rem; font-size: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .catering-form-wrap { padding: 2.5rem 1.75rem; }
  .catering-form-mandala-r, .catering-form-mandala-l { width: 220px; height: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gr-widget { flex-direction: column; padding: 1.25rem; gap: 1.25rem; }
  .gr-panel { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; text-align: left; gap: 0.5rem 1rem; }
  .gr-panel-img { width: 72px; height: 56px; border-radius: 8px; }
  .gr-panel-name { width: 100%; text-align: center; }
  .gr-panel-stars, .gr-panel-count { width: auto; }
  .gr-write-btn { margin-top: 0; }
  .gr-card { width: 230px; }
  .gr-prev { left: -4px; }
  .gr-next { right: -4px; }
  .rating-badges { gap: 0.75rem; }
  .rating-badge { padding: 0.85rem 1rem; min-width: 0; }
  .day-tabs { flex-wrap: wrap; }
  .day-tab { flex: 1 0 33.333%; min-width: 0; border-right: 1px solid oklch(74% 0.14 80 / 0.3); border-bottom: 1px solid oklch(74% 0.14 80 / 0.3); }
  .day-tab:nth-child(3n) { border-right: none; }
  .day-tab:last-child { border-bottom: none; border-right: none; }
  .thali-frame { padding: 2rem 1.25rem 2.5rem; }
  .thali-showcase { padding: 10px; }
  .item-pill { font-size: 0.72rem; padding: 0.28rem 0.7rem; }
  .showcase-items { gap: 0.4rem; }
  .sc-title { font-size: clamp(1.5rem, 6vw, 2.5rem); word-break: break-word; }
  .alacarte-cat-title { font-size: 1.6rem; }
  .menu-divider h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}
@media (max-width: 480px) {
  .catering-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
  .menu-card-img { width: 60px; height: 60px; }
}
