/* ============ The Brunett | ذا برونيت — Landing Page Styles ============ */

:root {
  --cream: #f4ecdd;
  --cream-soft: #faf6ec;
  --cream-line: #e6d9bf;
  --brown-950: #201510;
  --brown-900: #2c1c12;
  --brown-800: #40291a;
  --brown-700: #58371f;
  --brown-600: #6e4527;
  --brown-500: #8a5c34;
  --gold-600: #b9862f;
  --gold-500: #cc9a41;
  --gold-400: #dcae56;
  --gold-300: #ecc878;
  --ink: #221a14;
  --white: #fffdf8;

  --shadow-soft: 0 10px 30px rgba(32, 21, 16, 0.12);
  --shadow-card: 0 6px 18px rgba(44, 28, 18, 0.1);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --font-ar-head: "Tajawal", sans-serif;
  --font-ar-body: "Tajawal", sans-serif;
  --font-en-head: "Playfair Display", serif;
  --font-en-body: "Poppins", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-ar-body);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html[lang="en"] body {
  font-family: var(--font-en-body);
}

h1, h2, h3, h4 {
  font-family: var(--font-ar-head);
  margin: 0;
  color: var(--brown-900);
  line-height: 1.35;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] h4 {
  font-family: var(--font-en-head);
}

p { margin: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold-600);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
html[lang="ar"] .eyebrow { text-transform: none; letter-spacing: 0; }

.eyebrow::before, .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold-500);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
}
html[lang="en"] .section-head h2 { font-weight: 700; }

.section-head .sub {
  margin-top: 14px;
  color: var(--brown-600);
  font-size: 16.5px;
}

section { position: relative; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--brown-950);
  box-shadow: 0 10px 24px rgba(185, 134, 47, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(185, 134, 47, 0.45); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 236, 221, 0.55);
}
.btn-ghost:hover { background: rgba(244, 236, 221, 0.12); transform: translateY(-2px); }

.btn-dark {
  background: var(--brown-900);
  color: var(--cream);
}
.btn-dark:hover { background: var(--brown-800); transform: translateY(-2px); }

.btn-whatsapp {
  background: #25d366;
  color: #06210f;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45); }

.btn svg { width: 20px; height: 20px; flex: none; }

/* ============ Top bar / language switch ============ */

.topbar {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 60;
  background: rgba(32, 21, 16, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(220, 174, 86, 0.18);
  transition: background 0.3s ease;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.brand-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
}
.brand-mini img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold-400);
}
.brand-mini span {
  font-family: var(--font-en-head);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
html[lang="ar"] .brand-mini span { font-family: var(--font-ar-head); font-weight: 800; }

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(244, 236, 221, 0.12);
  border: 1px solid rgba(244, 236, 221, 0.3);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.lang-switch button {
  border: none;
  background: transparent;
  color: var(--cream);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  transition: background 0.25s ease, color 0.25s ease;
}
.lang-switch button.active {
  background: var(--gold-400);
  color: var(--brown-950);
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--cream);
  font-size: 15px;
  font-weight: 600;
}
.nav-links a { opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; }
.nav-links a:hover { opacity: 1; color: var(--gold-300); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(244, 236, 221, 0.12);
  border: 1px solid rgba(244, 236, 221, 0.3);
  border-radius: 10px;
  color: var(--cream);
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
  background: var(--brown-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero-truck.jpg") center 30% / cover no-repeat;
  filter: saturate(1.05) brightness(0.62);
  transform: scale(1.05);
}

.hero-bg::after { content: none; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 15% 15%, rgba(44, 28, 18, 0.35), transparent 55%),
    linear-gradient(180deg, rgba(20, 13, 9, 0.55) 0%, rgba(20, 13, 9, 0.72) 55%, rgba(15, 10, 7, 0.92) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.hero-logo-wrap {
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold-400);
  box-shadow: 0 0 0 8px rgba(220, 174, 86, 0.12), var(--shadow-soft);
  background: var(--cream-soft);
  flex: none;
}
.hero-logo img { width: 100%; height: 100%; object-fit: cover; }

.hero-content { color: var(--cream); text-align: start; }

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 236, 221, 0.1);
  border: 1px solid rgba(220, 174, 86, 0.35);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--gold-300);
}
.hero-rating .stars { color: var(--gold-400); letter-spacing: 1px; }

.hero-content h1 {
  color: var(--white);
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 800;
  letter-spacing: 0.01em;
}
html[lang="en"] .hero-content h1 { font-weight: 700; }

.hero-content .brand-ar-sub {
  display: block;
  font-family: var(--font-en-head);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--gold-300);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
html[lang="ar"] .hero-content .brand-ar-sub { font-family: var(--font-ar-head); letter-spacing: 0; }

.hero-tagline {
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--cream);
  opacity: 0.92;
  max-width: 560px;
  font-weight: 300;
}
html[lang="ar"] .hero-tagline { font-weight: 400; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 236, 221, 0.18);
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--cream);
  opacity: 0.9;
}
.hero-meta-item svg { width: 19px; height: 19px; color: var(--gold-400); flex: none; }

/* ============ Floating WhatsApp ============ */

.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 70;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  animation: pulse-wa 2.6s infinite;
}
.fab-whatsapp svg { width: 30px; height: 30px; color: #06210f; }
.fab-whatsapp:hover { transform: scale(1.06); }

@keyframes pulse-wa {
  0% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============ About strip ============ */

.about-strip {
  background: var(--cream-soft);
  padding: 70px 0;
  border-bottom: 1px solid var(--cream-line);
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.about-card {
  text-align: center;
  padding: 26px 16px;
}
.about-card .ic {
  width: 54px; height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-950);
}
.about-card .ic svg { width: 26px; height: 26px; }
.about-card h4 { font-size: 16.5px; margin-bottom: 6px; }
.about-card p { color: var(--brown-600); font-size: 14px; }

/* ============ Menu ============ */

.menu-section {
  padding: 110px 0 100px;
  background: var(--cream);
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.menu-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--cream-line);
  background: var(--cream-soft);
  color: var(--brown-700);
  font-weight: 700;
  font-size: 14.5px;
  transition: all 0.25s var(--ease);
}
.menu-tab.active, .menu-tab:hover {
  background: var(--brown-900);
  color: var(--cream);
  border-color: var(--brown-900);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.menu-photo-card {
  grid-column: span 5;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.menu-photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.menu-photo-card:hover img { transform: scale(1.06); }
.menu-photo-card .cap {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 18px 20px 16px;
  background: linear-gradient(0deg, rgba(20,13,9,0.85), transparent);
  color: var(--cream);
  font-family: var(--font-en-head);
  font-size: 15px;
  font-weight: 600;
}
html[lang="ar"] .menu-photo-card .cap { font-family: var(--font-ar-head); }

.menu-list-card {
  grid-column: span 7;
  background: var(--cream-soft);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-lg);
  padding: 8px;
}

.menu-cat {
  padding: 22px 26px;
  border-bottom: 1px dashed var(--cream-line);
}
.menu-cat:last-child { border-bottom: none; }

.menu-cat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gold-600);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
html[lang="ar"] .menu-cat-title { text-transform: none; letter-spacing: 0; }
.menu-cat-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--cream-line);
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  font-size: 16px;
  color: var(--brown-900);
}
.menu-item .dot-fill {
  flex: 1;
  height: 0;
  border-bottom: 1.5px dotted var(--cream-line);
  transform: translateY(-4px);
}
.menu-item .badge-new {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--brown-950);
  background: var(--gold-400);
  padding: 2px 9px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.menu-note {
  text-align: center;
  color: var(--brown-500);
  font-size: 13.5px;
  margin-top: 30px;
}

/* ============ Location ============ */

.location-section {
  padding: 100px 0;
  background: var(--brown-950);
  color: var(--cream);
}
.location-section .section-head h2 { color: var(--white); }
.location-section .section-head .sub { color: rgba(244, 236, 221, 0.75); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 34px;
  align-items: stretch;
}

.location-card {
  background: rgba(244, 236, 221, 0.06);
  border: 1px solid rgba(220, 174, 86, 0.22);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.loc-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.loc-row .ic {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  background: rgba(220, 174, 86, 0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-400);
}
.loc-row .ic svg { width: 21px; height: 21px; }
.loc-row h4 { color: var(--cream); font-size: 15.5px; margin-bottom: 4px; }
.loc-row p, .loc-row a { color: rgba(244, 236, 221, 0.78); font-size: 14.5px; }
.loc-row a:hover { color: var(--gold-300); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td {
  padding: 8px 0;
  font-size: 14.5px;
  color: rgba(244, 236, 221, 0.85);
  border-bottom: 1px dashed rgba(244, 236, 221, 0.12);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { font-weight: 700; color: var(--cream); }
.hours-table td:last-child { text-align: end; }
.hours-table tr.closed td:last-child { color: #e08a8a; }
.hours-table tr.today td:first-child { color: var(--gold-400); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(220, 174, 86, 0.22);
  min-height: 340px;
  box-shadow: var(--shadow-soft);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ============ Reviews ============ */

.reviews-section { padding: 110px 0; background: var(--cream-soft); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: -10px auto 46px;
  flex-wrap: wrap;
}
.rating-big { text-align: center; }
.rating-big .num { font-family: var(--font-en-head); font-size: 52px; font-weight: 700; color: var(--brown-900); line-height: 1; }
.rating-big .stars { color: var(--gold-500); font-size: 18px; margin: 8px 0; letter-spacing: 2px; }
.rating-big .count { font-size: 13.5px; color: var(--brown-500); }

.rating-bars { display: flex; flex-direction: column; gap: 5px; min-width: 220px; }
.rating-bar-row { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--brown-600); }
.rating-bar-row .track { flex: 1; height: 6px; background: var(--cream-line); border-radius: 999px; overflow: hidden; }
.rating-bar-row .fill { height: 100%; background: linear-gradient(90deg, var(--gold-400), var(--gold-600)); border-radius: 999px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-top { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-300), var(--brown-600));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex: none;
}
.review-name { font-weight: 700; font-size: 15px; color: var(--brown-900); }
.review-meta { font-size: 12px; color: var(--brown-500); margin-top: 2px; }
.review-stars { color: var(--gold-500); font-size: 14px; letter-spacing: 1px; }
.review-text { font-size: 14.5px; color: var(--brown-700); line-height: 1.85; }
.review-src {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--brown-500);
  padding-top: 10px;
  border-top: 1px dashed var(--cream-line);
}
.review-src svg { width: 14px; height: 14px; }

/* ============ Social ============ */

.social-section {
  padding: 90px 0 100px;
  background: var(--cream);
  text-align: center;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream-soft);
  border: 1px solid var(--cream-line);
  padding: 16px 26px;
  border-radius: 999px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  box-shadow: var(--shadow-card);
}
.social-card:hover { transform: translateY(-3px); background: var(--brown-900); color: var(--cream); }
.social-card:hover .social-handle { color: var(--gold-300); }
.social-card .ic {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-300), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--brown-950); flex: none;
}
.social-card .ic svg { width: 21px; height: 21px; }
.social-card .txt { text-align: start; }
.social-platform { font-weight: 700; font-size: 14.5px; }
.social-handle { font-size: 12.5px; color: var(--brown-500); transition: color 0.25s ease; }

.social-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 220px));
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}
.social-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
}
.social-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.social-gallery-item:hover img { transform: scale(1.07); }
.social-gallery-item span {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: 14px 14px 12px;
  background: linear-gradient(0deg, rgba(20,13,9,0.88), transparent);
  color: var(--cream);
  font-size: 12.5px;
  font-weight: 600;
  text-align: start;
}

/* ============ Footer ============ */

.footer {
  background: var(--brown-950);
  color: rgba(244, 236, 221, 0.75);
  padding: 60px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 236, 221, 0.12);
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--gold-400); object-fit: cover; }
.footer-brand span { font-family: var(--font-en-head); font-size: 21px; color: var(--white); font-weight: 700; }
html[lang="ar"] .footer-brand span { font-family: var(--font-ar-head); font-weight: 800; }
.footer p { font-size: 14px; line-height: 1.8; max-width: 320px; color: rgba(244, 236, 221, 0.65); }
.footer h5 { color: var(--cream); font-size: 14.5px; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
html[lang="ar"] .footer h5 { text-transform: none; letter-spacing: 0; }
.footer ul li { margin-bottom: 10px; font-size: 14px; }
.footer ul li a { color: rgba(244, 236, 221, 0.72); transition: color 0.2s ease; }
.footer ul li a:hover { color: var(--gold-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(244, 236, 221, 0.5);
}

/* ============ Mobile nav drawer ============ */

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 65;
  background: rgba(15, 10, 7, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer-panel {
  position: absolute;
  top: 0; inset-inline-end: 0;
  width: min(78vw, 320px);
  height: 100%;
  background: var(--brown-950);
  padding: 90px 28px 28px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
html[dir="rtl"] .mobile-drawer-panel { transform: translateX(-100%); }
.mobile-drawer.open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-panel a { color: var(--cream); font-size: 18px; font-weight: 700; }
.mobile-drawer-close {
  position: absolute; top: 24px; inset-inline-end: 24px;
  width: 36px; height: 36px;
  color: var(--cream);
}

/* ============ Responsive ============ */

@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-logo-wrap { justify-content: center; }
  .hero-content { text-align: center; }
  .hero-actions, .hero-meta { justify-content: center; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-photo-card, .menu-list-card { grid-column: span 1; }
  .menu-photo-card { aspect-ratio: 16/10; }
  .location-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero { padding: 120px 0 70px; }
  .hero-logo { width: 128px; height: 128px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .rating-summary { flex-direction: column; }
  .fab-whatsapp { width: 56px; height: 56px; bottom: 18px; inset-inline-end: 18px; }
}
