/* ==========================================================================
   خنينة (Khanina) — bilingual restaurant menu
   Brand palette sampled from the logo + photoshoot: deep forest green,
   sage mint, walnut wood, brass/copper, warm cream.
   ========================================================================== */

:root {
  --cream: #F6F7EC;
  --cream-deep: #EBEEDB;
  --paper: #FFFFFF;
  --espresso: #465C38;
  --espresso-soft: #56703F;
  --gold: #6F9049;
  --gold-deep: #4F6B34;
  --gold-tint: #E4EEDA;
  --rose: #B6893F;
  --rose-deep: #8F6A2E;
  --rose-tint: #F3E8D2;
  --ink: #262E1D;
  --ink-soft: #6C7259;
  --border: rgba(38, 46, 29, 0.12);
  --shadow-color: 38, 46, 29;

  --font-display-ar: 'El Messiri', sans-serif;
  --font-display-en: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 0.2s;
  --dur-base: 0.5s;
  --dur-slow: 0.9s;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #1B2116;
    --cream-deep: #212819;
    --paper: #262E1E;
    --espresso: #10140C;
    --espresso-soft: #2A331F;
    --gold: #9FBE84;
    --gold-deep: #7C9A5E;
    --gold-tint: rgba(159, 190, 132, 0.14);
    --rose: #D2AC66;
    --rose-deep: #B6893F;
    --rose-tint: rgba(210, 172, 102, 0.14);
    --ink: #EFEDE4;
    --ink-soft: #B7BBA6;
    --border: rgba(239, 237, 228, 0.14);
    --shadow-color: 0, 0, 0;
    color-scheme: dark;
  }
}

:root[data-theme="dark"] {
  --cream: #1B2116;
  --cream-deep: #212819;
  --paper: #262E1E;
  --espresso: #10140C;
  --espresso-soft: #2A331F;
  --gold: #9FBE84;
  --gold-deep: #7C9A5E;
  --gold-tint: rgba(159, 190, 132, 0.14);
  --rose: #D2AC66;
  --rose-deep: #B6893F;
  --rose-tint: rgba(210, 172, 102, 0.14);
  --ink: #EFEDE4;
  --ink-soft: #B7BBA6;
  --border: rgba(239, 237, 228, 0.14);
  --shadow-color: 0, 0, 0;
  color-scheme: dark;
}

:root[data-theme="light"] {
  --cream: #F6F7EC;
  --cream-deep: #EBEEDB;
  --paper: #FFFFFF;
  --espresso: #465C38;
  --espresso-soft: #56703F;
  --gold: #6F9049;
  --gold-deep: #4F6B34;
  --gold-tint: #E4EEDA;
  --rose: #B6893F;
  --rose-deep: #8F6A2E;
  --rose-tint: #F3E8D2;
  --ink: #262E1D;
  --ink-soft: #6C7259;
  --border: rgba(38, 46, 29, 0.12);
  --shadow-color: 38, 46, 29;
  color-scheme: light;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  min-height: 100dvh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

html[dir="rtl"] body { font-family: 'IBM Plex Sans Arabic', var(--font-body); }

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

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

button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

@media (min-width: 768px) {
  .container { padding-inline: 40px; }
}

h1, h2, h3 { text-wrap: balance; font-weight: 700; color: var(--ink); }

[lang-display="ar"], html[data-lang="ar"] .display { font-family: var(--font-display-ar); }
html[data-lang="en"] .display { font-family: var(--font-display-en); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
html[data-lang="ar"] .eyebrow { letter-spacing: 0.02em; text-transform: none; font-size: 14px; }

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--rose);
}

.section { padding: 88px 0; position: relative; }
@media (max-width: 640px) { .section { padding: 64px 0; } }

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.section-head.center { margin-inline: auto; text-align: center; align-items: center; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
}

.section-sub { color: var(--ink-soft); font-size: 16.5px; max-width: 52ch; }

.on-dark { --cream: var(--espresso); }
.band-dark {
  background: var(--espresso);
  color: #F3E9DD;
}
.band-dark .section-sub { color: #C7B8A8; }
.band-dark h2, .band-dark h3 { color: #F9F2E7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold);
  color: #FBF6EF;
  box-shadow: 0 10px 24px -12px rgba(111, 144, 73, 0.55);
}
.btn-primary:hover { background: var(--gold-deep); box-shadow: 0 14px 30px -12px rgba(111, 144, 73, 0.6); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--ink); }
.band-dark .btn-ghost { color: #F3E9DD; border-color: rgba(243,233,221,0.28); }
.band-dark .btn-ghost:hover { border-color: #F3E9DD; }

.btn-sm { padding: 10px 18px; font-size: 13.5px; }

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

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), backdrop-filter var(--dur-fast) var(--ease-out);
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(var(--shadow-color), 0.04);
  background-color: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { height: 44px; width: 44px; flex-shrink: 0; border-radius: 50%; object-fit: cover; }
.brand-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.brand-name {
  font-family: var(--font-display-ar);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
html[data-lang="en"] .brand-name { font-family: var(--font-display-en); font-size: 21px; letter-spacing: 0.02em; }
.brand-sub { display: block; font-size: 10.5px; letter-spacing: 0.1em; color: var(--ink-soft); text-transform: uppercase; margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.main-nav a:hover { color: var(--ink); background: rgba(var(--shadow-color), 0.05); }

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

.lang-toggle {
  display: inline-flex;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle button {
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-soft);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.lang-toggle button[aria-pressed="true"] { background: var(--espresso); color: var(--cream); }

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
}

@media (max-width: 920px) {
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  padding: 100px 28px 40px;
  gap: 6px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.mobile-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-nav a {
  font-size: 22px;
  font-weight: 700;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.mobile-nav.open a { opacity: 1; transform: translateY(0); }
.mobile-nav a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav a:nth-child(2) { transition-delay: 0.1s; }
.mobile-nav a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav a:nth-child(4) { transition-delay: 0.2s; }
.mobile-nav a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav .btn { margin-top: 20px; align-self: flex-start; opacity: 0; transform: translateY(10px); transition: opacity 0.4s var(--ease-out) 0.3s, transform 0.4s var(--ease-out) 0.3s; }
.mobile-nav.open .btn { opacity: 1; transform: translateY(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 110px;
  overflow: hidden;
  background: var(--espresso);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
@media (max-width: 720px) {
  .hero-media {
    top: 84px;
  }
  .hero-media img {
    object-fit: cover;
    object-position: center 15%;
  }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.72) 0%, rgba(20, 14, 10, 0.58) 45%, rgba(20, 14, 10, 0.8) 100%);
}

.hero-photo .hero-copy .eyebrow { color: var(--rose); }
.hero-photo .hero-copy .eyebrow::before { background: var(--gold); }
.hero-photo .hero-title { color: #FBF6EF; }
.hero-photo .hero-title .accent { color: var(--rose); }
.hero-photo .hero-sub { color: rgba(251, 246, 239, 0.86); }
.hero-photo .hero-stat b { color: #FBF6EF; }
.hero-photo .hero-stat span { color: rgba(251, 246, 239, 0.72); }
.hero-photo .btn-ghost { color: #F3E9DD; border-color: rgba(243, 233, 221, 0.4); }
.hero-photo .btn-ghost:hover { border-color: #F3E9DD; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-copy { max-width: 640px; }

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.15;
  margin-block: 20px 18px;
}
html[data-lang="ar"] .hero-title { line-height: 1.35; }

.hero-title .accent { color: var(--rose); }

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat b { font-size: 26px; font-family: var(--font-display-en); color: var(--ink); }
html[data-lang="ar"] .hero-stat b { font-family: var(--font-display-ar); }
.hero-stat span { font-size: 12.5px; color: var(--ink-soft); }

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 70ms); }

.hero-copy .eyebrow, .hero-title, .hero-sub, .hero-cta, .hero-stats {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s var(--ease-out) forwards;
}
.hero-copy .eyebrow { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.15s; }
.hero-sub { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.42s; }
.hero-stats { animation-delay: 0.54s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy .eyebrow, .hero-title, .hero-sub, .hero-cta, .hero-stats, .reveal { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ---------- Marquee strip ---------- */
.strip {
  border-block: 1px solid var(--border);
  overflow: hidden;
  background: var(--cream-deep);
}
.strip-track {
  display: flex;
  width: max-content;
  gap: 56px;
  padding: 16px 0;
  animation: marquee 32s linear infinite;
}
.strip-track span {
  font-family: var(--font-display-ar);
  font-size: 18px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
html[data-lang="en"] .strip-track span { font-family: var(--font-display-en); font-style: italic; }
.strip-track span::after { content: "•"; color: var(--rose); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
html[dir="rtl"] .strip-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

/* ---------- Categories ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 820px;
  margin-inline: auto;
}
@media (min-width: 560px) { .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }

.cat-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px -20px rgba(var(--shadow-color), 0.35);
  border-color: transparent;
}
.cat-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-tint);
  color: var(--gold-deep);
  transition: transform var(--dur-base) var(--ease-out);
}
.cat-card:nth-child(even) .cat-icon { background: var(--rose-tint); color: var(--rose-deep); }
.cat-card:hover .cat-icon { transform: scale(1.08) rotate(-4deg); }
.cat-icon svg { width: 34px; height: 34px; }
.cat-icon.has-photo { background: none; }
.cat-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.cat-card span { font-size: 15.5px; font-weight: 700; }

/* ---------- Products ---------- */
.cat-section { scroll-margin-top: 110px; }
.cat-section + .cat-section { margin-top: 56px; }
.cat-section-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.cat-section-head .eyebrow { margin: 0; }
.cat-section-head .cat-count { font-size: 13px; color: var(--ink-soft); font-weight: 500; }

.coming-soon {
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: var(--paper);
}
.coming-soon p { font-size: 14.5px; color: var(--ink-soft); }

.prod-disclaimer {
  margin-top: 40px;
  font-size: 12.5px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -22px rgba(var(--shadow-color), 0.4); }

.product-art {
  aspect-ratio: 4 / 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-art svg { width: 68%; height: 68%; transition: transform var(--dur-base) var(--ease-out); }
.product-card:hover .product-art svg { transform: scale(1.06); }
.product-art img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-base) var(--ease-out); }
.product-card:hover .product-art img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: rgba(var(--shadow-color), 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
}

.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-name { font-size: 15.5px; font-weight: 700; }
.product-cat { font-size: 12px; color: var(--ink-soft); }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.product-price { font-family: var(--font-display-en); font-size: 17px; font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
html[data-lang="ar"] .product-price { font-family: var(--font-display-ar); }
.product-price .price-currency { font-size: 0.62em; font-weight: 600; margin-inline-start: 2px; }

.product-cal {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--cream-deep);
  padding: 4px 7px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}
.product-cal svg { width: 11px; height: 11px; color: var(--rose); flex-shrink: 0; }

/* ---------- Why us ---------- */
.why-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 980px;
  margin-inline: auto;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  padding: 32px 26px;
  border-radius: var(--radius-lg);
  background: rgba(243, 233, 221, 0.04);
  border: 1px solid rgba(243, 233, 221, 0.14);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.why-num {
  font-family: var(--font-display-en);
  font-size: 14px;
  color: var(--rose);
  font-weight: 700;
}
.why-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: rgba(111, 144, 73, 0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 19px; }
.why-card p { color: #C7B8A8; font-size: 14.5px; }

/* ---------- About / split ---------- */
.split {
  display: grid;
  gap: 48px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }

.about-art { position: relative; aspect-ratio: 1/1; max-width: 460px; margin-inline: auto; }
.about-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 50px -24px rgba(var(--shadow-color), 0.45);
}
.about-badge {
  position: absolute;
  bottom: 6%;
  inset-inline-start: -6%;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px -22px rgba(var(--shadow-color), 0.35);
}
.about-badge strong { font-size: 22px; font-family: var(--font-display-en); color: var(--rose); display: block; }
.about-badge span { font-size: 11.5px; color: var(--ink-soft); }

.about-copy p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 18px; }
.about-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.about-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.about-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------- Occasions band ---------- */
.occ-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.occ-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--paper);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}
.occ-nav:hover { background: var(--gold); color: #fff; border-color: transparent; }
.occ-nav:active { transform: scale(0.94); }
.occ-nav svg { width: 20px; height: 20px; }
.occ-prev svg { transform: scaleX(-1); }
html[dir="rtl"] .occ-prev svg { transform: scaleX(1); }
html[dir="rtl"] .occ-next svg { transform: scaleX(-1); }
@media (max-width: 560px) { .occ-nav { width: 38px; height: 38px; } .occ-nav svg { width: 17px; height: 17px; } }

.occ-scroller {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  min-width: 0;
}
.occ-scroller::-webkit-scrollbar { display: none; }
.occ-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 240px;
  border-radius: var(--radius-md);
  padding: 26px 22px;
  background: var(--paper);
  border: 1px solid var(--border);
}
.occ-card h4 { font-size: 16.5px; margin-bottom: 8px; }
.occ-card p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin-inline: auto;
}
@media (min-width: 640px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .testi-grid { grid-template-columns: repeat(4, 1fr); } }

.testi-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.testi-stars { display: flex; gap: 3px; }
.testi-stars svg { width: 15px; height: 15px; }
.testi-quote { font-size: 14.5px; color: var(--ink-soft); flex: 1; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 40px; } }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-row .icon-wrap {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
}
.contact-row .icon-wrap svg { width: 20px; height: 20px; }
.contact-row h4 { font-size: 14px; margin-bottom: 4px; }
.contact-row p, .contact-row a { font-size: 14.5px; color: var(--ink-soft); }
.contact-row a:hover { color: var(--gold-deep); }

.map-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  height: 100%;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: saturate(0.85); }
.map-open-link {
  position: absolute;
  inset-inline-end: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 700;
  box-shadow: 0 8px 20px -8px rgba(var(--shadow-color), 0.35);
  transition: transform var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}
.map-open-link svg { width: 16px; height: 16px; color: var(--rose); flex-shrink: 0; }
.map-open-link:hover { transform: translateY(-2px); background: var(--gold-tint); }

/* ---------- Footer ---------- */
.site-footer { background: var(--espresso); color: #E8DCCB; padding: 64px 0 28px; }
.footer-top {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(232, 220, 203, 0.14);
}
@media (min-width: 760px) { .footer-top { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer-brand .brand-name { color: #F9F2E7; }
.footer-brand p { color: #B8A996; font-size: 14.5px; margin-top: 14px; max-width: 34ch; }
.footer-col h5 { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: #B8A996; margin-bottom: 16px; }
html[data-lang="ar"] .footer-col h5 { text-transform: none; letter-spacing: 0; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col span { font-size: 14.5px; color: #E8DCCB; }
.footer-col a:hover { color: var(--rose); }

.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(232, 220, 203, 0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast), border-color var(--dur-fast);
}
.social-row a:hover { background: var(--rose); border-color: var(--rose); }
.social-row svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  padding-top: 24px; font-size: 12.5px; color: #9A8B78;
}

/* ---------- Arch divider ---------- */
.arch-divider { display: block; width: 100%; height: auto; color: var(--cream); }

/* ---------- Product ID badge ---------- */
.product-art[data-lightbox] { cursor: zoom-in; }
.product-id {
  position: absolute;
  bottom: 12px;
  inset-inline-end: 12px;
  background: rgba(var(--shadow-color), 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  font-family: var(--font-display-en);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(15, 11, 8, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(720px, 90vw);
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  transform: scale(0.94);
  transition: transform var(--dur-base) var(--ease-out);
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 20px;
  inset-inline-end: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast) var(--ease-out);
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox-close svg { width: 20px; height: 20px; }
@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox img { transition: none; }
}
