/* ============================================
   CHIT CHAAT N CHAI — Design System
   ============================================ */

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

:root {
  --saffron:        #E8871A;
  --saffron-dark:   #C96A0A;
  --saffron-light:  #F5A847;
  --amber:          #D97706;
  --terracotta:     #C0522B;
  --spice-rose:     #9B2335;
  --turmeric:       #D4A017;
  --cream:          #FDF8F0;
  --warm-white:     #FFFBF5;
  --charcoal:       #2D1B0E;
  --text-muted:     #6B5B4E;
  --text-light:     #9C8B7E;
  --border-warm:    rgba(232,135,26,0.18);

  --grad-hero:      linear-gradient(145deg, #1C0D05 0%, #3D1A0C 35%, #6B2D13 65%, #8B3A1A 100%);
  --grad-primary:   linear-gradient(135deg, #E8871A, #C0522B);
  --grad-gold:      linear-gradient(135deg, #D4A017, #E8871A);
  --grad-card:      linear-gradient(145deg, rgba(253,248,240,0.97), rgba(255,248,228,0.93));

  --shadow-xs:  0 1px 4px rgba(45,27,14,0.06);
  --shadow-sm:  0 2px 10px rgba(45,27,14,0.09);
  --shadow-md:  0 6px 24px rgba(45,27,14,0.13);
  --shadow-lg:  0 12px 48px rgba(45,27,14,0.18);
  --shadow-glow:0 0 40px rgba(232,135,26,0.28);

  --card-radius: 1.25rem;
  --nav-height:  72px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         0.3s;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--saffron), var(--terracotta)); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.75rem; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.8rem 1.9rem;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; border: none; transition: all var(--dur) var(--ease);
  letter-spacing: 0.02em; white-space: nowrap;
}
.btn-primary {
  background: var(--grad-primary); color: white;
  box-shadow: 0 4px 18px rgba(232,135,26,0.38);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,135,26,0.52); filter: brightness(1.07); }
.btn-secondary {
  background: rgba(255,255,255,0.12); color: white;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.22); border-color: white; transform: translateY(-3px); }
.btn-outline {
  background: transparent; color: var(--saffron);
  border: 2px solid var(--saffron);
}
.btn-outline:hover { background: var(--saffron); color: white; transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ===== SECTION STYLES ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(232,135,26,0.12); color: var(--saffron-dark);
  padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--charcoal); margin-bottom: 1rem; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; line-height: 1.75; }
.section-subtitle.wide { max-width: 780px; }

/* ===== DIVIDER ===== */
.divider {
  width: 60px; height: 3px;
  background: var(--grad-primary);
  border-radius: 2px; margin: 0.75rem 0 1.75rem;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  background: rgba(253,248,240,0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(232,135,26,0.12);
  box-shadow: 0 2px 16px rgba(45,27,14,0.07);
  transition: all var(--dur) var(--ease);
}
.nav.scrolled {
  background: rgba(253,248,240,0.97);
  box-shadow: 0 4px 32px rgba(45,27,14,0.12);
  border-bottom-color: rgba(232,135,26,0.18);
}
.nav-inner {
  height: 100%; max-width: 1240px; margin: 0 auto;
  padding: 0 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  cursor: pointer; user-select: none;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--grad-primary); border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(232,135,26,0.32);
  transition: transform var(--dur) var(--ease);
}
.nav-logo:hover .nav-logo-icon { transform: scale(1.07) rotate(-3deg); }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700; font-size: 1.12rem; color: var(--charcoal);
}
.nav-logo-tagline {
  font-size: 0.65rem; color: var(--saffron);
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 3px;
}
.nav-links {
  display: flex; align-items: center; gap: 0.2rem;
}
.nav-link {
  padding: 0.5rem 1.05rem; border-radius: 50px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all var(--dur) var(--ease);
  border: 1px solid transparent;
}
.nav-link:hover { color: var(--saffron-dark); background: rgba(232,135,26,0.07); }
.nav-link.active { color: var(--saffron-dark); background: rgba(232,135,26,0.11); font-weight: 600; }
.nav-cta {
  background: var(--grad-primary) !important; color: white !important;
  box-shadow: 0 3px 14px rgba(232,135,26,0.3); border-color: transparent !important;
}
.nav-cta:hover { box-shadow: 0 5px 22px rgba(232,135,26,0.48) !important; transform: translateY(-1px); }

/* Burger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 0.5rem; border-radius: 10px; border: none;
  background: transparent; transition: background var(--dur);
}
.nav-toggle:hover { background: rgba(232,135,26,0.08); }
.nav-toggle span {
  display: block; width: 23px; height: 2px;
  background: var(--charcoal); border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-menu {
  position: fixed; top: var(--nav-height); left: 0; right: 0;
  background: rgba(253,248,240,0.98); backdrop-filter: blur(20px);
  padding: 1.25rem 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-warm);
  box-shadow: 0 10px 32px rgba(45,27,14,0.14);
  z-index: 998;
  display: none; flex-direction: column; gap: 0.25rem;
  transform: translateY(-20px); opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.mobile-menu.open {
  display: flex; transform: translateY(0); opacity: 1;
}
.mobile-link {
  padding: 0.85rem 1.1rem; border-radius: 12px;
  font-size: 0.97rem; font-weight: 500; color: var(--text-muted);
  cursor: pointer; transition: all var(--dur) var(--ease);
  display: flex; align-items: center; gap: 0.75rem;
}
.mobile-link:hover, .mobile-link.active {
  color: var(--saffron-dark); background: rgba(232,135,26,0.08);
}
.mobile-link.active { font-weight: 600; }

/* ================================================
   PAGE SYSTEM
   ================================================ */
.page {
  display: none; min-height: 100vh;
  padding-top: var(--nav-height);
  animation: fadeInPage 0.45s var(--ease) both;
}
.page.active { display: block; }

@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   HOME — HERO
   ================================================ */
.hero {
  min-height: 100vh; background: var(--grad-hero);
  position: relative; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; padding: 6rem 2rem 5rem;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(232,135,26,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(192,82,43,0.2) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 60% 10%, rgba(212,160,23,0.12) 0%, transparent 45%);
  animation: glowPulse 9s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  0%   { opacity: 0.55; transform: scale(1); }
  100% { opacity: 1;    transform: scale(1.06); }
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 38px 38px;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(232,135,26,0.18); border: 1px solid rgba(232,135,26,0.4);
  color: var(--saffron-light); padding: 0.5rem 1.3rem;
  border-radius: 50px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s var(--ease) both;
}
.hero-title {
  font-size: clamp(3rem, 6.5vw, 5.75rem);
  font-weight: 800; color: white; margin-bottom: 0.5rem;
  line-height: 1.05;
  animation: fadeInUp 0.8s var(--ease) 0.1s both;
}
.hero-title-accent {
  background: linear-gradient(130deg, var(--saffron-light) 0%, var(--turmeric) 50%, var(--saffron-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200%;
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6); font-style: italic;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.8s var(--ease) 0.15s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.72); max-width: 560px;
  margin: 0 auto 2.75rem; line-height: 1.8;
  animation: fadeInUp 0.8s var(--ease) 0.22s both;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  animation: fadeInUp 0.8s var(--ease) 0.32s both;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounceDown {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

/* ===== HOME — FEATURE CARDS ===== */
.features-section {
  padding: 5.5rem 1.75rem;
  background: var(--warm-white);
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-primary);
}
.features-header { text-align: center; margin-bottom: 3.75rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem;
}
.feature-card {
  background: var(--grad-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--card-radius);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(232,135,26,0.3); }
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(232,135,26,0.14), rgba(192,82,43,0.08));
  border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 1.4rem;
  transition: transform var(--dur) var(--ease);
  box-shadow: var(--shadow-xs);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(5deg); }
.feature-card h3 { font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.7rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* Stats bar */
.stats-bar {
  background: var(--grad-primary); padding: 2.5rem 1.75rem;
}
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem; text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 800; color: white;
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); font-weight: 500; letter-spacing: 0.05em; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.page-hero {
  background: var(--grad-hero); padding: 5.5rem 2rem 4.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 25% 50%, rgba(232,135,26,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(192,82,43,0.14) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.5rem); color: white; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 520px; margin: 0 auto; }
.page-hero .page-hero-breadcrumb {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7); padding: 0.35rem 1rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem;
}

.about-body { max-width: 960px; margin: 0 auto; padding: 5rem 1.75rem; }
.about-layout {
  display: grid; grid-template-columns: 220px 1fr; gap: 4.5rem;
  align-items: start;
}
.about-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); }
.about-emblem {
  width: 140px; height: 140px;
  background: var(--grad-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; margin-bottom: 1.5rem;
  box-shadow: var(--shadow-glow);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.about-pill {
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--grad-card); border: 1px solid var(--border-warm);
  border-radius: 10px; padding: 0.8rem 1rem;
  margin-bottom: 0.65rem; font-size: 0.88rem; font-weight: 500;
  color: var(--charcoal); box-shadow: var(--shadow-xs);
}
.about-pill-icon { font-size: 1.1rem; flex-shrink: 0; }

.about-text { display: flex; flex-direction: column; gap: 1.6rem; }
.about-paragraph {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.88;
  padding-left: 1.4rem; position: relative;
}
.about-paragraph::before {
  content: ''; position: absolute; left: 0; top: 0.5em; bottom: 0.5em;
  width: 3px; background: var(--grad-primary); border-radius: 2px;
  opacity: 0.5;
}
.about-paragraph:first-child::before { opacity: 1; }

.about-quote-block {
  background: linear-gradient(135deg, rgba(232,135,26,0.07), rgba(192,82,43,0.04));
  border-left: 4px solid var(--saffron);
  border-radius: 0 var(--card-radius) var(--card-radius) 0;
  padding: 1.75rem 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.18rem; font-style: italic;
  color: var(--charcoal); line-height: 1.75; margin-top: 0.5rem;
}

/* ================================================
   MENU PAGE
   ================================================ */
.menu-body { max-width: 1200px; margin: 0 auto; padding: 4.5rem 1.75rem; }
.menu-intro { text-align: center; margin-bottom: 3.75rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem; margin-bottom: 2.25rem;
}
.menu-cat-card {
  background: var(--grad-card);
  border: 1px solid var(--border-warm);
  border-radius: var(--card-radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
}
.menu-cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(232,135,26,0.3); }
.menu-cat-header {
  background: var(--grad-primary); padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.menu-cat-header .cat-icon { font-size: 1.5rem; }
.menu-cat-header h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.15rem; font-weight: 600; }
.menu-items-wrap { padding: 1.25rem 1.4rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.menu-tag {
  background: rgba(232,135,26,0.08); border: 1px solid rgba(232,135,26,0.2);
  color: var(--charcoal); padding: 0.32rem 0.85rem;
  border-radius: 50px; font-size: 0.83rem;
  transition: all var(--dur) var(--ease); cursor: default;
}
.menu-tag:hover {
  background: rgba(232,135,26,0.16); border-color: var(--saffron);
  color: var(--saffron-dark); transform: translateY(-1px);
}

/* Specialties box */
.menu-specialties {
  background: linear-gradient(135deg, rgba(232,135,26,0.07), rgba(212,160,23,0.04));
  border: 1px solid rgba(232,135,26,0.2); border-radius: var(--card-radius);
  padding: 2rem 2.25rem; margin-bottom: 1.75rem;
}
.menu-specialties h3 {
  font-size: 1.18rem; color: var(--charcoal); margin-bottom: 0.65rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.menu-specialties p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* Special notes */
.menu-special-notes {
  background: linear-gradient(135deg, rgba(155,35,53,0.05), rgba(192,82,43,0.04));
  border: 1px solid rgba(155,35,53,0.15); border-radius: var(--card-radius);
  padding: 2rem 2.25rem; margin-bottom: 1.75rem;
}
.menu-special-notes h3 {
  font-size: 1.18rem; color: var(--spice-rose); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.menu-special-notes li {
  display: flex; gap: 0.75rem;
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.65;
  margin-bottom: 0.55rem;
}
.menu-special-notes li::before {
  content: '✦'; color: var(--spice-rose); flex-shrink: 0; margin-top: 0.15em;
}

/* Order info */
.order-info-block {
  background: var(--grad-hero); border-radius: var(--card-radius);
  padding: 2.5rem 2.5rem; position: relative; overflow: hidden;
}
.order-info-block::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 15%, rgba(232,135,26,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 10% 85%, rgba(192,82,43,0.15) 0%, transparent 50%);
}
.order-info-inner { position: relative; z-index: 1; }
.order-info-block h3 {
  font-size: 1.55rem; color: white; margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.order-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.75rem;
}
.order-info-item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px; padding: 1.25rem 1.4rem;
  backdrop-filter: blur(8px);
}
.order-info-item .oi-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.35rem;
}
.order-info-item .oi-value { color: white; font-weight: 600; font-size: 0.97rem; }
.order-info-item .oi-value a { color: var(--saffron-light); transition: color var(--dur); }
.order-info-item .oi-value a:hover { color: white; }

.order-rules { display: flex; flex-direction: column; gap: 0.6rem; }
.order-rule {
  display: flex; gap: 0.75rem; align-items: flex-start;
  color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.55;
}
.order-rule-num {
  background: rgba(232,135,26,0.32); border: 1px solid rgba(232,135,26,0.5);
  color: var(--saffron-light); width: 22px; height: 22px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; flex-shrink: 0; margin-top: 0.1em;
}

/* ================================================
   EVENTS PAGE
   ================================================ */
.events-body { max-width: 1200px; margin: 0 auto; padding: 4.5rem 1.75rem; }

/* Filter tabs */
.events-tabs { display: flex; gap: 0.75rem; margin-bottom: 3rem; flex-wrap: wrap; }
.events-tab {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.65rem 1.5rem; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600; cursor: pointer;
  border: 2px solid rgba(232,135,26,0.18);
  background: var(--grad-card); color: var(--text-muted);
  transition: all var(--dur) var(--ease);
}
.events-tab:hover { border-color: var(--saffron); color: var(--saffron-dark); }
.events-tab.active { background: var(--grad-primary); color: white; border-color: transparent; box-shadow: 0 4px 16px rgba(232,135,26,0.32); }
.tab-count {
  background: rgba(255,255,255,0.25); border-radius: 50px;
  padding: 0.1rem 0.55rem; font-size: 0.75rem;
}
.events-tab:not(.active) .tab-count { background: rgba(232,135,26,0.12); color: var(--saffron-dark); }

/* Sections */
.events-section { display: none; }
.events-section.active { display: block; animation: fadeInPage 0.4s var(--ease); }
.events-section-heading {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 1.45rem; color: var(--charcoal); margin-bottom: 1.75rem;
}
.live-dot {
  width: 10px; height: 10px; border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50%      { box-shadow: 0 0 0 7px rgba(34,197,94,0.08); }
}
.upcoming-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--saffron); flex-shrink: 0; }
.archived-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--text-light); flex-shrink: 0; }

/* Event cards grid */
.events-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; margin-bottom: 3rem;
}
.event-card {
  background: var(--grad-card); border: 1px solid var(--border-warm);
  border-radius: var(--card-radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--dur) var(--ease);
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(232,135,26,0.28); }
.event-banner {
  height: 155px; display: flex;
  align-items: center; justify-content: center; font-size: 5rem;
  position: relative; overflow: hidden;
}
.event-banner::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent 60%);
}
.event-body { padding: 1.4rem 1.5rem; }
.event-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.28rem 0.8rem; border-radius: 50px;
  font-size: 0.73rem; font-weight: 700; margin-bottom: 0.7rem;
}
.badge-live    { background: rgba(34,197,94,0.1); color: #15803d; border: 1px solid rgba(34,197,94,0.25); }
.badge-upcoming{ background: rgba(232,135,26,0.1); color: var(--saffron-dark); border: 1px solid rgba(232,135,26,0.25); }
.badge-archived{ background: rgba(107,91,78,0.08); color: var(--text-muted); border: 1px solid rgba(107,91,78,0.18); }
.event-meta-details {
  display: flex; flex-direction: column; gap: 0.3rem;
  margin-bottom: 0.75rem; font-size: 0.83rem; color: var(--text-muted);
  background: rgba(232,135,26,0.06); padding: 0.55rem 0.75rem;
  border-radius: 8px; border-left: 3px solid var(--saffron);
}
.event-meta-item { display: flex; align-items: center; gap: 0.35rem; }

/* Date-Grouped Event Gallery */
.gallery-section { margin-top: 3.5rem; }
.gallery-heading { font-size: 1.6rem; color: var(--charcoal); margin-bottom: 0.4rem; }

.gallery-group { margin-bottom: 2.5rem; }
.gallery-group-title {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 1.25rem; color: var(--charcoal); margin-bottom: 1.2rem;
  padding-bottom: 0.4rem; border-bottom: 1px solid var(--border-warm);
}

.gallery-group-events { display: flex; flex-direction: column; gap: 1.5rem; }

.event-gallery-card {
  background: var(--grad-card); border: 1px solid var(--border-warm);
  border-radius: var(--card-radius); padding: 1.5rem;
  box-shadow: var(--shadow-sm); transition: all var(--dur) var(--ease);
}
.event-gallery-card:hover { border-color: rgba(232,135,26,0.3); box-shadow: var(--shadow-md); }

.event-gallery-header { margin-bottom: 1rem; }
.event-gallery-header h4 { font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.35rem; }
.event-gallery-meta {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  font-size: 0.82rem; color: var(--saffron-dark); font-weight: 500;
}

.event-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.photo-slot {
  border-radius: 14px; aspect-ratio: 4/3; overflow: hidden;
  position: relative; transition: all var(--dur) var(--ease);
}

.photo-slot-filled {
  box-shadow: var(--shadow-sm); cursor: pointer;
}
.photo-slot-filled img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur) var(--ease);
}
.photo-slot-filled:hover img { transform: scale(1.06); }

.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,13,5,0.75), transparent 60%);
  display: flex; align-items: flex-end; padding: 0.85rem;
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.photo-slot-filled:hover .photo-overlay { opacity: 1; }
.photo-overlay span { color: white; font-size: 0.82rem; font-weight: 600; }

.photo-slot-placeholder {
  border: 2px dashed rgba(232,135,26,0.32);
  background: rgba(253,248,240,0.6);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.25rem; text-align: center; color: var(--text-muted);
  transition: all var(--dur) var(--ease);
}
.photo-slot-placeholder:hover {
  border-color: var(--saffron); background: rgba(232,135,26,0.08);
  transform: translateY(-2px);
}
.placeholder-icon { font-size: 2.2rem; margin-bottom: 0.35rem; }
.placeholder-title { font-weight: 600; font-size: 0.88rem; color: var(--charcoal); }
.placeholder-sub { font-size: 0.76rem; color: var(--text-light); margin-top: 0.15rem; }

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-body {
  max-width: 1140px; margin: 0 auto; padding: 4.5rem 1.75rem;
  display: grid; grid-template-columns: 1fr 1.9fr; gap: 3.5rem; align-items: start;
}
.contact-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-card {
  background: var(--grad-card); border: 1px solid var(--border-warm);
  border-radius: var(--card-radius); padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm); transition: all var(--dur) var(--ease);
}
.contact-info-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(232,135,26,0.28); }
.info-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(232,135,26,0.14), rgba(192,82,43,0.08));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 0.9rem;
}
.info-label {
  font-size: 0.72rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif; font-weight: 600;
}
.info-value { font-weight: 600; color: var(--charcoal); font-size: 0.97rem; }
.info-value a { color: var(--saffron-dark); transition: color var(--dur); }
.info-value a:hover { color: var(--terracotta); }
.hours-list { margin-top: 0.7rem; display: flex; flex-direction: column; gap: 0.4rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }
.hours-day { font-weight: 500; color: var(--charcoal); }
.hours-time { color: var(--saffron-dark); font-weight: 600; }

/* Form card */
.form-card {
  background: var(--grad-card); border: 1px solid var(--border-warm);
  border-radius: var(--card-radius); padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-card-title { font-size: 1.8rem; color: var(--charcoal); margin-bottom: 0.4rem; }
.form-card-desc { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 2rem; line-height: 1.65; }

.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; font-size: 0.83rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.45rem; letter-spacing: 0.02em;
}
.form-label .req { color: var(--spice-rose); margin-left: 2px; }
.form-control {
  width: 100%; padding: 0.82rem 1.1rem;
  border: 1.5px solid rgba(232,135,26,0.2); border-radius: 12px;
  background: rgba(255,255,255,0.8); color: var(--charcoal);
  font-size: 0.93rem; transition: all var(--dur) var(--ease); outline: none;
}
.form-control:focus {
  border-color: var(--saffron); background: white;
  box-shadow: 0 0 0 3.5px rgba(232,135,26,0.12);
}
.form-control.invalid { border-color: var(--spice-rose); box-shadow: 0 0 0 3px rgba(155,35,53,0.1); }
.form-control::placeholder { color: var(--text-light); }
select.form-control {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B5B4E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.75rem;
}
textarea.form-control { resize: vertical; min-height: 128px; }
.field-error { display: none; font-size: 0.77rem; color: var(--spice-rose); margin-top: 0.35rem; }
.field-error.show { display: block; }

/* Checkbox */
.form-check {
  display: flex; align-items: center; gap: 0.65rem;
  cursor: pointer; margin-bottom: 1.75rem; user-select: none;
}
.form-check input { width: 17px; height: 17px; accent-color: var(--saffron); cursor: pointer; flex-shrink: 0; }
.form-check span { font-size: 0.88rem; color: var(--text-muted); }

/* Honeypot – hidden from users but visible to bots */
.honeypot-wrap {
  position: absolute; left: -9999px; top: -9999px;
  opacity: 0; pointer-events: none; tab-index: -1;
}

.btn-submit { width: 100%; padding: 1rem; border-radius: 14px; font-size: 1rem; }

/* Success state */
.form-success {
  display: none; text-align: center; padding: 3.5rem 2rem;
  flex-direction: column; align-items: center; gap: 1rem;
}
.form-success.show { display: flex; animation: fadeInPage 0.4s var(--ease); }
.success-ring {
  width: 84px; height: 84px;
  background: linear-gradient(135deg, #22c55e, #15803d);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; box-shadow: 0 0 0 14px rgba(34,197,94,0.1);
}
.form-success h3 { font-size: 1.55rem; color: var(--charcoal); }
.form-success p { color: var(--text-muted); max-width: 320px; line-height: 1.65; }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: #1C0D05; color: rgba(255,255,255,0.65);
  padding: 4rem 1.75rem 1.75rem;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 3.5rem;
  margin-bottom: 3rem;
}
.footer-brand-icon {
  width: 50px; height: 50px; background: var(--grad-primary);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
  box-shadow: 0 4px 14px rgba(232,135,26,0.3);
}
.footer-brand h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.25rem; margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 260px; }
.footer-col-title {
  color: white; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.2rem; font-family: 'Inter', sans-serif;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
  font-size: 0.87rem; cursor: pointer;
  transition: color var(--dur); display: flex; align-items: center; gap: 0.45rem;
}
.footer-link:hover { color: var(--saffron-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem;
}
.footer-heart { color: var(--saffron-light); }

/* ================================================
   ANIMATIONS & REVEAL
   ================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 960px) {
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-sidebar { position: static; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .order-info-grid { grid-template-columns: 1fr; }
  .contact-body { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: 2.75rem; }
  .form-row2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.25rem; }
  .footer-brand { grid-column: auto; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .menu-grid { grid-template-columns: 1fr; }
  .events-cards-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-card { padding: 1.5rem; }
  .order-info-block { padding: 1.75rem 1.5rem; }
}

.hide-item {
  display: none;
}