/* ─── Reset & Variables ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #E8732C;
  --primary-2: #F4A04A;
  --cream: #FBF1E5;
  --cream-2: #F6E5D2;
  --dark: #2B1810;
  --dark-2: #FFFFFF;
  --dark-3: #FBF1E5;
  --dark-4: #FFFFFF;
  --border: rgba(43,24,16,0.08);
  --border-accent: rgba(232,115,44,0.3);
  --text: #2B1810;
  --text-muted: rgba(43,24,16,0.55);
  --text-dim: rgba(43,24,16,0.3);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 100px;
  --container: 1200px;
  --header-h: 76px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --red: var(--primary);
  --gold: var(--primary-2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
.condensed { font-family: 'Baloo 2', sans-serif; }

.text-fire {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(232,115,44,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(232,115,44,0.4);
}
.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(43,24,16,0.15);
  transition: border-color var(--transition), background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(232,115,44,0.08);
  box-shadow: 0 0 24px rgba(232,115,44,0.1);
  transform: translateY(-2px);
}

/* ─── Section Shared ─────────────────────────────────────────────────────── */
section { padding: 7rem 0; }
.section-cream { background: var(--cream-2); }

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.label-line {
  height: 1px;
  width: 3rem;
  background: linear-gradient(90deg, transparent, var(--primary));
}
.label-line:last-child {
  background: linear-gradient(90deg, var(--primary), transparent);
}
.section-label span {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(251,241,229,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
@media (max-width: 640px) {
  .logo-img { width: 48px; height: 48px; }
}

.nav-toggle {
  display: none;
  color: var(--text);
  font-size: 1.25rem;
  padding: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.header-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(232,115,44,0.1);
  border: 1px solid rgba(232,115,44,0.25);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.85rem;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  white-space: nowrap;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ─── Cart Button ────────────────────────────────────────────────────────── */
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(232,115,44,0.1);
  color: var(--primary);
  font-size: 1.05rem;
  margin-left: 0.75rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.cart-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 4px;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid var(--cream);
  transition: background var(--transition), border-color var(--transition);
}
.cart-btn:hover .cart-count { background: var(--primary-2); }
#header.scrolled .cart-count { border-color: rgba(251,241,229,0.9); }

/* ─── Add to Cart Button ─────────────────────────────────────────────────── */
.add-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: auto;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--primary);
  color: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.add-cart-btn:hover {
  background: var(--primary-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,115,44,0.3);
}
.add-cart-btn:active { transform: scale(0.97); }
.add-cart-btn.added {
  background: var(--text);
}

/* ─── Cart Drawer ────────────────────────────────────────────────────────── */
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 90vw);
  height: 100vh;
  background: var(--cream);
  border-left: 1px solid var(--border);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--text);
}
.cart-header .drawer-close {
  position: static;
  font-size: 1.1rem;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-empty {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 3rem;
}

.cart-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}
.cart-item-img {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.15rem;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 26px; height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.8rem;
  transition: background var(--transition), border-color var(--transition);
}
.qty-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.cart-item-qty span {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  min-width: 1.25rem;
  text-align: center;
}
.cart-item-remove {
  color: var(--text-dim);
  font-size: 0.9rem;
  padding: 0.25rem;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--primary); }

.cart-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.5rem;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}
.cart-total span:last-child { color: var(--primary); }
.cart-checkout {
  width: 100%;
  justify-content: center;
}
.cart-checkout.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,24,16,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2099;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

/* ─── Mobile Nav Drawer ──────────────────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--cream-2);
  border-right: 1px solid var(--border);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 0.5rem;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  color: var(--text-muted);
  font-size: 1.25rem;
}

.drawer-link {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.drawer-link:hover { color: var(--text); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,24,16,0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(232,115,44,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 85%, rgba(244,160,74,0.16) 0%, transparent 50%),
    var(--cream);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(43,24,16,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,24,16,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 20vw;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(43,24,16,0.05);
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: 8rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(232,115,44,0.25);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 2rem;
  animation: heroPillIn 0.6s ease 0.3s both;
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.hero-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  animation: heroLineUp 0.9s ease 0.5s both;
}
.ht-dark { color: var(--text); }
.ht-fire {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-2) 50%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(232,115,44,0.25));
}
.ht-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(43,24,16,0.2);
}

.hero-sub {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 520px;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.7;
  animation: heroFadeUp 0.7s ease 0.9s both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: heroFadeUp 0.7s ease 1.1s both;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 4.5rem;
  animation: heroFadeUp 0.8s ease 1.4s both;
}
.stat {
  position: relative;
}
.stat::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(43,24,16,0.08);
}
.stat:last-child::after { display: none; }
.stat-num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: heroFadeUp 0.8s ease 2s both;
}
.scroll-pill {
  width: 1.25rem; height: 2rem;
  border: 1.5px solid rgba(43,24,16,0.15);
  border-radius: var(--radius-pill);
  display: flex;
  justify-content: center;
  padding-top: 0.35rem;
}
.scroll-dot {
  width: 4px; height: 8px;
  background: var(--primary);
  border-radius: var(--radius-pill);
  animation: scrollBounce 1.5s ease-in-out infinite;
}

/* ─── Hero Animations ────────────────────────────────────────────────────── */
@keyframes heroLineUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroPillIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ─── Menu Section ───────────────────────────────────────────────────────── */
#menu {
  background: var(--cream);
  position: relative;
}
#menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,115,44,0.25), transparent);
}

.tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 2.5rem;
}
.tabs-wrapper::-webkit-scrollbar { display: none; }

.tabs {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  padding-bottom: 0.5rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  background: #fff;
  white-space: nowrap;
  transition: all var(--transition);
}
.tab-btn:hover { color: var(--text); border-color: rgba(43,24,16,0.15); background: #fff; }
.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,115,44,0.25);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ─── Food Card ──────────────────────────────────────────────────────────── */
.food-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.food-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(232,115,44,0.15);
  border-color: rgba(232,115,44,0.2);
}

.card-img {
  aspect-ratio: 1/1;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-cat-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.75rem;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.25rem 1.5rem;
}
.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.card-name {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0;
}
.card-price {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.9rem;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
}
.card-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(232,115,44,0.12);
  color: var(--primary);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.6rem;
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.9rem;
}

/* ─── Favorites Section ──────────────────────────────────────────────────── */
.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.sig-card {
  position: relative;
  background: linear-gradient(135deg, rgba(232,115,44,0.07), #fff);
  border: 1.5px solid rgba(232,115,44,0.15);
  border-radius: var(--radius);
  padding: 2.5rem;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.sig-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(232,115,44,0.15);
}
.sig-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
}
.sig-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}
.sig-name {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.sig-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.sig-price {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary);
}
.sig-number {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(232,115,44,0.08);
}

/* ─── Combos Section ─────────────────────────────────────────────────────── */
#combos {
  background: var(--cream);
  position: relative;
}
#combos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,115,44,0.25), transparent);
}
.combos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.combos-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.combo-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.combo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,115,44,0.2);
  box-shadow: 0 12px 32px rgba(232,115,44,0.1);
}
.combo-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}
.combo-card-name {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}
.combo-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.combo-card-price {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  margin-top: 0.5rem;
  display: inline-block;
}

/* ─── Brand Strip ────────────────────────────────────────────────────────── */
.brand-strip {
  padding: 1.5rem 0;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.strip-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  padding: 5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand {
  text-align: center;
}
.footer-contact {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}
.footer-phone {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-phone i {
  color: var(--primary);
  font-size: 0.9rem;
}
.footer-tagline {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
.footer-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(232,115,44,0.1);
  color: var(--primary);
  font-size: 1.1rem;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav h4 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-copy { margin-bottom: 0.35rem; }
.footer-powered { font-size: 0.72rem; color: var(--text-dim); }
.footer-powered a { color: var(--primary); font-weight: 600; text-decoration: none; }
.footer-powered a:hover { text-decoration: underline; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .combos-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { justify-content: space-between; }
  .logo { margin: 0 auto; }
  .header-badge { display: none; }
  .signature-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 2rem; }
  .stat::after { display: none; }
}

@media (max-width: 640px) {
  section { padding: 4.5rem 0; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .combos-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; }
  .section-sub { margin-bottom: 2.5rem; }
}

@media (max-width: 400px) {
  .menu-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { justify-content: center; width: 100%; }
}
