:root {
  --saffron: #E87722;
  --saffron-dark: #C85E0F;
  --maroon: #6B1D1D;
  --maroon-light: #8B2A2A;
  --cream: #FFF7EC;
  --cream-deep: #FBEBD2;
  --leaf: #3D7A3D;
  --ink: #2B1A10;
  --muted: #6B5A4C;
  --border: #E9D9C2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--maroon);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin: 0 0 1rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); margin: 0 0 0.75rem; }
h3 { font-size: 1.25rem; margin: 0 0 0.5rem; }

a { color: var(--saffron-dark); text-decoration: none; }
a:hover { color: var(--maroon); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 247, 236, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.25rem 1.25rem; max-width: 1200px; margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.25rem;
  color: var(--maroon); text-decoration: none;
}
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-family: 'Fraunces', serif;
}
.brand-sub { font-size: 0.7rem; color: var(--muted); font-family: 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 1.1rem; }
.nav-links a.active, .nav-links a:hover { color: var(--saffron-dark); }
.nav-cta {
  background: var(--saffron); color: #fff !important;
  padding: 0.5rem 1rem; border-radius: 999px; font-weight: 600;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--saffron-dark); color: #fff !important; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 0.5rem; color: var(--maroon);
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    padding: 0.5rem 1.25rem 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
  .nav-cta { text-align: center; margin-top: 0.75rem; }
}

/* HERO */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background:
    radial-gradient(ellipse at top left, rgba(232, 119, 34, 0.12), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(107, 29, 29, 0.08), transparent 60%),
    var(--cream);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; gap: 2rem; } }
.eyebrow {
  display: inline-block; font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--leaf); font-weight: 600; margin-bottom: 0.75rem;
}
.gu-accent { font-family: 'Tiro Devanagari Hindi', 'Noto Serif Gujarati', serif; color: var(--saffron-dark); font-weight: 400; }
.hero p.lede { font-size: 1.15rem; color: var(--muted); max-width: 46ch; margin-bottom: 1.75rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: 0; text-decoration: none;
  transition: transform 0.1s, background 0.15s, box-shadow 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--saffron); color: #fff; box-shadow: 0 4px 14px rgba(232, 119, 34, 0.35); }
.btn-primary:hover { background: var(--saffron-dark); color: #fff; }
.btn-secondary { background: var(--maroon); color: #fff; }
.btn-secondary:hover { background: var(--maroon-light); color: #fff; }
.btn-ghost { background: transparent; color: var(--maroon); border: 1.5px solid var(--maroon); }
.btn-ghost:hover { background: var(--maroon); color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5b; color: #fff; }
.btn[disabled], .btn.disabled { opacity: 0.5; pointer-events: none; cursor: not-allowed; }

/* CARD */
.card {
  background: #fff; border-radius: 18px; padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(107, 29, 29, 0.08);
  border: 1px solid var(--border);
}
.card-accent {
  background: linear-gradient(135deg, #fff 0%, var(--cream-deep) 100%);
  border: 1px solid var(--saffron);
}

/* WEEKLY HERO CARD */
.weekly-card { display: grid; grid-template-columns: 1fr 1.1fr; gap: 0; overflow: hidden; padding: 0; }
@media (max-width: 720px) { .weekly-card { grid-template-columns: 1fr; } }
.weekly-photo {
  background-size: contain; background-position: center; background-repeat: no-repeat;
  background-color: var(--cream-deep);
  min-height: 420px;
}
@media (max-width: 720px) { .weekly-photo { min-height: 340px; } }
.weekly-body { padding: 1.75rem; }
.weekly-tag {
  display: inline-block; background: var(--leaf); color: #fff;
  padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 0.75rem;
}
.weekly-items { list-style: none; padding: 0; margin: 1rem 0 1.25rem; }
.weekly-items li {
  display: flex; align-items: center; gap: 0.6rem; padding: 0.35rem 0;
  border-bottom: 1px dashed var(--border); font-size: 0.98rem;
}
.weekly-items li:last-child { border-bottom: 0; }
.weekly-items li::before { content: '•'; color: var(--saffron); font-weight: 700; }
.countdown {
  background: var(--cream-deep); border-radius: 12px; padding: 0.75rem 1rem;
  font-size: 0.9rem; color: var(--maroon); margin: 1rem 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.countdown strong { font-family: 'Fraunces', serif; font-size: 1.05rem; }
.countdown.closed { background: #fde3e3; color: #8a2a2a; }

/* SECTION */
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-alt { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head p { max-width: 60ch; margin: 0 auto; color: var(--muted); }

/* WHY STRIP */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }
.why-item { text-align: center; padding: 1.5rem; }
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 1rem;
  background: var(--cream-deep); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
}

/* FEATURED CAROUSEL */
.featured-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.dish-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border); transition: transform 0.2s, box-shadow 0.2s;
}
.dish-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(107, 29, 29, 0.12); }
.dish-photo {
  aspect-ratio: 4/3; background-size: cover; background-position: center;
  background-color: var(--cream-deep);
}
.dish-photo.placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 2.5rem; color: var(--saffron);
  background: linear-gradient(135deg, var(--cream-deep), #fff);
}
.dish-body { padding: 1rem 1.1rem 1.25rem; }
.dish-body h3 { margin-bottom: 0.25rem; color: var(--maroon); }
.dish-body p { margin: 0.4rem 0 0.75rem; font-size: 0.9rem; color: var(--muted); }
.tag {
  display: inline-block; font-size: 0.7rem; padding: 0.2rem 0.55rem;
  border-radius: 999px; font-weight: 600; margin-right: 0.3rem; margin-bottom: 0.3rem;
  letter-spacing: 0.03em;
}
.tag-signature { background: #fff1d4; color: #a0610a; }
.tag-mild { background: #e4f3e4; color: #2f5f2f; }
.tag-medium { background: #fde8d6; color: #a0541a; }
.tag-spicy { background: #fbd9d9; color: #8a2a2a; }
.tag-jain-option { background: #e8e4f3; color: #4a3a7a; }
.tag-no-onion-garlic-option { background: #e8e4f3; color: #4a3a7a; }
.tag-seasonal { background: #e4ecf3; color: #2a4a7a; }
.tag-fasting { background: #f3e4f0; color: #7a2a6a; }
.tag-fusion { background: #f3ede4; color: #7a5a2a; }
.tag-travel-friendly { background: #e4f3ed; color: #2a7a5a; }

/* MENU PAGE */
.menu-tabs {
  display: flex; gap: 0.5rem; overflow-x: auto;
  padding: 1rem 0; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 64px; background: var(--cream); z-index: 10;
}
.menu-tabs::-webkit-scrollbar { height: 4px; }
.menu-tabs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.menu-tab {
  background: transparent; border: 0; padding: 0.55rem 1rem;
  border-radius: 999px; font-weight: 600; font-size: 0.9rem;
  white-space: nowrap; cursor: pointer; color: var(--ink);
  border: 1.5px solid transparent;
}
.menu-tab:hover { background: var(--cream-deep); }
.menu-tab.active { background: var(--maroon); color: #fff; }
.menu-controls {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  margin-bottom: 1.5rem;
}
.menu-search {
  flex: 1; min-width: 220px;
  padding: 0.65rem 1rem; border: 1.5px solid var(--border);
  border-radius: 999px; font-size: 0.95rem; background: #fff;
}
.menu-search:focus { outline: none; border-color: var(--saffron); }
.filter-chip {
  background: #fff; border: 1.5px solid var(--border);
  padding: 0.45rem 0.9rem; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer; color: var(--ink);
  transition: all 0.15s;
}
.filter-chip:hover { border-color: var(--saffron); }
.filter-chip.active { background: var(--saffron); color: #fff; border-color: var(--saffron); }
.menu-section { margin-bottom: 3rem; }
.menu-section h2 { color: var(--maroon); margin-bottom: 0.25rem; }
.menu-section .blurb { color: var(--muted); font-style: italic; margin-bottom: 1.25rem; }
.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.menu-item {
  background: #fff; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); transition: border-color 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.menu-item:hover { border-color: var(--saffron); box-shadow: 0 6px 20px rgba(232,119,34,0.12); }
.menu-item-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  transition: transform 0.3s;
}
.menu-item-emoji {
  width: 100%; aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.menu-item-body { padding: 0.85rem 1rem 1rem; flex: 1; display: flex; flex-direction: column; }
.menu-item-body h4 { font-family: 'Fraunces', serif; margin: 0 0 0.3rem; color: var(--maroon); font-size: 1.05rem; }
.menu-item-body p { margin: 0.35rem 0 0.6rem; font-size: 0.87rem; color: var(--muted); flex: 1; }
.empty-state {
  text-align: center; padding: 3rem 1rem; color: var(--muted);
  background: #fff; border-radius: 12px; border: 1px dashed var(--border);
}

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; padding: 1.5rem; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--saffron); color: #fff; font-weight: 700;
  font-family: 'Fraunces', serif; font-size: 1.5rem; margin-bottom: 1rem;
}

/* FAQ */
.faq details {
  background: #fff; border-radius: 12px; border: 1px solid var(--border);
  padding: 1rem 1.25rem; margin-bottom: 0.75rem;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-family: 'Fraunces', serif;
  color: var(--maroon); list-style: none; padding-right: 1.5rem; position: relative;
}
.faq summary::after {
  content: '+'; position: absolute; right: 0; top: 0; font-size: 1.5rem;
  color: var(--saffron); transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0.75rem 0 0; color: var(--muted); }

/* GALLERY */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}
.gallery-item {
  aspect-ratio: 1; background-size: cover; background-position: center;
  border-radius: 12px; cursor: pointer; transition: transform 0.2s;
  background-color: var(--cream-deep);
}
.gallery-item:hover { transform: scale(1.02); }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; background: rgba(43, 26, 16, 0.92);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 2rem; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 12px; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.25rem; background: none; border: 0;
  color: #fff; font-size: 2rem; cursor: pointer;
}

/* FORM */
.form-grid { display: grid; gap: 1rem; max-width: 640px; margin: 0 auto; }
.form-field label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.9rem; color: var(--maroon); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 0.95rem; font-family: inherit; background: #fff;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--saffron);
}
.form-field textarea { min-height: 120px; resize: vertical; }

/* TESTIMONIALS */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 820px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial { background: #fff; border-radius: 16px; padding: 1.75rem; border: 1px solid var(--border); }
.testimonial p { font-style: italic; color: var(--ink); margin: 0 0 1rem; }
.testimonial .author { font-weight: 600; color: var(--maroon); font-size: 0.9rem; }
.stars { color: var(--saffron); letter-spacing: 0.1em; margin-bottom: 0.5rem; }

/* FOOTER */
.footer {
  background: var(--maroon); color: var(--cream);
  padding: 3rem 0 1.5rem; margin-top: 0;
}
.footer a { color: var(--cream); opacity: 0.85; }
.footer a:hover { opacity: 1; color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 0.75rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 247, 236, 0.15); padding-top: 1rem;
  text-align: center; font-size: 0.85rem; opacity: 0.7;
}
.social-row { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 247, 236, 0.12);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.social-row a:hover { background: var(--saffron); }

/* BANNER */
.festival-banner {
  background: linear-gradient(90deg, var(--saffron), var(--maroon));
  color: #fff; text-align: center; padding: 0.6rem 1rem; font-size: 0.9rem;
  font-weight: 500;
}

/* UTILITY */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.divider-mandala {
  height: 40px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='20' viewBox='0 0 60 20'><circle cx='30' cy='10' r='3' fill='%23E87722'/><circle cx='10' cy='10' r='1.5' fill='%236B1D1D'/><circle cx='50' cy='10' r='1.5' fill='%236B1D1D'/></svg>") center / 60px 20px repeat-x;
  margin: 2rem 0;
}
