/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --primary: #D90429;
  --primary-dark: #a8021e;
  --accent: #FFC300;
  --bg: #0d0d0d;
  --surface: #181818;
  --surface-2: #222222;
  --border: rgba(255,255,255,0.08);
  --text: #f5f5f5;
  --text-muted: rgba(245,245,245,0.55);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-pill: 100px;
  --container: 1200px;
  --header-h: 70px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-red: 0 4px 24px rgba(217,4,41,0.35);
  --font: 'Cairo', sans-serif;
}

/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  direction: rtl;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform .18s, box-shadow .18s, background .18s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 28px rgba(217,4,41,0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }

/* ===========================
   HEADER
   =========================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background .3s, box-shadow .3s;
}
#header.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-inline-start: auto;
}
.desktop-nav a {
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color .2s, background .2s;
}
.desktop-nav a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.header-cta { margin-inline-start: 0.5rem; }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1fba59; box-shadow: 0 6px 22px rgba(37,211,102,0.45); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-inline-start: auto;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s;
}

/* ===========================
   MOBILE DRAWER
   =========================== */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(320px, 85vw);
  background: var(--surface);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  transform: translateX(110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.6);
}
.nav-drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: color .2s;
}
.drawer-close:hover { color: #fff; }
.drawer-logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: var(--shadow-red);
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}
.drawer-nav a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  transition: background .2s, color .2s;
}
.drawer-nav a:hover { background: rgba(255,255,255,0.07); color: var(--primary); }
.drawer-cta { width: 100%; justify-content: center; margin-top: auto; }

/* ===========================
   HERO
   =========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.88) 0%,
    rgba(13,13,13,0.65) 50%,
    rgba(217,4,41,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--header-h);
  padding-bottom: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(217,4,41,0.18);
  border: 1px solid rgba(217,4,41,0.4);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
}
.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--primary); }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===========================
   STATS STRIP
   =========================== */
.stats-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1rem;
}
.stat-item i {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.stat-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ===========================
   SECTION HEADER
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
}

/* ===========================
   MENU SECTION
   =========================== */
.section-menu {
  padding: 5rem 0 4rem;
}
.tabs-wrap {
  margin-bottom: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs-wrap::-webkit-scrollbar { display: none; }
.tabs {
  display: flex;
  gap: 0.5rem;
  min-width: max-content;
  padding-bottom: 0.25rem;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all .2s;
  white-space: nowrap;
}
.tab-btn:hover { color: #fff; border-color: rgba(255,255,255,0.2); }
.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-red);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.menu-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(217,4,41,0.3);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--surface-2);
}
.card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.card-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}
.card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.card-price {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--accent);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.section-about {
  padding: 5rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--primary);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  box-shadow: var(--shadow-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}
.about-badge i { font-size: 1.5rem; }
.about-text { display: flex; flex-direction: column; gap: 1rem; }
.about-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}
.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.95rem;
}
.about-features i { color: var(--primary); font-size: 1rem; }

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-text h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; }
.cta-text p { color: rgba(255,255,255,0.75); margin-top: 0.3rem; }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }
.cta-banner .btn-primary { background: #fff; color: var(--primary); box-shadow: none; }
.cta-banner .btn-primary:hover { background: rgba(255,255,255,0.9); }
.cta-banner .btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; }
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.15); }

/* ===========================
   CONTACT SECTION
   =========================== */
.section-contact { padding: 5rem 0; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 0;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .25s, transform .25s;
}
.contact-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.contact-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(217,4,41,0.12);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
  border: 1px solid rgba(217,4,41,0.3);
}
.contact-card h3 { font-weight: 800; margin-bottom: 0.5rem; }
.contact-card a { color: var(--primary); font-weight: 700; font-size: 1rem; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  margin-bottom: 1rem;
}
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; max-width: 220px; }
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links h4, .footer-contact h4 {
  font-weight: 800; font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.25rem;
}
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p, .footer-contact a {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.9rem;
}
.footer-contact a:hover { color: var(--primary); }
.footer-contact i { color: var(--primary); width: 16px; }
.footer-bottom {
  padding: 1.25rem var(--container-pad, 1.25rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-powered { font-size: 0.72rem; color: var(--text-muted); }
.footer-powered a { color: var(--primary); font-weight: 600; }
.footer-powered a:hover { text-decoration: underline; }

/* ===========================
   FLOATING CART BUTTON
   =========================== */
.cart-fab {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red), 0 4px 20px rgba(0,0,0,0.4);
  transition: transform .2s, background .2s;
  border: none;
  cursor: pointer;
}
.cart-fab:hover { transform: scale(1.1); background: var(--primary-dark); }
.cart-fab.bump { animation: fabBump .35s ease; }
@keyframes fabBump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.25); }
  70%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #000;
  font-size: 0.72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid var(--bg);
  transition: transform .2s;
}
.cart-count.hidden { display: none; }

/* ===========================
   CART DRAWER
   =========================== */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1001;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: min(420px, 92vw);
  background: var(--surface);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  transform: translateX(-110%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 8px 0 40px rgba(0,0,0,0.6);
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-head h2 {
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-head h2 i { color: var(--primary); }
.cart-close {
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: color .2s;
  padding: 0.3rem;
}
.cart-close:hover { color: #fff; }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.85rem;
  align-items: center;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  border: 1px solid var(--border);
  animation: slideIn .25s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--surface);
  flex-shrink: 0;
}
.cart-item-info { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.cart-item-name {
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price { font-size: 0.78rem; color: var(--accent); font-weight: 700; }
.cart-item-controls { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.qty-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 0.2rem 0.4rem;
  border: 1px solid var(--border);
}
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: background .15s, color .15s;
}
.qty-btn:hover { background: var(--primary); color: #fff; }
.qty-num { font-size: 0.9rem; font-weight: 800; min-width: 18px; text-align: center; }
.cart-item-remove {
  font-size: 0.72rem;
  color: var(--text-muted);
  transition: color .2s;
  padding: 0.1rem 0.3rem;
}
.cart-item-remove:hover { color: var(--primary); }
.cart-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex: 1;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}
.cart-empty i { font-size: 3rem; opacity: 0.3; }
.cart-empty p { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.cart-empty span { font-size: 0.85rem; }
.cart-empty.show { display: flex; }
.cart-footer {
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}
.cart-footer.hidden { display: none; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
}
.cart-total-price { font-size: 1.15rem; font-weight: 900; color: var(--accent); }
.cart-order-btn { justify-content: center; background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,0.3); }
.cart-order-btn:hover { background: #1fba59; box-shadow: 0 6px 24px rgba(37,211,102,0.45); }

/* add-to-cart button on card */
.btn-cart {
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font);
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-cart:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-cart.added { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===========================
   SCROLL REVEAL
   =========================== */
/* (handled in JS via IntersectionObserver) */

/* ===========================
   RESPONSIVE — 1024px
   =========================== */
@media (max-width: 1024px) {
  .about-inner { gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ===========================
   RESPONSIVE — 900px
   =========================== */
@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 400px; margin-inline: auto; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .contact-cards { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

/* ===========================
   RESPONSIVE — 640px
   =========================== */
@media (max-width: 640px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===========================
   RESPONSIVE — 400px
   =========================== */
@media (max-width: 400px) {
  .menu-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}
