/* ==========================================================================
   SHALOM CORÉE - LUXURY BLACK & GOLD RIVIERA STYLESHEET
   ULTRA-RESPONSIVE ALL-DEVICES ENGINE (320px - 2560px+)
   ========================================================================== */

:root {
  /* Color Palette - Matte Black & Deep Charcoal */
  --bg-dark: #0b0a0c;
  --bg-dark-surface: #121115;
  --bg-card: rgba(22, 20, 25, 0.88);
  --bg-card-hover: rgba(32, 29, 36, 0.96);

  /* Gold & Brass Luxury Accents */
  --gold-primary: #d4af37;
  --gold-light: #f3e0a2;
  --gold-dark: #aa842a;
  --gold-soft: rgba(212, 175, 55, 0.12);
  --gold-gradient: linear-gradient(135deg, #aa842a 0%, #d4af37 50%, #f3e0a2 100%);
  --gold-gradient-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);

  /* Secondary Terracotta Accent */
  --terracotta: #d95338;
  --terracotta-soft: rgba(217, 83, 56, 0.12);

  /* Text Colors */
  --text-main: #f5f3ef;
  --text-muted: #afaa9e;
  --text-dim: #736e63;

  /* Typography */
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Borders & Shadows */
  --border-gold: 1px solid rgba(212, 175, 55, 0.25);
  --border-gold-strong: 1px solid rgba(212, 175, 55, 0.4);
  --border-soft: 1px solid rgba(255, 255, 255, 0.07);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 8px 25px rgba(212, 175, 55, 0.18);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  top: -15vw;
  left: -10vw;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -15vw;
  right: -10vw;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(217, 83, 56, 0.04) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 95px 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-terracotta {
  color: var(--terracotta);
}

.section-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: var(--gold-soft);
  border: var(--border-gold);
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.usp-badge-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 17, 21, 0.9);
  border: var(--border-gold);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(11, 10, 12, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: var(--border-gold);
  box-shadow: var(--shadow-dark);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-right-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}

.logo-text .accent {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-nav-order {
  padding: 9px 20px;
  background: var(--gold-gradient);
  color: #0b0a0c;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-nav-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

/* Language Selector Pills */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  background: rgba(22, 20, 25, 0.92);
  border: var(--border-gold);
  padding: 3px;
  border-radius: var(--radius-full);
}

.lang-btn {
  padding: 4px 9px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.lang-btn:hover {
  color: #fff;
}

.lang-btn.active {
  color: #0b0a0c;
  background: var(--gold-gradient);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

/* Mobile Hamburger Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition-normal);
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Nav Drawer Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 10, 12, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-links .nav-link {
  font-size: 1.4rem;
  font-family: var(--font-serif);
  font-weight: 700;
}

/* RTL Support for Hebrew */
html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .menu-item-ingredients {
  border-left: none;
  border-right: 2px solid var(--gold-primary);
}

html[dir="rtl"] .hours-item-row {
  border-left: none;
  border-right: 2px solid var(--gold-primary);
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 130px;
  padding-bottom: 85px;
  background: radial-gradient(circle at center, #17151a 0%, var(--bg-dark) 85%);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 24px 0 20px 0;
  color: #ffffff;
}

.hero-title .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  font-weight: 400;
  max-width: 760px;
  margin: 0 auto 40px auto;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-warm-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 34px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0b0a0c;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  min-height: 52px;
}

.btn-warm-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.45);
}

.btn-gold-outline-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  background: var(--gold-soft);
  border: var(--border-gold);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  transition: var(--transition-normal);
  min-height: 52px;
}

.btn-gold-outline-lg:hover {
  background: rgba(212, 175, 55, 0.18);
  transform: translateY(-3px);
}

/* HISTOIRE */
.history-section {
  position: relative;
  background: var(--bg-dark-surface);
  border-top: var(--border-soft);
  border-bottom: var(--border-soft);
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.photo-slot-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-gold);
  box-shadow: var(--shadow-dark);
  background: var(--bg-card);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.photo-slot-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform 0.6s ease;
}

.photo-slot-card:hover img {
  transform: scale(1.03);
}

.history-text-content h2 {
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  margin-bottom: 24px;
  color: #fff;
}

.history-paragraph {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.7;
}

.usp-highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.usp-highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: var(--border-soft);
  border-radius: var(--radius-md);
}

.usp-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.usp-info h4 {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-body);
}

.usp-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* CARTE MENU */
.menu-section {
  position: relative;
}

.menu-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px auto;
}

.menu-header h2 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  margin-bottom: 12px;
  color: #fff;
}

.menu-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 12px 22px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: var(--bg-card);
  border: var(--border-soft);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  min-height: 44px;
}

.tab-btn:hover {
  color: #fff;
  border-color: rgba(212, 175, 55, 0.3);
}

.tab-btn.active {
  color: #0b0a0c;
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.menu-content-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.menu-content-panel.active {
  display: block;
}

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

.menu-item-card {
  background: var(--bg-card);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-dark);
}

.menu-item-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-dark), 0 10px 30px rgba(212, 175, 55, 0.15);
}

.menu-item-photo-wrapper {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #17151a;
}

.menu-item-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.menu-item-card:hover .menu-item-photo-wrapper img {
  transform: scale(1.06);
}

.menu-item-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.menu-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.menu-item-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}

.menu-item-price {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.3);
  white-space: nowrap;
}

.menu-item-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 12px;
}

.menu-item-ingredients {
  font-size: 0.82rem;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.06);
  padding: 8px 12px;
  border-left: 2px solid var(--gold-primary);
  border-radius: 4px;
  margin-bottom: 14px;
  line-height: 1.45;
}

.menu-item-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.tag-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.tag-badge.spicy {
  background: rgba(217, 83, 56, 0.15);
  color: var(--terracotta);
  border: 1px solid rgba(217, 83, 56, 0.3);
}

.tag-badge.bestseller {
  background: var(--gold-soft);
  color: var(--gold-primary);
  border: var(--border-gold);
}

.tag-badge.parve {
  background: rgba(243, 224, 162, 0.1);
  color: var(--gold-light);
  border: 1px solid rgba(243, 224, 162, 0.2);
}

/* CHABBAT */
.shabbat-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #151318 50%, var(--bg-dark) 100%);
  border-top: var(--border-gold);
  border-bottom: var(--border-gold);
}

.shabbat-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.shabbat-content h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  margin-bottom: 18px;
  color: #fff;
}

.shabbat-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 26px;
  line-height: 1.65;
}

.shabbat-box-card {
  background: rgba(22, 20, 25, 0.92);
  border: var(--border-gold-strong);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-dark);
}

.shabbat-box-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--gold-primary);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shabbat-ingredients-list {
  list-style: none;
  margin: 18px 0 24px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.shabbat-ingredient-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.shabbat-ingredient-item span {
  color: var(--gold-primary);
}

.btn-gold-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0b0a0c;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: var(--transition-normal);
  min-height: 52px;
}

.btn-gold-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

/* CERTIFICATION */
.certification-section {
  padding: 60px 0;
  background: var(--bg-dark-surface);
  border-top: var(--border-soft);
  border-bottom: var(--border-soft);
}

.certif-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: left;
  flex-wrap: wrap;
}

.certif-seal-icon {
  width: 76px;
  height: 76px;
  background: var(--gold-soft);
  border: var(--border-gold-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.certif-text h3 {
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 4px;
}

.certif-text p {
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* FOOTER & LUXURY HOURS WIDGET */
.footer {
  position: relative;
  background: #070608;
  padding-top: 75px;
  padding-bottom: 35px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-info h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #fff;
}

.footer-info p {
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 26px;
}

.contact-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: var(--border-soft);
  border-radius: var(--radius-md);
}

.contact-icon {
  font-size: 1.3rem;
  color: var(--gold-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  display: block;
}

.contact-details span, .contact-details a {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.hours-widget-card {
  background: rgba(22, 20, 25, 0.95);
  border: var(--border-gold);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-dark);
}

.hours-widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.hours-widget-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
  border-left: 2px solid var(--gold-primary);
}

.hours-item-row.closed {
  border-left-color: var(--text-dim);
  opacity: 0.7;
}

.hours-day-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}

.hours-time-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.time-pill {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-light);
}

.time-pill.closed-pill {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-gold);
  height: 440px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1);
}

.footer-bottom {
  border-top: var(--border-soft);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ANIMATIONS & REVEAL */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (TABLETS & PHONES)
   ========================================================================== */

@media (max-width: 992px) {
  .section-padding {
    padding: 70px 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .history-grid, .shabbat-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .photo-slot-card img {
    height: 350px;
  }

  .map-wrapper {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .container {
    width: 92%;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .btn-nav-order {
    padding: 7px 14px;
    font-size: 0.78rem;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
    padding-bottom: 60px;
  }

  .usp-badge-banner {
    padding: 6px 16px;
    font-size: 0.76rem;
  }

  .hero-title {
    font-size: 2.1rem;
    margin: 18px 0 16px 0;
  }

  .hero-subtitle {
    font-size: 0.96rem;
    margin-bottom: 28px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-warm-lg, .btn-gold-outline-lg {
    width: 100%;
    justify-content: center;
  }

  .usp-highlights-list, .shabbat-ingredients-list {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    margin-bottom: 28px;
  }

  .tab-btn {
    white-space: nowrap;
    flex-shrink: 0;
    scroll-snap-align: start;
    font-size: 0.8rem;
    padding: 10px 18px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-item-photo-wrapper {
    height: 200px;
  }

  .shabbat-box-card {
    padding: 20px;
  }

  .shabbat-box-title {
    font-size: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .certif-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .hours-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .nav-right-group {
    gap: 8px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .lang-btn {
    padding: 3px 6px;
    font-size: 0.72rem;
  }

  .btn-nav-order {
    display: none;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .photo-slot-card img {
    height: 260px;
  }

  .btn-gold-lg {
    font-size: 0.82rem;
    padding: 14px 16px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
