/* ===== SELF-HOSTED FONT (no Google tracking) ===== */
@font-face {
  font-family: 'Noto Naskh Arabic';
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
  src: url('../assets/fonts/noto-naskh-arabic.woff2') format('woff2');
}

/* ===== DESIGN TOKENS ===== */
:root {
  --red:      #6B1020;
  --red-dk:   #560D1A;
  --dark:     #111111;
  --ink:      #1A1A1A;
  --mid:      #555555;
  --muted:    #888888;
  --border:   #E0E0E0;
  --light:    #F5F5F5;
  --white:    #FFFFFF;

  --f-head: 'Arial Black', 'Arial Bold', Impact, sans-serif;
  --f-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --f-ar:   'Noto Naskh Arabic', 'Traditional Arabic', 'Arabic Typesetting', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 56px; }

body {
  font-family: var(--f-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

body[dir="rtl"] { font-family: var(--f-ar); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== SITE NAV ===== */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .25s, box-shadow .25s;
}

.site-nav-inner {
  max-width: 1040px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center;
  height: 56px; gap: 24px;
}

.nav-brand {
  font-family: var(--f-head);
  font-size: 17px; font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-links {
  display: flex; gap: 20px;
  flex: 1;
}

.nav-links a {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color .15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
[dir="rtl"] .nav-links a { letter-spacing: 0; font-family: var(--f-ar); }

.site-nav.scrolled {
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 12px rgba(0,0,0,.3);
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switch {
  display: flex;
  background: rgba(17,17,17,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.lang-tab {
  font-family: var(--f-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: transparent; border: none;
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 9px 14px; cursor: pointer;
  transition: background .18s, color .18s;
}
.lang-tab:last-child { border-right: none; }
.lang-tab.active { background: var(--red); color: #fff; }
.lang-tab:not(.active):hover { background: rgba(255,255,255,0.07); color: #fff; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background:
    linear-gradient(rgba(10,5,5,0.1) 40%, rgba(10,5,5,0.72)),
    url('../assets/gallery/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end; justify-content: center;
  padding: 0 24px 72px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 60px,
    rgba(255,255,255,0.018) 60px, rgba(255,255,255,0.018) 61px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 640px;
}

.hero-logo {
  display: block;
  width: min(460px, 84vw);
  margin: 0 auto;
}

.hero-rule {
  width: 48px; height: 2px;
  background: rgba(255,255,255,0.45);
  margin: 28px auto;
}

.hero-tagline {
  font-size: clamp(15px, 2.2vw, 20px);
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.hero-actions {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}

.hero-info-bar {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}
.hero-info-item {
  display: flex; align-items: center; gap: 6px;
}
.hero-info-icon {
  width: 14px; height: 14px; flex-shrink: 0;
  stroke: rgba(255,255,255,0.85);
}
.hero-info-hours { display: flex; flex-direction: column; gap: 2px; }
.open-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.25);
  border-radius: 999px;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.open-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.open-badge.is-open .open-badge-dot { background: #3BA55C; box-shadow: 0 0 6px rgba(59,165,92,0.8); }
.open-badge.is-closed .open-badge-dot { background: #C0392B; box-shadow: 0 0 6px rgba(192,57,43,0.8); }
.hero-hours-note { font-size: 10px; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; }
.hero-info-sep { color: rgba(255,255,255,0.35); }
.hero-info-socials { display: flex; gap: 8px; }
.hero-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.08);
  transition: border-color .15s, color .15s, background .15s;
}
.hero-social-link svg { width: 15px; height: 15px; }
.hero-social-link:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.18); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px;
  font-family: var(--f-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: transform .13s, background .13s, border-color .13s;
  cursor: pointer; border: none;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.btn-icon { width: 15px; height: 15px; flex-shrink: 0; margin-inline-end: 2px; }

.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dk); }

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.65); color: #fff; }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--ink); }

.btn-solid-white {
  background: var(--white);
  color: var(--red);
}
.btn-solid-white:hover { background: var(--light); }

/* ===== ABOUT ===== */
.about {
  background: var(--light);
  padding: 40px 24px;
  border-bottom: 3px solid var(--red);
}
.about-inner {
  max-width: 800px; margin: 0 auto;
  display: flex; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.about-text {
  flex: 1 1 280px;
  font-size: clamp(14px, 1.8vw, 17px);
  color: var(--mid); line-height: 1.8;
}
.about-right { flex: 0 0 auto; text-align: center; }
.about-features {
  display: flex; gap: 20px; justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.about-feature {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--mid);
}
.about-feature svg {
  width: 28px; height: 28px;
  stroke: var(--red); fill: none;
  flex-shrink: 0;
}
.about-phone {
  display: block;
  font-family: var(--f-head);
  font-size: clamp(22px, 3.5vw, 30px); font-weight: 900;
  color: var(--ink); letter-spacing: 0.02em;
  transition: color .15s;
}
.about-phone:hover { color: var(--red); }
.about-address {
  font-size: 12px; color: var(--muted);
  margin-top: 6px; letter-spacing: 0.04em;
}

/* ===== SECTION HEADER ===== */
.section-header {
  background: var(--dark);
  padding: 16px 24px;
}
.section-header-inner {
  max-width: 960px; margin: 0 auto;
}
.section-title {
  font-family: var(--f-head);
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 900; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.04em;
}
[dir="rtl"] .section-title { font-family: var(--f-ar); letter-spacing: 0; }

/* ===== MENU ===== */
.menu { background: var(--white); padding-bottom: 80px; }

.menu-tabs-bar {
  position: sticky; top: 56px; z-index: 40;
  background: var(--light);
  border-bottom: 2px solid var(--border);
  display: flex; overflow-x: auto;
  scrollbar-width: none;
  padding: 8px 24px;
  gap: 4px;
}
.menu-tabs-bar::-webkit-scrollbar { display: none; }

.menu-tab {
  flex-shrink: 0; background: transparent; border: none;
  border-radius: 3px; margin-bottom: 0;
  padding: 8px 14px; cursor: pointer;
  font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); transition: color .15s, background .15s;
  white-space: nowrap;
}
.menu-tab:hover { color: var(--ink); background: rgba(0,0,0,0.05); }
.menu-tab.active { background: var(--red); color: var(--white); }
[dir="rtl"] .menu-tabs-bar { flex-direction: row-reverse; }
[dir="rtl"] .menu-tab { font-family: var(--f-ar); letter-spacing: 0; }

.menu-grid {
  max-width: 960px; margin: 0 auto;
  padding: 36px 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
  gap: 36px 56px; align-items: start;
}

.menu-placeholder {
  grid-column: 1 / -1;
  text-align: center; padding: 48px 24px;
  color: var(--muted); font-style: italic;
  border: 1.5px dashed var(--border);
}

.menu-cat-header {
  background: var(--red);
  padding: 7px 12px;
  margin-bottom: 10px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
}

.menu-cat-title {
  font-family: var(--f-head);
  font-size: 13.5px; font-weight: 900;
  color: var(--white);
  text-transform: uppercase; letter-spacing: 0.05em;
}
[dir="rtl"] .menu-cat-title { font-family: var(--f-ar); letter-spacing: 0; text-transform: none; }

.menu-item {
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item:last-child { border-bottom: none; }

.menu-item-left { flex: 1 1 auto; min-width: 0; }
.menu-item-name { font-size: 13.5px; color: var(--ink); line-height: 1.3; }
[dir="rtl"] .menu-item-name { font-family: var(--f-ar); }
.menu-item-desc { font-size: 11.5px; color: var(--muted); margin-top: 2px; font-style: italic; line-height: 1.35; }
[dir="rtl"] .menu-item-desc { font-family: var(--f-ar); font-style: normal; }

.menu-item-price {
  font-size: 13px; font-weight: 700;
  color: var(--red); white-space: nowrap;
  font-variant-numeric: tabular-nums; flex-shrink: 0;
}

/* Menu items with a photo (tap to view) */
.menu-item.has-photo { cursor: pointer; align-items: center; }
.menu-item.has-photo .menu-item-price { display: block; margin-top: 2px; }
.menu-item.has-photo:hover .menu-item-name { color: var(--red); }
.menu-item.has-photo:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.menu-item-thumb {
  width: 56px; height: 56px;
  border-radius: 8px; object-fit: cover;
  flex-shrink: 0;
  transition: transform .15s;
}
.menu-item.has-photo:hover .menu-item-thumb { transform: scale(1.04); }

/* ===== GALLERY ===== */
.gallery { background: var(--light); padding-bottom: 80px; }

.gallery-grid {
  max-width: 1040px; margin: 0 auto;
  padding: 36px 24px 0;
  columns: 4 220px; column-gap: 12px;
}

.gallery-item {
  break-inside: avoid; overflow: hidden;
  margin-bottom: 12px; position: relative; cursor: pointer;
}

.gallery-item img {
  width: 100%; display: block;
  transition: transform .30s ease;
}

.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(107,16,32,0); transition: background .3s;
  pointer-events: none;
}

.gallery-item:hover img { transform: scale(1.05); }
.gallery-item:hover::after { background: rgba(107,16,32,0.18); }

.gallery-placeholder {
  column-span: all;
  text-align: center; padding: 48px 24px;
  color: var(--muted); font-style: italic;
  border: 1.5px dashed var(--border);
}

/* ===== CONTACT ===== */
.contact { background: var(--white); padding-bottom: 80px; }

.contact-inner {
  max-width: 960px; margin: 0 auto;
  padding: 36px 24px 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}

.contact-field {
  display: flex; flex-direction: column;
  gap: 3px; margin-bottom: 18px;
}
.contact-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--red);
}
.contact-value { font-size: 15px; color: var(--ink); }
.contact-hours-note { font-size: 13px; color: var(--muted); }
.contact-btns {
  display: flex; flex-direction: column;
  gap: 10px; margin-top: 24px; max-width: 280px;
}
.contact-social {
  display: flex; gap: 10px; margin-top: 16px;
  flex-wrap: wrap;
}
.social-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border: 1.5px solid var(--border); padding: 8px 16px;
  transition: color .15s, border-color .15s;
}
.social-pill:hover { color: var(--ink); border-color: var(--ink); }
.social-icon { width: 15px; height: 15px; flex-shrink: 0; }

.map-embed {
  width: 100%; height: 340px;
  background: var(--light);
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-embed iframe { width: 100%; height: 100%; display: block; border: 0; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .22s, opacity .22s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }

/* ===== NAV DRAWER ===== */
.nav-drawer {
  position: fixed; top: 56px; left: 0; right: 0;
  background: rgba(15,10,10,0.97);
  backdrop-filter: blur(10px);
  z-index: 90;
  display: flex; flex-direction: column;
  max-height: 0; overflow: hidden;
  transition: max-height .28s ease;
}
.nav-drawer.open { max-height: 220px; }
.nav-drawer a {
  padding: 15px 24px;
  color: rgba(255,255,255,0.75);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color .15s, background .15s;
}
.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.nav-drawer a:focus-visible { outline: 2px solid var(--red); outline-offset: -2px; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-img {
  max-width: 92vw; max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
}
.lightbox-caption {
  position: absolute; bottom: 26px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff; font-size: 13.5px; font-weight: 600;
  padding: 8px 18px; border-radius: 999px;
  max-width: 86vw; text-align: center; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.lightbox-close {
  position: absolute; top: 18px; right: 22px;
  background: rgba(255,255,255,0.1); border: none;
  color: rgba(255,255,255,0.8); font-size: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); color: #fff; }
.lightbox-close:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none;
  color: rgba(255,255,255,0.8); font-size: 28px; line-height: 1;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  padding-bottom: 4px;
  transition: background .15s, color .15s;
}
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-nav:hover { background: rgba(255,255,255,0.22); color: #fff; }
.lightbox-nav:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ===== STICKY BAR (mobile only) ===== */
.sticky-bar {
  display: none;
  position: fixed; bottom: 0; z-index: 50;
  left: 50%; transform: translateX(-50%);
  width: 480px; max-width: 100%;
  padding-bottom: env(safe-area-inset-bottom);
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -1px 12px rgba(0,0,0,.2);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}

.sticky-btn {
  display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 16px 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: opacity .15s;
}
.sticky-btn:hover { opacity: .88; }
.sticky-icon { width: 16px; height: 16px; flex-shrink: 0; }

.sticky-call {
  background: var(--red); color: #fff;
}
.sticky-maps {
  background: var(--dark); color: rgba(255,255,255,0.75);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  text-align: center; padding: 28px 24px;
  font-size: 11.5px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.footer-social {
  margin-top: 10px; display: flex; gap: 10px;
  justify-content: center; font-size: 11px;
  letter-spacing: 0.06em;
}
.footer-social-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.45); transition: color .15s;
}
.footer-social-link:hover { color: rgba(255,255,255,0.8); }
.footer-social-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-dot { color: rgba(255,255,255,0.2); }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.18); margin-top: 8px; letter-spacing: 0.04em; }

/* ===== HISTOIRE ===== */
.history {
  display: none;
  background: var(--dark); color: rgba(255,255,255,0.85);
  padding: 64px 24px;
  text-align: center;
}
.history-inner {
  max-width: 720px; margin: 0 auto;
}
.history-title {
  font-family: var(--f-head);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900; letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white); margin-bottom: 32px;
}
.history-content {
  display: flex; flex-direction: column; gap: 18px;
}
.history-content p {
  font-size: 16px; line-height: 1.8;
  color: rgba(255,255,255,0.72);
}

/* ===== VIDEO ===== */
.video-section { background: var(--light); }
.video-wrapper {
  max-width: 900px; margin: 0 auto;
  padding: 0 24px 56px;
}
.video-wrapper iframe {
  width: 100%; aspect-ratio: 16 / 9;
  border: 0; display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px; margin: 0 auto;
  padding: 0 24px 56px;
}
.review-card {
  background: var(--light);
  border: 1px solid var(--border);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-stars { display: flex; gap: 2px; }
.star { color: #ccc; font-size: 18px; line-height: 1; }
.star.filled { color: #E8A020; }
.review-text {
  font-size: 15px; line-height: 1.7;
  color: var(--ink); font-style: italic;
  flex: 1;
}
.review-author {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.review-source { font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ===== RTL ===== */
[dir="rtl"] .site-nav-inner { flex-direction: row-reverse; }
[dir="rtl"] .nav-links { flex-direction: row-reverse; }
[dir="rtl"] .about-inner { flex-direction: row-reverse; }
[dir="rtl"] .about-right { text-align: center; }
[dir="rtl"] .contact-label { letter-spacing: 0; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed { opacity: 1; transform: none; }

/* ===== FOCUS STATES ===== */
.nav-links a:focus-visible,
.nav-drawer a:focus-visible,
.menu-tab:focus-visible,
.lang-tab:focus-visible,
.social-pill:focus-visible,
.footer-social-link:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.hero-social-link:focus-visible { outline: 2px solid rgba(255,255,255,0.7); outline-offset: 2px; }

/* ===== TABLET ===== */
@media (max-width: 900px) {
  .gallery-grid { columns: 3 180px; }
  .contact-inner { gap: 32px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
  body { padding-bottom: 60px; }
  .sticky-bar { display: grid; }
  .hamburger { display: flex; }
  .contact-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 260px; }
  .hero-actions .btn { width: 100%; }
  .contact-btns { max-width: none; }
  .about-inner { flex-direction: column; gap: 24px; text-align: center; }
  .nav-links { display: none; }
  .hero {
    padding: 0 20px 60px;
    align-items: flex-end;
    background:
      linear-gradient(rgba(10,5,5,0.1) 40%, rgba(10,5,5,0.75)),
      url('../assets/gallery/hero-mobile.jpg') center/cover no-repeat;
  }
  .hero-logo { width: min(280px, 78vw); }
  .hero-rule { margin: 16px auto; }
  .hero-tagline { margin-bottom: 24px; }
  .hero-info-bar { margin-top: 20px; gap: 10px; }
  .hero-info-sep { display: none; }
  .map-embed { height: 220px; }
  .menu-tabs-bar { padding: 6px 12px; }
  .menu-tab { padding: 7px 10px; font-size: 10.5px; }
  /* Appeler outline button: semi-filled so it's visible on photo */
  .btn-outline-white {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.65);
    color: #fff;
  }
}

@media (max-width: 520px) {
  .sticky-bar {
    left: 0; transform: none; width: auto;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
