/* ==========================================================================
   Al Reef Bakery & Restaurant — Stylesheet
   ========================================================================== */

:root {
  --navy: #142244;
  --navy-dark: #0a132b;
  --navy-soft: #1d3160;
  --cream: #f8f0dc;
  --cream-dark: #ecdfba;
  --parchment: #fbf6ea;
  --gold: #c69434;
  --gold-light: #e0b458;
  --olive: #5c7a42;
  --olive-dark: #3f5a2c;
  --terracotta: #a13d3d;
  --text: #2a2118;
  --text-light: #6b6152;
  --white: #ffffff;

  --font-head: "Reem Kufi", sans-serif;
  --font-body: "Poppins", sans-serif;

  --radius: 14px;
  --shadow-sm: 0 4px 14px rgba(20, 15, 5, 0.08);
  --shadow-md: 0 10px 30px rgba(20, 15, 5, 0.14);
  --shadow-lg: 0 20px 45px rgba(10, 8, 3, 0.25);
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--parchment);
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.35rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section {
  padding: 90px 0;
  position: relative;
}

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

.section-head p {
  color: var(--text-light);
  margin-top: 12px;
  font-size: 1.02rem;
}

.section-head.align-left {
  text-align: left;
  margin: 0 0 40px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  letter-spacing: 0.03em;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: var(--gold-light); }

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-3px); }

.btn-dark {
  background: var(--navy);
  color: var(--cream);
}
.btn-dark:hover { background: var(--navy-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.btn-block { width: 100%; justify-content: center; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 28px 0;
  padding-top: max(28px, env(safe-area-inset-top));
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 19, 43, 0.96);
  padding: 16px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

/* Pages with a light hero need an opaque bar for the white nav text */
.site-header.is-solid {
  background: rgba(10, 19, 43, 0.94);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
  flex-shrink: 0;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.site-header.has-video-hero .brand {
  max-width: 320px;
}

/* Home video hero already shows the logo — hide navbar brand until scrolled past */
.site-header.has-video-hero.is-over-hero .brand {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  width: 0;
  min-width: 0;
  max-width: 0;
  overflow: hidden;
  margin: 0;
  gap: 0;
}

.brand .brand-mark {
  height: 88px;
  width: auto;
  flex-shrink: 0;
  display: block;
  transition: height 0.35s ease;
}

.site-header.is-scrolled .brand .brand-mark { height: 68px; }

.site-footer .brand .brand-mark { height: 64px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-family: var(--font-head);
  font-size: 1.7rem;
  letter-spacing: 0.04em;
}

.brand-text span {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

.main-nav a {
  color: var(--white);
  font-size: 1.18rem;
  font-weight: 500;
  position: relative;
  padding: 12px 0;
  opacity: 0.88;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gold-light);
  transition: width 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--gold-light);
}

.main-nav a.active::after,
.main-nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-order {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-order-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}

.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-order img {
  display: block;
  height: 18px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-order .order-icon {
  width: 20px;
  height: 20px;
  max-width: none;
}

.btn-order:hover {
  transform: translateY(-2px);
  filter: none;
}

.btn-doordash {
  background: #ff3008;
  border-color: #ff3008;
  color: #ffffff;
}

.btn-doordash:hover {
  background: #e62b07;
  border-color: #e62b07;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(255, 48, 8, 0.4);
}

.btn-seamless {
  background: #e31837;
  border-color: #e31837;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.btn-seamless:hover {
  background: #c91430;
  border-color: #c91430;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(227, 24, 55, 0.4);
}

.header-call {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 28px;
  height: 2.5px;
  background: var(--white);
  display: block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Bars fold into a close icon while the panel is open */
.nav-toggle.is-active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  /* svh keeps mobile browser chrome from pushing content out of view */
  min-height: 100svh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 19, 43, 0.55) 0%, rgba(10, 19, 43, 0.72) 55%, rgba(10, 19, 43, 0.93) 100%);
  z-index: -1;
}

.hero-inner {
  padding-top: 110px;
  max-width: 780px;
}

.hero .eyebrow {
  color: var(--gold-light);
}
.hero .eyebrow::before,
.hero .eyebrow::after {
  background: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 6px;
}

.hero .arabic-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: block;
  direction: rtl;
  text-align: left;
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-badges {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-badges .badge svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.page-hero {
  min-height: 52vh;
  padding-bottom: 40px;
}

.page-hero .hero-inner { padding-top: 190px; }

/* ===== Video intro (home page, first section) ===== */
.video-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
  color: var(--white);
  text-align: center;
}

.video-hero-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 0;
  pointer-events: none;
  background: var(--navy-dark);
  /* Keep inline on iOS — avoid native fullscreen takeover */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.video-hero-media.is-active {
  opacity: 1;
  z-index: 1;
}

.video-hero-play {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(10, 19, 43, 0.72);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.video-hero-play.is-visible {
  display: inline-flex;
}

.video-hero-play:hover,
.video-hero-play:focus-visible {
  background: rgba(10, 19, 43, 0.88);
  border-color: var(--gold-light);
  outline: none;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(6, 10, 22, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Light vignette only — keep the video bright and clear */
.video-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 19, 43, 0.55) 0%, rgba(10, 19, 43, 0.12) 22%, rgba(10, 19, 43, 0.08) 55%, rgba(10, 19, 43, 0.45) 100%),
    radial-gradient(ellipse 55% 48% at 50% 48%, rgba(10, 19, 43, 0.28) 0%, rgba(10, 19, 43, 0.08) 55%, transparent 78%);
  pointer-events: none;
}

.video-hero-frame {
  position: absolute;
  inset: 24px;
  z-index: 2;
  border: 1px solid rgba(224, 180, 88, 0.28);
  pointer-events: none;
}

.video-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 190px;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.video-hero-logo {
  width: min(220px, 42vw);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.45));
}

.video-hero h2 {
  color: var(--white);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.55);
}

.video-hero .arabic-line {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: #f4dba4;
  direction: rtl;
  margin-bottom: 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.video-hero p {
  max-width: 460px;
  margin: 0 auto;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease;
}

.scroll-cue:hover { color: var(--gold-light); }

.scroll-cue svg {
  width: 26px;
  height: 26px;
  animation: cueBob 1.9s ease-in-out infinite;
}

@keyframes cueBob {
  0%, 100% { transform: translateY(0); opacity: 0.75; }
  50% { transform: translateY(7px); opacity: 1; }
}

.video-hero-inner > * {
  animation: heroRise 0.9s cubic-bezier(0.22, 0.9, 0.3, 1) both;
}
.video-hero-inner > *:nth-child(1) { animation-delay: 0.15s; }
.video-hero-inner > *:nth-child(2) { animation-delay: 0.28s; }
.video-hero-inner > *:nth-child(3) { animation-delay: 0.4s; }
.video-hero-inner > *:nth-child(4) { animation-delay: 0.52s; }
.video-hero-inner > *:nth-child(5) { animation-delay: 0.64s; }

@media (prefers-reduced-motion: reduce) {
  .video-hero-inner > * { animation: none; }
  .scroll-cue svg { animation: none; }
}

/* ===== Centered feature hero (home page) ===== */
.hero-center {
  background-size: cover;
  background-position: center;
  text-align: center;
  color: var(--text);
}

/* Cream veil keeps the illustrated corners visible while the centre stays readable */
.hero-center::before {
  background: radial-gradient(ellipse 68% 62% at 50% 46%,
    rgba(251, 246, 234, 0.95) 0%,
    rgba(251, 246, 234, 0.86) 42%,
    rgba(251, 246, 234, 0.5) 70%,
    rgba(251, 246, 234, 0.1) 100%);
}

.hero-center .hero-inner {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 190px;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  height: 215px;
  width: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 18px 32px rgba(20, 34, 68, 0.3));
}

.hero-center .eyebrow { color: var(--terracotta); }
.hero-center .eyebrow::before,
.hero-center .eyebrow::after { background: var(--gold); }

.hero-center h1 {
  color: var(--navy);
  margin-bottom: 6px;
}

.hero-center .arabic-title {
  color: #a97d24;
  font-size: 1.95rem;
  text-align: center;
  margin-bottom: 16px;
}

.hero-ornament {
  display: block;
  width: 210px;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-ornament svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-center p.lead {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-center .hero-actions { justify-content: center; }

.hero-center .btn-outline {
  border-color: rgba(20, 34, 68, 0.4);
  color: var(--navy);
}

.hero-center .btn-outline:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

.hero-center .hero-badges {
  justify-content: center;
  gap: 14px;
}

.hero-center .hero-badges .badge {
  color: var(--navy);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(198, 148, 52, 0.4);
  padding: 9px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(20, 34, 68, 0.08);
}

.hero-center .hero-badges .badge svg { color: var(--terracotta); }

/* Staged entrance, held until the section scrolls into view */
.hero-center .hero-inner.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.hero-center .hero-inner > * { opacity: 0; }

.hero-center .hero-inner.is-visible > * {
  animation: heroRise 0.8s cubic-bezier(0.22, 0.9, 0.3, 1) both;
}
.hero-center .hero-inner.is-visible > *:nth-child(1) { animation-delay: 0.05s; }
.hero-center .hero-inner.is-visible > *:nth-child(2) { animation-delay: 0.16s; }
.hero-center .hero-inner.is-visible > *:nth-child(3) { animation-delay: 0.24s; }
.hero-center .hero-inner.is-visible > *:nth-child(4) { animation-delay: 0.32s; }
.hero-center .hero-inner.is-visible > *:nth-child(5) { animation-delay: 0.4s; }
.hero-center .hero-inner.is-visible > *:nth-child(6) { animation-delay: 0.48s; }
.hero-center .hero-inner.is-visible > *:nth-child(7) { animation-delay: 0.56s; }
.hero-center .hero-inner.is-visible > *:nth-child(8) { animation-delay: 0.64s; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-center .hero-inner > *,
  .hero-center .hero-inner.is-visible > * { animation: none; opacity: 1; }
}

/* ===== Features strip ===== */
.features {
  background: var(--navy);
  padding: 56px 0;
}

.features .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(198, 148, 52, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.feature-card .icon svg { width: 24px; height: 24px; }

.feature-card h4 {
  color: var(--white);
  font-size: 1rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  line-height: 1.3;
}

/* ===== About / story section ===== */
.story {
  position: relative;
  background-image: linear-gradient(120deg, rgba(251, 246, 234, 0.94), rgba(251, 246, 234, 0.88)), var(--bg-img);
  background-size: cover;
  background-position: center;
}

.story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-copy p {
  color: var(--text-light);
  margin-bottom: 18px;
}

.story-media {
  position: relative;
}

.story-media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.story-media .medallion {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 6px solid var(--parchment);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.story-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.value-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

.value-pill svg {
  width: 20px;
  height: 20px;
  color: var(--olive);
  flex-shrink: 0;
}

/* ===== Menu preview / cards ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/5;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.menu-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover img { transform: scale(1.08); }

.menu-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 19, 43, 0) 40%, rgba(10, 19, 43, 0.88) 100%);
}

.menu-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px;
  z-index: 2;
  color: var(--white);
}

.menu-card-label span {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.menu-card-label h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-top: 4px;
}

.section-footer-cta {
  text-align: center;
  margin-top: 46px;
}

/* ===== Menu Page listing ===== */
.menu-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.menu-tabs a {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.25s ease;
}

.menu-tabs a:hover { background: var(--navy); color: var(--white); }

.menu-category {
  padding: 60px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.menu-category:last-of-type { border-bottom: none; }

.menu-category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.menu-category-head h2 { margin: 0; }
.menu-category-head p { color: var(--text-light); max-width: 480px; }

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-item {
  display: flex;
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.menu-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.menu-item-body h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.menu-item-body p {
  font-size: 0.88rem;
  color: var(--text-light);
}

.menu-item-body .tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive-dark);
  background: rgba(92, 122, 66, 0.12);
  padding: 3px 10px;
  border-radius: 50px;
}

.menu-note {
  text-align: center;
  max-width: 620px;
  margin: 50px auto 0;
  padding: 26px 30px;
  background: var(--cream);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ===== Gallery preview strip ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.gallery-strip a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-strip a:hover img { transform: scale(1.1); }

/* ===== Full Gallery Page ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.gallery-filters button {
  padding: 9px 20px;
  border-radius: 50px;
  border: 1px solid var(--cream-dark);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-grid figure:hover img { transform: scale(1.1); }

.gallery-grid figure figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  font-size: 0.8rem;
  color: var(--white);
  background: linear-gradient(180deg, rgba(10, 19, 43, 0) 0%, rgba(10, 19, 43, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-grid figure:hover figcaption { opacity: 1; }

.gallery-grid figure.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 24, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 30px;
}

.lightbox.is-open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--cream);
  font-size: 0.95rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.25); }

.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-prev svg, .lightbox-next svg, .lightbox-close svg { width: 20px; height: 20px; }

/* ===== Visit / CTA band ===== */
.visit {
  background: var(--navy-dark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.visit .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.visit-info .eyebrow { color: var(--gold-light); }
.visit-info .eyebrow::before, .visit-info .eyebrow::after { background: var(--gold-light); }

.visit-info h2 { color: var(--white); }

.visit-list {
  margin: 30px 0 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visit-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.visit-list .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(198, 148, 52, 0.18);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.visit-list .icon svg { width: 20px; height: 20px; }

.visit-list a,
.visit-list p {
  font-size: 0.95rem;
  color: rgba(248, 240, 220, 0.88);
}

.visit-list strong {
  display: block;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 2px;
}

.visit-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid rgba(255, 255, 255, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* ===== Welcome band ===== */
.welcome-band {
  background: var(--cream);
  padding: 46px 0;
  text-align: center;
}

.welcome-band .badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.welcome-band .badges .badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}

.welcome-band .badges svg {
  width: 22px;
  height: 22px;
  color: var(--terracotta);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(248, 240, 220, 0.75);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 320px; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-light); }

.footer-col li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; }
.footer-col li svg { width: 17px; height: 17px; color: var(--gold-light); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 26px;
  font-size: 0.82rem;
}

.footer-bottom a { color: var(--gold-light); }

/* ===== Page banner backgrounds ===== */
.bg-pattern {
  background-image: linear-gradient(160deg, rgba(10, 19, 43, 0.72), rgba(10, 19, 43, 0.85)), var(--bg-img);
  background-size: cover;
  background-position: center;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== About page extras ===== */
.mural-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.mural-strip figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.mural-strip img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.mural-strip figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  color: var(--white);
  font-size: 0.85rem;
  background: linear-gradient(180deg, rgba(10,19,43,0) 0%, rgba(10,19,43,0.85) 100%);
}

.about-hero-copy {
  max-width: 720px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 20px;
}

.timeline-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.timeline-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(92, 122, 66, 0.12);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.timeline-card .icon svg { width: 26px; height: 26px; }
.timeline-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; margin-bottom: 8px; }
.timeline-card p { font-size: 0.86rem; color: var(--text-light); }

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(198, 148, 52, 0.14);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-card .icon svg { width: 28px; height: 28px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.contact-card p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 6px; }
.contact-card a.phone-link { display: block; font-weight: 600; color: var(--navy); margin-top: 4px; }
.contact-card a.phone-link:hover { color: var(--terracotta); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--cream-dark); font-size: 0.92rem; }
.hours-table td:last-child { text-align: right; color: var(--text-light); }

/* ===== Legal pages ===== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}

.legal-updated {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 34px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 38px 0 12px;
}

.legal-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content li {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--terracotta);
  font-weight: 500;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero-logo { height: 178px; }
  .video-hero-frame { inset: 16px; }
  .features .container { grid-template-columns: repeat(2, 1fr); }
  .story .container { grid-template-columns: 1fr; }
  .story-media { order: -1; max-width: 420px; margin: 0 auto; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .visit .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .mural-strip { grid-template-columns: repeat(3, 1fr); }
  .header-order-label { display: none; }
  .main-nav { gap: 30px; }
  .main-nav a { font-size: 1.08rem; }
  .brand .brand-mark { height: 74px; }
  .site-header.is-scrolled .brand .brand-mark { height: 58px; }
  .brand-text strong { font-size: 1.45rem; }
  .brand-text span { font-size: 0.74rem; }
  .btn-order { padding: 11px 16px; min-height: 46px; font-size: 0.86rem; }
  .btn-seamless { font-size: 0.9rem; }
  .btn-order .order-icon { width: 18px; height: 18px; }
  .site-header { padding: 20px 0; }
  .hero-center .hero-inner { padding-top: 170px; }
  .video-hero-inner { padding-top: 170px; padding-bottom: 130px; }
  .page-hero .hero-inner { padding-top: 170px; }
}

@media (max-width: 780px) {
  .site-header { padding: 16px 0; padding-top: max(16px, env(safe-area-inset-top)); }
  .site-header.is-scrolled { padding: 12px 0; padding-top: max(12px, env(safe-area-inset-top)); }
  .header-inner { gap: 12px; }
  .brand { gap: 10px; min-width: 0; }
  .brand .brand-mark { height: 62px; }
  .site-header.is-scrolled .brand .brand-mark { height: 52px; }
  .brand-text strong { font-size: 1.28rem; }
  .brand-text span { font-size: 0.7rem; letter-spacing: 0.12em; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 86%);
    height: 100vh;
    height: 100dvh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 36px;
    padding-top: max(48px, calc(env(safe-area-inset-top) + 48px));
    padding-bottom: max(48px, env(safe-area-inset-bottom));
    gap: 8px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    z-index: 1000;
  }
  .main-nav.is-open { right: 0; }
  .main-nav a {
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    min-height: 52px;
    width: 100%;
    padding: 10px 0;
  }
  .nav-toggle { display: flex; touch-action: manipulation; }
  .header-cta { gap: 8px; min-width: 0; }
  .header-order { gap: 6px; flex-wrap: nowrap; min-width: 0; }
  .btn-order {
    padding: 9px 12px;
    min-height: 42px;
    font-size: 0.76rem;
  }
  .btn-seamless { font-size: 0.8rem; }
  .btn-order img { height: 14px; max-width: 80px; }
  .btn-order .order-icon { width: 15px; height: 15px; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-badges { gap: 16px; }
  .hero-logo { height: 148px; }
  .video-hero .arabic-line { font-size: 1.25rem; }
  .video-hero p { font-size: 0.95rem; max-width: 92%; }
  .video-hero-logo { width: min(170px, 40vw); }
  .hero-center .arabic-title { font-size: 1.55rem; }
  .hero-ornament { width: 170px; }
  .timeline { grid-template-columns: 1fr; }
  .mural-strip { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .video-hero-inner { padding-top: 150px; padding-left: 8px; padding-right: 8px; }
  .page-hero .hero-inner { padding-top: 150px; }
  .hero-center .hero-inner { padding-top: 150px; }

  .main-nav a::after { bottom: 10px; }
  .main-nav a.active::after,
  .main-nav a:hover::after { width: 42px; }

  .nav-toggle {
    width: 48px;
    height: 48px;
    margin-right: -6px;
  }

  .footer-col ul { gap: 2px; }
  .footer-col li { align-items: center; }
  .footer-col li svg { margin-top: 0; }

  .footer-col a,
  .footer-bottom a,
  .contact-card a.phone-link,
  .visit-list a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
  }

  .footer-bottom { gap: 0; }

  .gallery-filters button { padding: 12px 20px; }

  .map-frame iframe { height: 340px; }

  .scroll-cue {
    bottom: max(20px, env(safe-area-inset-bottom));
    padding-bottom: 4px;
  }

  .btn,
  .gallery-filters button,
  .scroll-cue {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 480px) {
  .site-header { padding: 12px 0; padding-top: max(12px, env(safe-area-inset-top)); }
  .brand .brand-mark { height: 54px; }
  .site-header.is-scrolled .brand .brand-mark { height: 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-logo { height: 124px; }
  .hero-ornament { width: 150px; }
  .hero-center .hero-inner { padding-top: 140px; padding-bottom: 74px; }
  .video-hero-inner { padding-top: 140px; padding-bottom: 120px; }
  .page-hero .hero-inner { padding-top: 140px; }
  .video-hero-frame { inset: 10px; }
  .video-hero-logo { width: min(150px, 46vw); margin-bottom: 16px; }
  .video-hero h2 { font-size: 1.55rem; }
  .scroll-cue { bottom: max(16px, env(safe-area-inset-bottom)); font-size: 0.75rem; }
  .hero-center .hero-badges { gap: 9px; }
  .hero-center .hero-badges .badge { font-size: 0.79rem; padding: 7px 13px; }
  .brand-text { display: none; }
  .header-order { gap: 5px; }
  .btn-order {
    padding: 9px 11px;
    min-height: 42px;
    font-size: 0.74rem;
  }
  .btn-seamless { font-size: 0.78rem; }
  .btn-order img { height: 13px; max-width: 72px; }
  .btn-order .order-icon { width: 15px; height: 15px; }
  .nav-toggle {
    width: 46px;
    height: 46px;
  }
  .features .container { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr 1fr; gap: 10px; }
  .container {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}

@media (max-height: 700px) and (max-width: 900px) {
  .video-hero-inner {
    padding-top: 110px;
    padding-bottom: 88px;
  }
  .video-hero-logo {
    width: min(120px, 32vw);
    margin-bottom: 12px;
  }
  .video-hero h2 { font-size: 1.35rem; }
  .video-hero .arabic-line { font-size: 1.05rem; margin-bottom: 8px; }
  .video-hero p { font-size: 0.88rem; }
  .scroll-cue { bottom: 12px; }
  .video-hero-play { top: 62%; }
}

@media (max-width: 380px) {
  .btn-doordash span { display: none; }
  .btn-doordash { padding: 9px 11px; min-width: 42px; }
  .btn-seamless { padding: 9px 12px; font-size: 0.72rem; }
}
