/* ===== MENU PREVIEW ===== */
.menu-preview-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
@media (min-width: 768px) { .menu-preview-grid { grid-template-columns: repeat(4, 1fr); } }
.menu-preview-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 24px 16px; text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition-base);
}
.menu-preview-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.menu-preview-card__icon {
  width: 48px; height: 48px; margin: 0 auto 12px;
  background: var(--bg-muted); border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1.25rem;
}
.menu-preview-card__title {
  font-family: var(--font-heading); font-weight: 600;
  font-size: var(--text-base); margin-bottom: 6px;
}
.menu-preview-card__desc { font-size: var(--text-xs); color: var(--text-muted); margin-bottom: 8px; }
.menu-preview-card__price { font-size: var(--text-sm); font-weight: 600; color: var(--primary); }

/* ===== HOME PAGE HERO ===== */
.hero {
  position: relative; min-height: 80vh; display: flex; align-items: center;
  background: linear-gradient(135deg, #2E1A0F 0%, #4A2815 50%, #2E1A0F 100%);
  overflow: hidden; padding: 100px 0 60px;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(204,0,0,0.15) 0%, transparent 60%),
              url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; display: grid;
  grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 768px) {
  .hero-content { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 90vh; padding: 120px 0 80px; }
}
.hero-text-content { max-width: 560px; }
.tagline {
  font-size: var(--text-lg); color: var(--accent); margin-bottom: 12px;
}
.main-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 2.8rem; line-height: 1.1; color: var(--white);
  text-transform: uppercase; margin-bottom: 16px;
}
.highlight { color: var(--accent); }
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.75);
  line-height: 1.7; margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 10px; }
.hero-actions .btn { padding: 12px 20px; font-size: var(--text-sm); }
@media (min-width: 576px) {
  .hero-actions .btn { padding: 14px 28px; font-size: var(--text-base); }
}
@media (min-width: 768px) {
  .hero-actions .btn--lg { padding: 18px 40px; font-size: var(--text-lg); }
}
@media (min-width: 768px) { .main-title { font-size: 3.5rem; } }
@media (min-width: 992px) { .main-title { font-size: 4rem; } }

.hero-image-wrapper {
  position: relative; display: flex; justify-content: center;
}
.hero-badge {
  position: absolute; top: 0; right: 0; z-index: 3;
  background: var(--primary); color: var(--white); text-align: center;
  padding: 12px 20px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-red); transform: rotate(5deg);
}
.hero-badge .cursive-font {
  display: block; font-size: var(--text-sm); font-weight: 600;
}
.price-badge {
  display: block; font-family: var(--font-heading); font-weight: 700;
  font-size: var(--text-xl); margin-top: 4px;
}
.hero-img {
  width: 100%; max-width: 400px; height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}
/* ===== INFO BANNER ===== */
.info-banner {
  background: var(--white); padding: 32px 0; border-bottom: 1px solid var(--border);
}
.banner-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; text-align: center;
}
@media (min-width: 576px) { .banner-grid { grid-template-columns: repeat(3, 1fr); } }
.banner-item {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.banner-item svg {
  font-size: 1.6rem; color: var(--primary); width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(204,0,0,0.08); border-radius: 50%;
}
.banner-item h4 {
  font-family: var(--font-heading); font-weight: 600;
  font-size: var(--text-lg); color: var(--text-dark);
}
.banner-item p { font-size: var(--text-sm); color: var(--text-muted); }

/* ===== BRANCHES TEASER (home page) ===== */
.branches-section { background: var(--white); }
.branches-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px; max-width: 640px; margin: 0 auto;
}
.branches-card {
  background: var(--bg-light); border-radius: var(--radius-xl);
  padding: 32px 24px; text-align: center; border: 1px solid var(--border);
}
.branches-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: rgba(204,0,0,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary);
}
.branches-city {
  font-family: var(--font-heading); font-weight: 700;
  font-size: var(--text-xl); color: var(--text-dark); margin-bottom: 16px;
}
.branches-list { list-style: none; text-align: left; max-width: 400px; margin: 0 auto; }
.branches-list li {
  padding: 6px 0; font-size: var(--text-sm);
  display: flex; align-items: center; gap: 8px;
  break-inside: avoid;
}
.branches-list li a {
  display: flex; align-items: center; gap: 8px; width: 100%;
  color: var(--text-muted); text-decoration: none; transition: var(--transition-base);
}
.branches-list li a:hover { color: var(--primary); }
.branches-list li svg { width: 16px; text-align: center; flex-shrink: 0; }
.contact-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px 24px; text-align: center; border: 2px solid var(--border);
}
.contact-icon {
  width: 60px; height: 60px; margin: 0 auto 16px;
  background: rgba(204,0,0,0.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--primary);
}
.contact-title {
  font-family: var(--font-heading); font-weight: 700;
  font-size: var(--text-lg); color: var(--text-dark); margin-bottom: 8px;
}
.contact-subtitle { font-size: var(--text-sm); color: var(--text-muted); margin-bottom: 16px; }
.phone-numbers { display: flex; flex-direction: column; gap: 8px; }
.phone-link {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px; background: var(--bg-light); border-radius: var(--radius-full);
  font-family: var(--font-heading); font-weight: 600; font-size: var(--text-base);
  color: var(--primary); text-decoration: none; border: 1px solid var(--border);
  transition: var(--transition-base); min-height: 44px;
}
.phone-link:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.phone-link svg { font-size: var(--text-lg); }