/* ============================================
   LAHBOUL TAFILALET — Main Stylesheet
   Luxury Moroccan Restaurant, Meknes
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

/* ---- CSS Variables — Moroccan Palette ---- */
:root {
  /* Primary — Saharan Gold */
  --gold:        #C9A24C;
  --gold-light:  #E4BE6E;
  --gold-pale:   #F3E4BE;
  --gold-deep:   #A8862F;

  /* Accents — Terracotta / Sunset Clay */
  --terracotta:  #A0522D;
  --terra-deep:  #7B3A1E;
  --terra-soft:  #C77B52;

  /* Neutrals — Ivory & Parchment */
  --ivory:       #FBF7EF;
  --ivory-warm:  #F1E7D2;
  --ivory-deep:  #E8DAB9;

  /* Dark tones — Charcoal / Cocoa */
  --charcoal:    #1C1410;
  --brown-deep:  #3B2618;
  --brown-mid:   #5C3D2E;

  /* Text */
  --text-dark:   #241812;
  --text-body:   #4A3528;
  --text-muted:  #8A7060;
  --white:       #FFFFFF;

  /* Semantic aliases (consistent usage across site) */
  --bg-page:     var(--ivory);
  --bg-alt:      var(--ivory-warm);
  --bg-dark:     var(--charcoal);
  --accent:      var(--gold);
  --accent-2:    var(--terracotta);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;
  --font-arabic:  'Amiri', serif;

  --radius:      4px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-soft: 0 8px 40px rgba(28,20,16,0.12);
  --shadow-gold: 0 4px 20px rgba(201,162,76,0.28);

  /* Spacing scale */
  --sp-1: 0.5rem;   /*  8px */
  --sp-2: 1rem;     /* 16px */
  --sp-3: 1.5rem;   /* 24px */
  --sp-4: 2rem;     /* 32px */
  --sp-5: 2.5rem;   /* 40px */
  --sp-6: 3rem;     /* 48px */
  --sp-8: 4rem;     /* 64px */
  --sp-10: 5rem;    /* 80px */
  --sp-12: 6rem;    /* 96px */

  /* Layout */
  --container-max: 1200px;
  --container-pad: 1.5rem;
  --section-gap:   var(--sp-12);
  --navbar-h:      72px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-page);
  color: var(--text-body);
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  min-height: 100vh;
}

img { max-width: 100%; width: auto; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { font-family: inherit; }

/* Anchor targets clear the fixed navbar when jumped to */
section[id] { scroll-margin-top: var(--navbar-h); }

/* Accessible focus ring — only on keyboard nav */
a:focus-visible, button:focus-visible,
.form-input:focus-visible, .form-select:focus-visible, .form-textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ivory-warm); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::selection { background: var(--gold-pale); color: var(--terra-deep); }

/* ============================================
   ZELLIGE PATTERN UTILITY
   ============================================ */
.zellige-bg { position: relative; }
.zellige-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: 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='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M30 0l15 15-15 15-15-15L30 0zm0 30l15 15-15 15-15-15L30 30zM0 30l15-15 15 15-15 15L0 30zm60 0l-15-15-15 15 15 15L60 30z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.zellige-bg > * { position: relative; z-index: 1; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  margin: 0; border: 0;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(28,20,16,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar::before, .navbar::after { content: none; }
.navbar.scrolled {
  background: rgba(28,20,16,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.nav-logo, .nav-logo:hover, .nav-logo:focus,
.nav-logo-img { border: 0; outline: 0; text-decoration: none; background: transparent; }
.nav-logo-img { box-shadow: none; }

.nav-logo { display: flex; align-items: center; gap: 0.85rem; }
.nav-logo-img {
  width: 48px; height: 48px;
  object-fit: contain; object-position: center;
  flex-shrink: 0; display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.45));
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.08em; text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.nav-logo-sub {
  font-size: 0.62rem; color: var(--gold);
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 300;
}

.nav-center { display: flex; align-items: center; gap: 2.5rem; }
.nav-center a {
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.18em; text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.nav-center a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-center a:hover { color: var(--gold); }
.nav-center a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-switcher {
  display: flex;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px; overflow: hidden;
}
.lang-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  cursor: pointer; transition: all var(--transition);
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--gold); color: var(--charcoal); text-shadow: none;
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(300px, 85vw); max-width: 100vw;
  height: 100vh;
  background: var(--charcoal); z-index: 999;
  padding: 5rem 2rem 2rem;
  display: flex; flex-direction: column; gap: 0;
  transition: right var(--transition);
  border-left: 1px solid rgba(201,168,76,0.15);
}
.nav-drawer.open { right: 0; }
.nav-drawer a {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--white);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), padding-left var(--transition);
}
.nav-drawer a:hover { color: var(--gold); padding-left: 0.4rem; }
.nav-drawer .lang-switcher {
  margin-top: 2rem;
  border: none; overflow: visible;
  justify-content: center; flex-wrap: wrap; gap: 0.6rem;
  width: 100%;
}
.nav-drawer .lang-btn {
  border: 1px solid rgba(201,162,76,0.35);
  border-radius: 4px;
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem; min-width: 56px;
  text-align: center;
}

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.nav-overlay.show { opacity: 1; pointer-events: all; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--charcoal);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(28,20,16,0.2) 0%, rgba(28,20,16,0.55) 50%, rgba(28,20,16,0.92) 100%),
    url('../Assets/interior.png') center center / cover no-repeat;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(650px, 88vw); height: min(650px, 88vw);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 50%; pointer-events: none;
}
.hero-ring::before {
  content: ''; position: absolute; inset: 20px;
  border: 1px solid rgba(201,168,76,0.06);
  border-radius: 50%;
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 2rem;
  max-width: 860px;
}
.hero-pre {
  font-size: 0.72rem; color: var(--gold);
  letter-spacing: 0.32em; text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: fadeUp 1s 0.2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 300; color: var(--white);
  line-height: 1.05; letter-spacing: 0.03em;
  animation: fadeUp 1s 0.35s both;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-arabic {
  font-family: var(--font-arabic);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
  animation: fadeUp 1s 0.48s both;
}
.hero-rule {
  width: 55px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 2rem auto;
  animation: fadeUp 1s 0.55s both;
}
.hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s 0.65s both;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  animation: heroScrollFade 1s 0.9s both;
}
@keyframes heroScrollFade {
  from { opacity: 0; transform: translateX(-50%) translateY(28px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; height: 35px; }
  50%       { opacity: 1;   height: 45px; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer; transition: all var(--transition);
  border: none; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-dark { background: var(--charcoal); color: var(--gold); border: 1px solid var(--gold); }
.btn-dark:hover { background: var(--gold); color: var(--charcoal); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ============================================
   SECTION COMMONS
   ============================================ */
section { padding: var(--section-gap) 0; }
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto; margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  box-sizing: border-box;
}

.section-header { text-align: center; margin-bottom: var(--sp-8); }
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 500;
  color: var(--gold-deep); letter-spacing: 0.35em;
  text-transform: uppercase; margin-bottom: var(--sp-1);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300; color: var(--text-dark); line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-line {
  width: 56px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  margin: var(--sp-3) auto 0; border-radius: 2px;
}
.section-desc {
  max-width: 560px; width: 100%; margin: var(--sp-3) auto 0;
  color: var(--text-body); font-size: 1.02rem; line-height: 1.85;
  opacity: 0.85;
}

/* Dark-background sections reuse a single label tone */
.about .section-label,
.panoramic-inner .section-label,
.reservation .section-label { color: var(--gold-light); }

/* ============================================
   ABOUT
   ============================================ */
.about { background: var(--charcoal); overflow: hidden; position: relative; }

/* Desktop: two-column grid — image left, content right */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12); align-items: center;
}

/* Image sits in column 1 row 1 */
.about-img-wrap {
  position: relative; overflow: hidden;
  grid-column: 1; grid-row: 1;
}
.about-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: var(--radius);
}
.about-img-border {
  position: absolute;
  top: -18px; left: -18px; right: 18px; bottom: 18px;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius); pointer-events: none;
}
.about-badge {
  position: absolute; bottom: -14px; right: -14px;
  width: 96px; height: 96px;
  background: var(--gold); border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: var(--charcoal);
}
.about-badge .num { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1; }
.about-badge .lbl { font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); }

/* Content sits in column 2 row 1 */
.about-content { grid-column: 2; grid-row: 1; }

.about-content .section-title { color: var(--white); text-align: left; }
.about-content .section-line  { margin-left: 0; margin-right: auto; }
.about-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.02rem; line-height: 1.95;
  margin-top: var(--sp-3);
}

.about-stats {
  display: flex; gap: var(--sp-5);
  margin-top: var(--sp-5); padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 0.68rem; color: rgba(255,255,255,0.4); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 0.25rem; }

/* ============================================
   SPECIALTY
   ============================================ */
.specialty { background: var(--ivory); }
.dishes-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4); margin-bottom: var(--sp-6);
}
.dish-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  width: 100%; min-width: 0;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(28,20,16,0.15); }
.dish-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; width: 100%; }
.dish-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.dish-card:hover .dish-img { transform: scale(1.07); }
.dish-tag {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: var(--gold); color: var(--charcoal);
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; border-radius: 2px;
}
.dish-body { padding: 1.4rem 1.4rem 0.8rem; }
.dish-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--text-dark); }
.dish-name-ar { font-family: var(--font-arabic); font-size: 0.95rem; color: var(--text-muted); display: block; margin: 0.2rem 0 0.7rem; }
.dish-desc { font-size: 0.93rem; color: var(--text-body); line-height: 1.8; opacity: 0.85; }
.dish-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.4rem;
  border-top: 1px solid var(--ivory-warm); margin-top: 0.8rem;
}
.dish-origin { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; }
.menu-cta { text-align: center; margin-top: var(--sp-5); }

/* ============================================
   PANORAMIC
   ============================================ */
.panoramic {
  position: relative; min-height: 58vh;
  display: flex; align-items: center; overflow: hidden; width: 100%;
}
.panoramic > .container { position: relative; z-index: 2; }
.panoramic-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #7B3A1E 0%, #A0522D 30%, #5C3D2E 65%, #1C1410 100%);
}
.panoramic-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.07'%3E%3Cpath d='M40 0L80 40 40 80 0 40z'/%3E%3Cpath d='M40 20L60 40 40 60 20 40z' fill-opacity='0.05'/%3E%3C/g%3E%3C/svg%3E");
}
.panoramic-bg::before {
  content: ''; position: absolute;
  top: -80px; right: -80px;
  width: min(420px, 80vw); height: min(420px, 80vw);
  background: radial-gradient(circle, rgba(201,168,76,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.panoramic-inner {
  padding: 5.5rem 0;
  max-width: 780px;
  margin: 0 auto; text-align: center;
}
.panoramic-inner .section-title { color: var(--white); text-align: center; }
.panoramic-inner .section-title em { color: var(--gold-light); }
.panoramic-inner .section-line  { margin: 1.25rem auto 0; }
.panoramic-inner p { color: rgba(255,255,255,0.82); margin: 1.75rem auto 0; max-width: 640px; font-size: 1.05rem; line-height: 1.9; }
.pano-features { display: flex; flex-wrap: wrap; gap: 1.5rem 2rem; margin-top: 2.75rem; justify-content: center; }
.pano-feat {
  display: flex; align-items: center; gap: 0.55rem;
  color: rgba(255,255,255,0.85); font-size: 0.85rem;
}
.pano-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { background: var(--ivory-warm); overflow: hidden; width: 100%; max-width: 100vw; }
.reviews-wrap { position: relative; overflow: hidden; width: 100%; }
.reviews-wrap::before, .reviews-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 80px; z-index: 2; pointer-events: none;
}
.reviews-wrap::before { left: 0; background: linear-gradient(to right, var(--ivory-warm), transparent); }
.reviews-wrap::after  { right: 0; background: linear-gradient(to left, var(--ivory-warm), transparent); }
.reviews-track {
  display: flex; gap: 1.5rem;
  animation: scrollLeft 42s linear infinite;
  width: max-content;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 1.75rem; width: 320px; min-width: 0; flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--gold);
}
.review-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.9rem; letter-spacing: 2px; }
.review-text {
  font-family: var(--font-display); font-size: 1.05rem;
  font-style: italic; color: var(--charcoal);
  line-height: 1.75; margin-bottom: 1.1rem;
}
.review-author { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.review-via { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.15rem; }

/* ============================================
   RESERVATION
   ============================================ */
.reservation { background: var(--charcoal); position: relative; overflow: hidden; }
.reservation::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: min(380px, 80vw); height: min(380px, 80vw);
  border: 1px solid rgba(201,168,76,0.07);
  border-radius: 50%;
}
.reservation .section-title { color: var(--white); }
.reservation .section-desc  { color: rgba(255,255,255,0.7); opacity: 1; }

.res-form { max-width: 680px; width: 100%; margin: 0 auto; position: relative; z-index: 1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.68rem; color: rgba(255,255,255,0.5); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 0.9rem 1rem;
  color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%; outline: none; appearance: none; -webkit-appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath stroke='%23C9A84C' stroke-width='1.5' fill='none' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.form-select option { background: var(--charcoal); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.form-textarea { resize: vertical; min-height: 95px; }
.form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; padding: 1rem; font-size: 0.78rem; }
.wa-note {
  text-align: center; margin-top: 0.9rem;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}

/* ============================================
   FIND US
   ============================================ */
.find-us { background: var(--ivory); }
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8); align-items: center;
}
.find-us-info {
  background: var(--white);
  border: 1px solid rgba(201,162,76,0.14);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(28,20,16,0.07);
  padding: var(--sp-6);
}
.find-us-info .section-title { text-align: left; }
.find-us-info .section-line  { margin-left: 0; margin-right: auto; }
.info-list {
  margin-top: var(--sp-5);
  display: flex; flex-direction: column; gap: var(--sp-5);
}
.info-item {
  display: flex; gap: var(--sp-3);
  align-items: flex-start; padding: 0;
}
.info-item > div { flex: 1; min-width: 0; }
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border: 1px solid rgba(201,162,76,0.35);
  background: rgba(201,162,76,0.1);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  margin-top: 0.1rem;
}
.info-icon svg {
  width: 19px; height: 19px;
  stroke: currentColor; fill: none;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round;
  display: block;
}
.info-label {
  font-size: 0.65rem; color: var(--text-muted);
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
}
.info-val {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--text-dark); line-height: 1.55; margin-top: 0.25rem;
  word-break: break-word; overflow-wrap: anywhere;
}
.info-val a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.info-val a:hover { color: var(--gold-deep); border-bottom-color: var(--gold-pale); }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); height: clamp(360px, 42vw, 480px); }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  padding: 4rem 1.5rem 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-logo-img {
  width: 88px; height: 88px;
  object-fit: contain; object-position: center;
  margin: 0 auto 1rem; display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.55));
}
.footer-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white); letter-spacing: 0.15em; text-transform: uppercase; }
.footer-tagline { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.28em; text-transform: uppercase; margin-top: 0.2rem; }
.footer-rule { width: 48px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin: 1.5rem auto; }
.footer-social { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.footer-social a {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.45); font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color var(--transition);
  word-break: break-word; overflow-wrap: anywhere;
  text-align: center; flex-wrap: wrap; justify-content: center;
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom { font-size: 0.72rem; color: rgba(255,255,255,0.28); line-height: 2.2; }
.footer-bottom a { color: rgba(201,168,76,0.75); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 900;
  width: 52px; height: 52px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); animation: none; }
.wa-float svg { width: 25px; height: 25px; fill: white; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.65), 0 0 0 7px rgba(37,211,102,0.08); }
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   MENU PAGE (shared across menu.html / menu-fr.html / menu-ar.html)
   ============================================ */
.menu-hero {
  position: relative;
  height: 45vh; min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--charcoal);
}
.menu-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(28,20,16,0.45) 0%, rgba(28,20,16,0.85) 100%),
    url('../Assets/hero2.jpg') center/cover no-repeat;
}
.menu-hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 1.5rem;
  width: 100%; max-width: 900px;
}
.menu-back {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 1.5rem;
  transition: opacity var(--transition), transform var(--transition);
}
.menu-back:hover { opacity: 0.75; transform: translateX(-3px); }

.menu-page { background: var(--ivory); padding: 5rem 0 6rem; }

.coming-soon-banner {
  background: linear-gradient(135deg, var(--terracotta), var(--terra-deep));
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  word-break: break-word;
}
.coming-soon-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 0l10 10-10 10-10-10L20 0zm0 20l10 10-10 10-10-10L20 20z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.coming-soon-icon  {
  width: 48px; height: 48px; margin: 0 auto 0.9rem;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white); position: relative; z-index: 1;
}
.coming-soon-icon svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.coming-soon-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--white); margin-bottom: 0.5rem; position: relative; z-index: 1; }
.coming-soon-text  { font-size: 0.95rem; color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; line-height: 1.75; position: relative; z-index: 1; }

.menu-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 3rem; justify-content: center;
}
.tab-btn {
  background: none;
  border: 1px solid var(--gold-pale);
  border-radius: 2px;
  padding: 0.55rem 1.25rem;
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); cursor: pointer;
  transition: all var(--transition);
  white-space: normal; word-break: break-word;
}
.tab-btn:hover, .tab-btn.active {
  background: var(--gold); color: var(--charcoal); border-color: var(--gold);
}

.menu-category { margin-bottom: 4rem; }
.menu-category[hidden] { display: none; }
.menu-category-header {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2rem;
}
.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.75rem; font-weight: 300; color: var(--charcoal);
  word-break: break-word;
}
.menu-category-title em { font-style: italic; color: var(--terracotta); }
.menu-cat-line { flex: 1; height: 1px; background: var(--ivory-warm); min-width: 20px; }

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem; width: 100%;
}
.menu-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(28,20,16,0.06);
  display: flex; flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition), border-bottom-color var(--transition);
  border-bottom: 2px solid transparent;
  width: 100%; min-width: 0; box-sizing: border-box;
}
.menu-item:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
  border-bottom-color: var(--gold);
}
.menu-item-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 1rem; margin-bottom: 0.5rem;
}
.menu-item-name     { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--text-dark); word-break: break-word; }
.menu-item-name-ar  { font-family: var(--font-arabic); font-size: 0.9rem; color: var(--text-muted); display: block; margin-top: 0.15rem; }
.menu-item-name-sub { font-family: var(--font-display); font-size: 0.85rem; color: var(--text-muted); display: block; margin-top: 0.15rem; font-style: italic; }
.menu-item-badge {
  background: var(--gold-pale); color: var(--terra-deep);
  font-size: 0.58rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.25rem 0.6rem;
  border-radius: 2px; white-space: nowrap; flex-shrink: 0;
  align-self: flex-start;
}
.menu-item-desc  { font-size: 0.9rem; color: var(--text-body); line-height: 1.75; flex: 1; word-break: break-word; overflow-wrap: anywhere; opacity: 0.85; }
.menu-item-origin { font-size: 0.68rem; color: var(--gold-deep); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0.9rem; font-weight: 500; }

.placeholder-item {
  background: var(--ivory-warm);
  border: 1.5px dashed var(--gold-pale);
  opacity: 0.65;
}
.placeholder-item:hover { transform: none; box-shadow: none; border-bottom-color: transparent; }

/* ============================================
   RESPONSIVE — LARGE TABLET / SMALL LAPTOP (1180px)
   ============================================ */
@media (max-width: 1200px) {
  .nav-center  { gap: var(--sp-4); }
  .about-grid  { gap: var(--sp-8); }
}

/* ============================================
   RESPONSIVE — TABLET (1024px)
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-gap: var(--sp-10); }
  .dishes-grid     { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .about-grid      { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .find-us-grid    { grid-template-columns: 1fr 1fr; gap: var(--sp-6); }
  .find-us-info .section-title { text-align: left; }
  .find-us-info .section-line  { margin-left: 0; margin-right: auto; }
  .map-wrap        { height: clamp(320px, 40vw, 420px); }
  .panoramic-inner { padding: var(--sp-10) 0; }
  .about-stats     { gap: var(--sp-4); }
  .nav-center      { gap: var(--sp-3); }
  .nav-center a    { font-size: 0.72rem; letter-spacing: 0.14em; }
  .menu-items      { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE — SMALL TABLET / LARGE PHONE (900px)
   ============================================ */
@media (max-width: 900px) {
  :root { --section-gap: var(--sp-8); }
  .about-grid {
    display: flex; flex-direction: column;
    gap: var(--sp-4); align-items: center;
  }
  .about-content  { display: contents; }
  .about-header   { order: 1; width: 100%; text-align: center; }
  .about-img-wrap { order: 2; width: 100%; max-width: 520px; margin: 0 auto; }
  .about-content > p {
    order: 3; width: 100%; max-width: 620px;
    margin: var(--sp-2) auto 0; text-align: center;
    color: rgba(255,255,255,0.8);
  }
  .about-stats {
    order: 4; width: 100%; justify-content: center;
    margin-top: var(--sp-3); padding-top: var(--sp-3);
  }
  .about-header .section-title,
  .about-header .section-line { text-align: center; margin-left: auto; margin-right: auto; }
  .panoramic-inner { padding: var(--sp-8) 0; }
}

/* ============================================
   RESPONSIVE — MOBILE (768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-gap:   var(--sp-6);
    --container-pad: 1.25rem;
    --navbar-h:      60px;
  }

  /* ---- Base ---- */
  html { font-size: 15px; }
  .section-header { margin-bottom: var(--sp-5); }
  .section-label  { font-size: 0.65rem; }
  .section-title  { font-size: clamp(1.65rem, 6.5vw, 2.1rem); line-height: 1.2; }
  .section-desc   { font-size: 0.93rem; line-height: 1.75; margin-top: var(--sp-2); }

  /* ---- Navbar ---- */
  .navbar          { padding: 0.85rem var(--container-pad); }
  .navbar.scrolled { padding: 0.6rem  var(--container-pad); }
  .nav-center      { display: none; }
  .navbar .lang-switcher { display: none; }
  .nav-toggle      { display: flex; }
  .nav-logo        { gap: 0.65rem; }
  .nav-logo-img    { width: 40px; height: 40px; }
  .nav-logo-name   { font-size: 0.82rem; }
  .nav-logo-sub    { font-size: 0.56rem; }

  /* ---- Hero ---- */
  .hero         { min-height: 88svh; }
  .hero-content { padding: 0 var(--container-pad); max-width: 100%; }
  .hero-pre     { font-size: 0.62rem; letter-spacing: 0.22em; margin-bottom: var(--sp-1); }
  .hero-title   { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-arabic  { font-size: 1rem; margin-top: 0.35rem; }
  .hero-rule    { margin: var(--sp-2) auto; width: 40px; }
  .hero-ctas    { flex-direction: row; justify-content: center; gap: var(--sp-2); padding: 0; }
  .hero-ctas .btn { width: auto; padding: 0.8rem 1.3rem; font-size: 0.76rem; }
  .hero-scroll  { display: flex; font-size: 0.7rem; bottom: 18%; }
  .hero-ring    { width: min(300px, 85vw); height: min(300px, 85vw); }

  /* ---- About — order: Title → Image → Description → Stats ---- */
  .about-grid    { display: flex; flex-direction: column; gap: var(--sp-3); align-items: center; }
  .about-content { display: contents; }
  .about-header  { order: 1; width: 100%; text-align: center; }
  .about-img-wrap { order: 2; width: 100%; max-width: 520px; margin: 0 auto; }
  .about-content > p {
    order: 3; width: 100%; max-width: 560px;
    text-align: center; margin: var(--sp-2) auto 0;
    font-size: 0.95rem; line-height: 1.85;
    color: rgba(255,255,255,0.8);
  }
  .about-stats {
    order: 4; width: 100%;
    flex-wrap: wrap; justify-content: center;
    gap: var(--sp-3); margin-top: var(--sp-3); padding-top: var(--sp-3);
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .about-img           { aspect-ratio: auto; }
  .about-img-border    { display: none; }
  .about-badge         { width: 68px; height: 68px; bottom: -6px; right: -4px; }
  .about-badge .num    { font-size: 1rem; }
  .about-badge .lbl    { font-size: 0.44rem; }
  .about-header .section-title { text-align: center; font-size: clamp(1.65rem, 6.5vw, 2.1rem); }
  .about-header .section-line  { margin: var(--sp-2) auto 0; }
  .stat-num { font-size: 1.5rem; }
  .stat-lbl { font-size: 0.62rem; }

  /* ---- Dishes ---- */
  .dishes-grid              { grid-template-columns: 1fr; gap: var(--sp-3); margin-bottom: var(--sp-4); }
  .dish-card:nth-child(n+4) { display: none; }
  .dish-img-wrap            { aspect-ratio: 16/9; }
  .dish-body                { padding: var(--sp-2) var(--sp-2) var(--sp-1); }
  .dish-name                { font-size: 1.2rem; }
  .dish-name-ar             { font-size: 0.88rem; }
  .dish-desc                { font-size: 0.9rem; }
  .dish-foot                { padding: 0.75rem var(--sp-2); }
  .menu-cta                 { margin-top: var(--sp-4); }
  .menu-cta .btn            { width: 100%; max-width: 320px; justify-content: center; }

  /* ---- Panoramic ---- */
  .panoramic { min-height: auto; }
  .panoramic-inner    { padding: var(--sp-6) 0; }
  .panoramic-inner p  { font-size: 0.95rem; margin-top: var(--sp-2); }
  .pano-features      { gap: 0.75rem var(--sp-3); margin-top: var(--sp-4); }
  .pano-feat          { font-size: 0.82rem; }

  /* ---- Reviews ---- */
  .reviews       { padding: var(--sp-6) 0; }
  .review-card   { width: 268px; padding: var(--sp-3); }
  .review-text   { font-size: 0.93rem; line-height: 1.65; margin-bottom: var(--sp-2); }
  .review-author { font-size: 0.7rem; }
  .reviews-wrap::before,
  .reviews-wrap::after { width: 36px; }

  /* ---- Reservation ---- */
  .reservation .section-desc { font-size: 0.93rem; }
  .form-grid       { grid-template-columns: 1fr; gap: var(--sp-2); }
  .form-group.full { grid-column: 1; }
  .form-label      { font-size: 0.64rem; }
  .form-input, .form-select, .form-textarea { font-size: 16px; padding: 0.88rem 0.9rem; }
  .form-textarea   { min-height: 80px; }
  .form-submit     { padding: 0.95rem; font-size: 0.76rem; }
  .wa-note         { font-size: 0.72rem; flex-wrap: wrap; text-align: center; gap: var(--sp-1); }

  /* ---- Find Us ---- */
  .find-us-grid  { grid-template-columns: 1fr; gap: var(--sp-4); }
  .find-us-info  { padding: var(--sp-4); }
  .find-us-info .section-title { text-align: center; font-size: clamp(1.65rem, 6.5vw, 2.1rem); }
  .find-us-info .section-line  { margin: var(--sp-2) auto 0; }
  .info-list     { margin-top: var(--sp-4); gap: var(--sp-3); }
  .info-item     { align-items: center; gap: var(--sp-2); }
  .info-icon     { width: 40px; height: 40px; }
  .info-icon svg { width: 18px; height: 18px; }
  .info-label    { font-size: 0.62rem; }
  .info-val      { font-size: 0.95rem; }
  .map-wrap      { height: 280px; }

  /* ---- Footer ---- */
  .footer          { padding: var(--sp-6) var(--container-pad) var(--sp-4); }
  .footer-logo-img { width: 72px; height: 72px; }
  .footer-name     { font-size: 0.95rem; letter-spacing: 0.12em; }
  .footer-tagline  { font-size: 0.6rem; letter-spacing: 0.2em; }
  .footer-social   { flex-direction: column; align-items: center; gap: 0.65rem; }
  .footer-social a { font-size: 0.7rem; }
  .footer-bottom   { font-size: 0.67rem; line-height: 2; }

  /* ---- WA Float ---- */
  .wa-float     { bottom: var(--sp-2); right: var(--sp-2); width: 46px; height: 46px; }
  .wa-float svg { width: 21px; height: 21px; }

  /* ---- Menu page ---- */
  .menu-hero     { height: 38vh; min-height: 240px; }
  .menu-page     { padding: var(--sp-6) 0 var(--sp-8); }
  .menu-hero-content .hero-title { font-size: clamp(2rem, 7vw, 2.6rem) !important; }
  .menu-tabs     { gap: 0.35rem; padding: 0 0.25rem; margin-bottom: var(--sp-5); }
  .tab-btn       { font-size: 0.66rem; padding: 0.5rem 0.85rem; letter-spacing: 0.08em; }
  .menu-category { margin-bottom: var(--sp-6); }
  .menu-category-header { gap: var(--sp-2); margin-bottom: var(--sp-3); }
  .menu-category-title  { font-size: 1.4rem; }
  .menu-items    { grid-template-columns: 1fr; gap: var(--sp-2); }
  .menu-item     { padding: var(--sp-3); }
  .menu-item-name  { font-size: 1.05rem; }
  .menu-item-desc  { font-size: 0.85rem; line-height: 1.7; }
  .menu-item-origin { margin-top: 0.75rem; }
  .coming-soon-banner { padding: var(--sp-4) var(--sp-2); margin-bottom: var(--sp-5); }
  .coming-soon-icon   { width: 40px; height: 40px; }
  .coming-soon-title  { font-size: 1.25rem; }
  .coming-soon-text   { font-size: 0.88rem; }
  .menu-back          { font-size: 0.62rem; margin-bottom: var(--sp-2); }
}

/* ============================================
   RESPONSIVE — SMALL PHONES (480px)
   ============================================ */
@media (max-width: 480px) {
  html { font-size: 14px; }
  .container      { padding: 0 1rem; }
  .navbar         { padding: 0.75rem 0.9rem; }
  .navbar.scrolled{ padding: 0.55rem 0.9rem; }
  .hero-title     { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .hero-pre       { font-size: 0.58rem; letter-spacing: 0.18em; }
  .about-stats    { gap: 1.1rem; }
  .stat-num       { font-size: 1.35rem; }
  .review-card    { width: 242px; padding: 1.1rem; }
  .review-text    { font-size: 0.88rem; }
  .dish-name      { font-size: 1.1rem; }
  .pano-features  { gap: 0.7rem; }
  .pano-feat      { font-size: 0.76rem; }
  .btn            { font-size: 0.72rem; padding: 0.88rem 1.2rem; }
  .form-input, .form-select, .form-textarea { font-size: 16px; }
  .map-wrap       { height: 210px; }
  .section-title  { font-size: clamp(1.55rem, 7vw, 2rem); }

  /* Menu page */
  .menu-hero      { height: 32vh; min-height: 200px; }
  .tab-btn        { font-size: 0.62rem; padding: 0.42rem 0.7rem; }
  .menu-item      { padding: 1rem; }
  .menu-category-title { font-size: 1.25rem; }
  .coming-soon-title   { font-size: 1.1rem; }
  .coming-soon-icon    { width: 36px; height: 36px; }
  .coming-soon-text    { font-size: 0.82rem; }
}

/* ============================================
   RESPONSIVE — VERY SMALL (380px)
   ============================================ */
@media (max-width: 380px) {
  .nav-logo-text { display: none; }
  .hero-title    { font-size: 1.75rem; }
  .section-title { font-size: 1.55rem; }
  .about-badge   { display: none; }
  .review-card   { width: 210px; }
  .btn           { max-width: 100%; }
  .footer-social a { letter-spacing: 0.05em; }
  .menu-category-header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .menu-cat-line { width: 100%; flex: none; }
  .menu-item     { padding: 0.9rem; }
}

/* ============================================
   RESPONSIVE — SHORT VIEWPORT (landscape phones)
   ============================================ */
@media (max-height: 520px) and (max-width: 900px) {
  .hero          { min-height: 460px; height: auto; padding: 5rem 0 3rem; }
  .hero-ring     { width: min(360px, 70vh); height: min(360px, 70vh); }
  .hero-scroll   { display: none; }
}