/* ═══════════════════════════════════════════
   CEDAR DOUGH — "The Bakery Opens"
   Complete cinematic rebuild
   ═══════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black:    #0d0905;
  --black-2:  #120c07;
  --gold:     #d4a843;
  --gold-dim: rgba(212, 168, 67, 0.3);
  --cream:    #f5ede0;
  --green:    #2d7a3a;
  --green-dk: #1f5628;
  --white:    #f5ede0;
  --white-60: rgba(245, 237, 224, 0.6);
  --white-40: rgba(245, 237, 224, 0.4);
  --terracotta: #c4622d;
  --olive: #5a7a3a;
  --text-muted: rgba(245, 237, 224, 0.45);
}

html { scroll-behavior: auto; } /* JS handles smooth scroll */

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ═══ CUSTOM CURSOR ═══ */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  width: 32px; height: 32px;
  border: 1px solid rgba(212, 168, 67, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body:has(a:hover) .cursor-dot { width: 12px; height: 12px; }
body:has(a:hover) .cursor-ring { width: 48px; height: 48px; border-color: var(--gold); }

/* ═══ SCROLL PROGRESS ═══ */
.scroll-progress {
  position: fixed;
  left: 0; top: 0;
  width: 2px;
  height: 0%;
  background: linear-gradient(to bottom, var(--gold), rgba(212, 168, 67, 0.2));
  z-index: 500;
  transition: height 0.05s linear;
}

/* ═══ SOUND TOGGLE ═══ */
.sound-toggle {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.sound-toggle.visible { opacity: 1; }

.sound-toggle-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--gold-dim);
  background: rgba(13, 9, 5, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  backdrop-filter: blur(8px);
}

.sound-toggle-btn:hover { border-color: var(--gold); }
.sound-toggle-btn svg { width: 14px; height: 14px; }

.sound-toggle-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--white-40);
  text-transform: uppercase;
}

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: transparent;
  overflow: hidden; /* clips hanging logo while off-screen */
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.8s ease,
              background 0.5s ease,
              padding 0.3s ease,
              box-shadow 0.5s ease,
              backdrop-filter 0.5s ease;
}

.nav.visible {
  transform: translateY(0);
  opacity: 1;
  overflow: visible; /* logo hangs below once nav is in place */
  background: linear-gradient(to bottom, rgba(13, 9, 5, 0.52) 0%, rgba(13, 9, 5, 0) 100%);
}

.nav.scrolled {
  background: rgba(13, 9, 5, 0.55);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(212, 168, 67, 0.12);
  padding: 12px 48px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 76px; width: 76px;
  border-radius: 50%;
  filter: brightness(1.1) drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: height 0.3s, width 0.3s, transform 0.3s;
  position: relative;
  margin-bottom: -38px; /* half hangs below nav */
  flex-shrink: 0;
}

.nav-logo:hover img { transform: scale(1.06); }

.nav.scrolled .nav-logo img {
  height: 68px; width: 68px;
  margin-bottom: -34px;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(245, 237, 224, 0.98);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }


/* ═══════════════════════════════════════════
   HERO — CINEMATIC OPENING
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: -6%;
  background-image: url('../images/cedar-food1.jpg');
  background-position: center 38%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  filter: brightness(0);
  animation: kenBurns 24s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1.5%, -1%); }
}

/* Dark overlay — dark band at top for nav legibility, heavy at bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 9, 5, 0.55)  0%,
    rgba(13, 9, 5, 0.2)  12%,
    rgba(13, 9, 5, 0.1) 25%,
    rgba(13, 9, 5, 0.5) 55%,
    rgba(13, 9, 5, 0.88) 80%,
    rgba(13, 9, 5, 0.97) 100%
  );
  z-index: 1;
}

/* Arabic watermark — fills screen */
.hero-arabic {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(100px, 18vw, 200px);
  color: rgba(212, 168, 67, 0);
  white-space: nowrap;
  pointer-events: none;
  direction: rtl;
  line-height: 1;
  letter-spacing: 0.04em;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 760px;
  padding: 24px 40px 36px;
  background: rgba(13, 9, 5, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 14px;
  border: 1px solid rgba(245, 237, 224, 0.07);
  margin-bottom: 56px;
}

.hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: rgba(245, 237, 224, 0.95);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  opacity: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 28px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.22em; /* room for descenders: g, y, j, p */
  margin-bottom: -0.18em;
}

.hero-title .line .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 24px);
  color: rgba(245, 237, 224, 0.85);
  line-height: 1.6;
  margin: 0 0 36px;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.scroll-indicator svg { width: 20px; height: 20px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.75; }
}

/* ═══ BUTTONS ═══ */
.btn-filled {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600;
  padding: 15px 40px;
  border: 1px solid var(--gold);
  transition: all 0.35s ease;
}

.btn-filled:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white-60);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 400;
  padding: 15px 40px;
  border: 1px solid rgba(245, 237, 224, 0.3);
  transition: all 0.35s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 400;
  padding: 14px 40px;
  border: 1px solid var(--gold-dim);
  transition: all 0.35s ease;
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.07);
  transform: translateY(-2px);
}

.btn-filled-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 600;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  transition: all 0.35s ease;
}

.btn-filled-gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════
   ABOUT — HORIZONTAL SCROLL (DESKTOP)
   ═══════════════════════════════════════════ */
.about {
  position: relative;
  /* height set by JS (3 × 100vh) */
}

.about-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

.about-track {
  display: flex;
  width: 300vw;
  height: 100vh;
  will-change: transform;
}

.about-panel {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Panel 1 — photo */
.panel-photo {
  background: var(--black);
}

.panel-photo .panel-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}

.panel-photo .panel-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 9, 5, 0.7) 0%,
    rgba(13, 9, 5, 0.1) 60%
  );
}

.panel-photo .panel-caption {
  position: absolute;
  bottom: 48px;
  left: 56px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--white-60);
  text-transform: uppercase;
}

.panel-photo .panel-caption::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
}

.panel-photo .panel-arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-dim);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.4; transform: translateY(-50%) translateX(0); }
  50%       { opacity: 0.8; transform: translateY(-50%) translateX(6px); }
}

/* Panel 2 — story (cream) */
.panel-story {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10vw;
}

.panel-story .about-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--terracotta);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 32px;
}

.panel-story .about-opening {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: #1e0f08;
  line-height: 1.2;
  margin-bottom: 36px;
}

.panel-story .about-body-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: #4a3525;
  max-width: 560px;
}

.panel-story .about-body-text p + p { margin-top: 18px; }

.panel-story .stat-badges {
  display: flex;
  gap: 48px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(212, 168, 67, 0.25);
}

.stat-badge .stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  font-weight: 400;
}

.stat-badge .stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #8a7050;
  font-weight: 300;
  margin-top: 2px;
}

/* Panel 3 — catering (cedar green) */
.panel-catering {
  background: #1c1208;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 10vw;
  position: relative;
  overflow: hidden;
}

.panel-catering::before {
  content: 'عجينة الأرز';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 14vw, 160px);
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  top: 50%;
  left: -5%;
  transform: translateY(-50%);
  pointer-events: none;
  direction: rtl;
}

.panel-catering .catering-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 300;
}

.panel-catering .catering-headline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
}

.panel-catering .catering-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.panel-catering .catering-detail {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.panel-catering .catering-link {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}

.panel-catering .catering-link:hover {
  border-color: var(--gold);
  color: #fff;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
  margin-bottom: 32px;
}

.hours-row {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}


/* ═══ ABOUT — MOBILE (vertical stack) ═══ */
.about-mobile { display: none; }

.about-mobile .mobile-panel {
  padding: 64px 24px;
}

.about-mobile .mobile-panel-photo {
  height: 60vw;
  min-height: 240px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.about-mobile .mobile-panel-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  position: absolute; inset: 0;
}

.about-mobile .mobile-panel-story {
  background: var(--cream);
}

.about-mobile .mobile-panel-catering {
  background: #1c1208;
}


/* ═══════════════════════════════════════════
   ARABIC INTERSTITIAL (between sections)
   ═══════════════════════════════════════════ */
.arabic-interstitial {
  position: relative;
  height: 120px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.arabic-interstitial .arabic-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 8vw, 80px);
  color: rgba(212, 168, 67, 0.07);
  direction: rtl;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.arabic-interstitial .rule-line {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.section-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 56px 0 40px;
}

.section-rule span {
  height: 1px;
  width: 72px;
  background: rgba(212, 168, 67, 0.2);
  display: block;
}

.section-rule .star {
  color: var(--gold);
  font-size: 11px;
  width: auto;
  height: auto;
  background: none;
}


/* ═══════════════════════════════════════════
   DISHES — STACKED MENU ROWS
   ═══════════════════════════════════════════ */
.dishes {
  background: var(--black);
  padding-bottom: 0;
}

.dishes-header {
  text-align: center;
  padding: 0 24px 64px;
}

.dishes-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 24px;
}

.dishes-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 7vw, 80px);
  color: var(--white);
  line-height: 1.0;
}

/* Menu rows */
.menu-list {
  list-style: none;
  border-top: 1px solid rgba(212, 168, 67, 0.08);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 1px 280px;
  align-items: center;
  border-bottom: 1px solid rgba(212, 168, 67, 0.08);
  padding: 32px 56px;
  transition: background 0.4s ease;
  opacity: 0;
  position: relative;
}

.menu-row:nth-child(even) {
  background: rgba(245, 237, 224, 0.015);
}

.menu-row:hover {
  background: rgba(212, 168, 67, 0.04);
}

.menu-row-left { }

.menu-row-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  transition: color 0.3s;
}

.menu-row:hover .menu-row-name { color: var(--gold); }

.menu-row-name .leaf {
  font-size: 0.45em;
  color: var(--olive);
  vertical-align: middle;
  margin-left: 10px;
}

.menu-row-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
  margin: 0 40px;
}

.menu-row-right {
  text-align: right;
}

.menu-row-cat {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--terracotta);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 10px;
}

.menu-row-cat .sig-dot {
  color: var(--gold);
  margin-right: 4px;
}

.menu-row-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 237, 224, 0.65);
  line-height: 1.7;
}

/* Dishes bottom CTA */
.dishes-bottom {
  text-align: center;
  padding: 72px 24px 88px;
}

.dishes-more {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--gold);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.dishes-more::before,
.dishes-more::after {
  content: '';
  display: block;
  height: 1px;
  width: 80px;
  background: var(--gold-dim);
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: #080503;
  padding: 56px 24px 48px;
  text-align: center;
  border-top: 1px solid rgba(212, 168, 67, 0.12);
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 14px;
}

.footer-address {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(245, 237, 224, 0.7);
  font-weight: 300;
  margin-bottom: 10px;
}

.footer-insta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 36px;
}

.footer-insta a {
  color: var(--gold);
  opacity: 0.8;
  transition: opacity 0.25s;
}

.footer-insta a:hover { opacity: 1; }

.footer-disclaimer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(212, 168, 67, 0.1);
  padding: 12px 24px;
}

.footer-disclaimer::before,
.footer-disclaimer::after {
  content: '—';
  color: var(--gold-dim);
  font-size: 12px;
}

.footer-disclaimer p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 237, 224, 0.55);
}


/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Swap horizontal for vertical about */
  .about-sticky { display: none; }
  .about { height: auto !important; }
  .about-mobile { display: block; }

  .menu-row {
    grid-template-columns: 1fr;
    padding: 28px 28px;
    gap: 10px;
  }

  .menu-row-divider { display: none; }
  .menu-row-right { text-align: left; }
  .menu-row-name { font-size: clamp(2rem, 7vw, 3rem); }
}

@media (max-width: 640px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }

  .nav { padding: 12px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .nav-links { display: none; }
  .nav-logo-text { font-size: 15px; }
  .nav-logo img { height: 60px; width: 60px; margin-bottom: -30px; }

  .hero-content { padding: 0 20px 56px; }
  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-sub { font-size: 18px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-arabic { font-size: 60px; }

  .about-mobile .mobile-panel { padding: 48px 20px; }
  .panel-story .about-opening { font-size: 28px; }

  .dishes-title { font-size: 40px; }
  .menu-row { padding: 22px 20px; }
  .menu-row-name { font-size: 2rem; }

  .sound-toggle { bottom: 16px; right: 16px; }
}
