/* ============================================================
   Dar Essa — مطعم دار عيسى
   Brand: deep forest green + gold  |  Fonts: Tajawal / Poppins
   ============================================================ */

:root {
  /* Brand colors */
  --green-900: #0e2219;
  --green-800: #14342a;
  --green-700: #1b3d31;
  --green-600: #244c3d;
  --green-500: #2f5e4c;
  --gold:       #e0b057;
  --gold-light: #efcd8b;
  --gold-deep:  #c79038;
  --cream:      #f6f0e2;
  --cream-dim:  #cfc8b6;
  --ink:        #0b1a14;

  /* Typography */
  --font-ar: "Tajawal", "Segoe UI", Tahoma, sans-serif;
  --font-en: "Poppins", "Segoe UI", sans-serif;
  --font-body: var(--font-en);

  /* Layout */
  --maxw: 1200px;
  --nav-h: 92px;
  --radius: 16px;
  --shadow-soft: 0 18px 50px -20px rgba(0,0,0,.55);
  --shadow-gold: 0 10px 30px -10px rgba(224,176,87,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

html[lang="ar"] { --font-body: var(--font-ar); }
html[lang="en"] { --font-body: var(--font-en); }

/* ----------------------------- Reset ----------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--green-800);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1,h2,h3,h4 { line-height: 1.15; font-weight: 700; }

/* Language-dependent font for headings */
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3, html[lang="en"] .brand-word {
  font-family: var(--font-en); letter-spacing: .5px;
}
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3, html[lang="ar"] .brand-word {
  font-family: var(--font-ar);
}

/* Show text for the active language only */
[data-ar], [data-en] { display: none; }
html[lang="ar"] [data-ar] { display: revert; }
html[lang="en"] [data-en] { display: revert; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

/* ----------------------- Decorative background ----------------------- */
.bg-fx {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(224,176,87,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(224,176,87,.08), transparent 55%),
    linear-gradient(160deg, var(--green-900), var(--green-800) 45%, var(--green-700));
}
.bg-fx::before {
  content: ""; position: absolute; inset: -20%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='264' height='264' viewBox='0 0 264 264'%3E%3Cg fill='none' stroke='%23e0b057' stroke-width='1' stroke-opacity='.14'%3E%3Crect x='39.82' y='39.82' width='54' height='54'/%3E%3Crect x='39.82' y='170.18' width='54' height='54'/%3E%3Crect x='170.18' y='39.82' width='54' height='54'/%3E%3Crect x='170.18' y='170.18' width='54' height='54'/%3E%3Cpath d='M132 1.63 170.18 39.82 132 78 93.82 39.82Z'/%3E%3Cpath d='M132 186 170.18 224.18 132 262.37 93.82 224.18Z'/%3E%3Cpath d='M39.82 93.82 78 132 39.82 170.18 1.63 132Z'/%3E%3Cpath d='M224.18 93.82 262.37 132 224.18 170.18 186 132Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 264px 264px;
  opacity: .6;
  animation: drift 60s linear infinite;
}
@keyframes drift { to { transform: translate3d(264px, 264px, 0); } }

/* Floating gold motes */
.motes { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.mote {
  position: absolute; bottom: -10px; width: 7px; height: 7px;
  clip-path: polygon(50% 0%, 64.4% 25%, 93.3% 25%, 78.9% 50%, 93.3% 75%, 64.4% 75%, 50% 100%, 35.6% 75%, 6.7% 75%, 21.1% 50%, 6.7% 25%, 35.6% 25%);
  background: radial-gradient(circle at 30% 30%, var(--gold-light), var(--gold-deep));
  opacity: 0; filter: blur(.3px);
  animation: rise linear infinite;
}
@keyframes rise {
  0%   { transform: translateY(0) scale(.6); opacity: 0; }
  10%  { opacity: .8; }
  90%  { opacity: .5; }
  100% { transform: translateY(-105vh) scale(1); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bg-fx::before, .mote, .hero-bg { animation: none !important; }
}

/* ------------------------------ Navbar ------------------------------ */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header.scrolled {
  background: rgba(14,34,25,.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,.8);
}
.nav {
  width: min(100% - 40px, var(--maxw)); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; }

/* Name-based logo lockup (recreated from the storefront sign) */
.logo-mark { display: flex; flex-direction: column; align-items: center; text-align: center; line-height: 1; }
.logo-pre {
  font-family: var(--font-ar); font-size: .74rem; font-weight: 500;
  color: var(--gold-light); letter-spacing: 1px; margin-bottom: 3px;
}
.logo-name {
  font-family: "Aref Ruqaa", var(--font-ar); font-weight: 700;
  font-size: 2.15rem; color: var(--gold); line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.logo-sub {
  font-family: var(--font-ar); font-size: .62rem; font-weight: 500;
  color: var(--gold-light); letter-spacing: .3px; margin-top: 5px; opacity: .92;
}

/* Footer variant — larger and start-aligned */
.footer-brand .logo-mark { align-items: flex-start; text-align: start; }
.footer-brand .logo-name { font-size: 2.7rem; }
.footer-brand .logo-pre { font-size: .9rem; }
.footer-brand .logo-sub { font-size: .74rem; margin-bottom: 4px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  position: relative; padding: 10px 16px; border-radius: 999px;
  font-size: .95rem; font-weight: 500; color: var(--cream);
  transition: color .3s, background .3s;
}
.nav-links a::after {
  content: ""; position: absolute; inset-inline: 16px; inset-block-end: 4px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: center;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

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

/* Language toggle */
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(224,176,87,.4); border-radius: 999px;
  padding: 7px 14px; font-size: .85rem; font-weight: 600; color: var(--gold-light);
  transition: background .3s, transform .2s, border-color .3s;
}
.lang-toggle:hover { background: rgba(224,176,87,.12); transform: translateY(-1px); border-color: var(--gold); }

/* Hamburger */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: var(--gold-light);
  border-radius: 2px; transition: transform .3s, opacity .3s; margin-inline: auto;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; inset-block-start: -7px; inset-inline-start: 0; }
.nav-toggle span::after  { position: absolute; inset-block-start: 7px;  inset-inline-start: 0; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------ Buttons ------------------------------ */
.btn {
  --c: var(--green-900);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: 999px; font-weight: 700; font-size: .98rem;
  overflow: hidden; isolation: isolate; transition: transform .25s var(--ease), box-shadow .3s;
  will-change: transform;
}
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--c); box-shadow: var(--shadow-gold); }
.btn-gold::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  transform: translateX(-101%); transition: transform .45s var(--ease);
}
html[dir="rtl"] .btn-gold::before { transform: translateX(101%); }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(224,176,87,.6); }

.btn-outline { border: 1.5px solid var(--gold); color: var(--gold-light); }
.btn-outline::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom; transition: transform .4s var(--ease);
}
.btn-outline:hover { color: var(--green-900); transform: translateY(-3px); }
.btn-outline:hover::before { transform: scaleY(1); }

.btn:active { transform: translateY(-1px) scale(.99); }

/* ------------------------------ Hero ------------------------------ */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center;
  text-align: center; overflow: hidden; isolation: isolate;
}
.hero-bgs { position: absolute; inset: 0; z-index: -2; }
.hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s cubic-bezier(.4,0,.2,1);
  /* continuous slow zoom on every slide so there is no snap when switching */
  animation: kenburns 22s ease-in-out infinite alternate;
  filter: saturate(1.1) contrast(1.05) brightness(1.02);
  will-change: opacity, transform; backface-visibility: hidden;
}
.hero-bg.is-active { opacity: 1; }
@keyframes kenburns {
  from { transform: scale(1.04) translateZ(0); }
  to   { transform: scale(1.1) translateZ(0); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(125% 95% at 50% 15%, transparent 0%, rgba(8,24,17,.45) 52%, rgba(8,24,17,.97) 100%),
    linear-gradient(to top, var(--green-900) 0%, rgba(14,34,25,.62) 48%, rgba(14,34,25,.52) 100%);
}
.hero-content { padding: 90px 20px 60px; max-width: 880px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px;
  color: var(--gold-light); font-size: .8rem; letter-spacing: 4px; text-transform: uppercase;
  opacity: 0; animation: fadeUp .9s var(--ease) .2s forwards;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 38px; height: 1px; background: var(--gold); opacity: .6; }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem); color: var(--cream);
  text-shadow: 0 10px 40px rgba(0,0,0,.5);
  opacity: 0; animation: fadeUp 1s var(--ease) .35s forwards;
}
.hero h1 .gold { color: var(--gold); }
.hero-tagline {
  margin: 18px auto 0; max-width: 620px; font-size: clamp(1rem,2.2vw,1.25rem); color: var(--cream-dim);
  opacity: 0; animation: fadeUp 1s var(--ease) .55s forwards;
}
.hero-cta { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s var(--ease) .75s forwards; }
.scroll-cue {
  position: absolute; inset-block-end: 26px; inset-inline-start: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid rgba(224,176,87,.5); border-radius: 14px;
  display: grid; justify-items: center; padding-top: 8px;
}
.scroll-cue::before { content: ""; width: 4px; height: 8px; border-radius: 4px; background: var(--gold); animation: cue 1.6s var(--ease) infinite; }
@keyframes cue { 0%{ transform: translateY(0); opacity: 1;} 70%{ transform: translateY(14px); opacity: 0;} 100%{opacity:0;} }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ------------------------------ Sections ------------------------------ */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 56px; }
.eyebrow { color: var(--gold); font-size: .8rem; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 12px 0 14px; }
.section-head h2 .gold { color: var(--gold); }
.section-head p { color: var(--cream-dim); }
.divider { width: 70px; height: 3px; margin: 16px auto 0; border-radius: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.page-hero {
  padding: calc(var(--nav-h) + 70px) 0 60px; text-align: center; position: relative;
}
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.page-hero h1 .gold { color: var(--gold); }
.page-hero p { color: var(--cream-dim); margin-top: 12px; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ------------------------- Home: intro + features ------------------------- */
.intro-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.intro-text h2 { font-size: clamp(1.8rem,4vw,2.7rem); margin-bottom: 18px; }
.intro-text h2 .gold { color: var(--gold); }
.intro-text p { color: var(--cream-dim); margin-bottom: 16px; }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius); box-shadow: var(--shadow-soft); aspect-ratio: 4/5; object-fit: cover; }
.intro-media .badge {
  position: absolute; inset-block-end: -24px; inset-inline-start: -24px;
  background: var(--gold); color: var(--green-900); border-radius: 14px; padding: 16px 22px;
  font-weight: 800; box-shadow: var(--shadow-gold); text-align: center; line-height: 1.2;
}
.intro-media .badge small { display: block; font-weight: 600; font-size: .72rem; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(224,176,87,.18); border-radius: var(--radius); padding: 34px 26px;
  text-align: center; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.feature:hover { transform: translateY(-8px); border-color: rgba(224,176,87,.5); box-shadow: var(--shadow-soft); }
.feature-ic {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 30%, rgba(224,176,87,.25), rgba(224,176,87,.06));
  border: 1px solid rgba(224,176,87,.35); font-size: 28px;
}
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--gold-light); }
.feature p { color: var(--cream-dim); font-size: .95rem; }

/* ------------------------- Featured dishes strip ------------------------- */
.dish-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.dish-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1;
  box-shadow: var(--shadow-soft);
}
.dish-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.dish-card:hover img { transform: scale(1.08); }
.dish-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,24,17,.9), transparent 55%); }
.dish-card .label {
  position: absolute; inset-inline: 18px; inset-block-end: 16px; z-index: 1;
  font-weight: 700; font-size: 1.1rem; color: var(--cream);
}
.dish-card .label small { display: block; color: var(--gold-light); font-weight: 500; font-size: .82rem; }

/* ------------------------------ Menu page ------------------------------ */
.menu-section { margin-bottom: 56px; }
.menu-cat-head { display: flex; align-items: center; gap: 18px; margin-bottom: 26px; }
.menu-cat-head h2 { font-size: clamp(1.5rem,3.5vw,2.1rem); color: var(--gold); white-space: nowrap; }
.menu-cat-head .line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
html[dir="rtl"] .menu-cat-head .line { background: linear-gradient(270deg, var(--gold), transparent); }
.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 40px; }
.menu-item {
  display: flex; flex-direction: column; gap: 5px; padding: 14px 6px;
  border-bottom: 1px dashed rgba(224,176,87,.18); transition: padding-inline .3s, background .3s;
}
.menu-item:hover { background: linear-gradient(90deg, rgba(224,176,87,.07), transparent); padding-inline-start: 16px; }
.menu-item-row { display: flex; align-items: baseline; gap: 12px; }
.menu-item .name { font-weight: 600; color: var(--cream); }
.menu-item .dots { flex: 1; border-bottom: 1px dotted rgba(224,176,87,.35); transform: translateY(-4px); }
.menu-item .price { color: var(--gold); font-weight: 700; white-space: nowrap; }
.menu-item .price .cur { font-size: .72em; font-weight: 600; color: var(--gold-light); margin-inline-start: 3px; }
.menu-item .desc { margin: 0; color: var(--cream-dim); font-size: .84rem; line-height: 1.55; max-width: 54ch; }
.menu-note { text-align: center; color: var(--cream-dim); font-size: .92rem; margin-top: 8px; }

/* ------------------------------ Gallery ------------------------------ */
.gallery-filter { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.gallery-filter button {
  padding: 9px 20px; border-radius: 999px; border: 1px solid rgba(224,176,87,.3);
  color: var(--cream-dim); font-weight: 600; font-size: .9rem; transition: all .3s;
}
.gallery-filter button.active, .gallery-filter button:hover { background: var(--gold); color: var(--green-900); border-color: var(--gold); }
.gallery-grid { columns: 3; column-gap: 18px; }
.gallery-grid figure {
  break-inside: avoid; margin-bottom: 18px; border-radius: var(--radius); overflow: hidden;
  position: relative; box-shadow: var(--shadow-soft); cursor: pointer;
}
.gallery-grid img { width: 100%; transition: transform .7s var(--ease); }
.gallery-grid figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,24,17,.55), transparent 60%); opacity: 0; transition: opacity .4s; }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figure:hover::after { opacity: 1; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,16,11,.94); display: none; place-items: center; padding: 30px; }
.lightbox.open { display: grid; animation: fadeIn .3s ease; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 86vh; border-radius: 12px; box-shadow: var(--shadow-soft); }
.lightbox .lb-close { position: absolute; inset-block-start: 24px; inset-inline-end: 30px; font-size: 2rem; color: var(--gold-light); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ------------------------------ Locations ------------------------------ */
.loc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.loc-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(224,176,87,.2); border-radius: var(--radius); padding: 34px;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.loc-card:hover { transform: translateY(-6px); border-color: rgba(224,176,87,.5); box-shadow: var(--shadow-soft); }
.loc-card h3 { font-size: 1.5rem; color: var(--gold); margin-bottom: 6px; }
.loc-card .loc-row { display: flex; align-items: center; gap: 12px; margin: 12px 0; color: var(--cream-dim); }
.loc-card .loc-row .ic { width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center;
  background: rgba(224,176,87,.12); border: 1px solid rgba(224,176,87,.25); }
.loc-card .loc-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.loc-card .btn { padding: 11px 22px; font-size: .9rem; }

.contact-band {
  margin-top: 56px; text-align: center; padding: 48px 30px; border-radius: var(--radius);
  background: radial-gradient(120% 140% at 50% 0%, rgba(224,176,87,.16), transparent 60%), rgba(255,255,255,.03);
  border: 1px solid rgba(224,176,87,.22);
}
.contact-band h2 { font-size: clamp(1.6rem,4vw,2.4rem); margin-bottom: 10px; }
.contact-band .socials { display: flex; gap: 14px; justify-content: center; margin-top: 22px; }
.contact-band .socials a {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(224,176,87,.35); color: var(--gold-light); font-size: 20px;
  transition: all .3s var(--ease);
}
.contact-band .socials a:hover { background: var(--gold); color: var(--green-900); transform: translateY(-4px); }

/* ------------------------------ CTA band ------------------------------ */
.cta-band {
  position: relative; text-align: center; padding: clamp(56px,8vw,90px) 30px;
  border-radius: 24px; overflow: hidden; isolation: isolate;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border: 1px solid rgba(224,176,87,.25);
}
.cta-band h2 { font-size: clamp(1.8rem,4.4vw,2.8rem); margin-bottom: 14px; }
.cta-band h2 .gold { color: var(--gold); }
.cta-band p { color: var(--cream-dim); max-width: 540px; margin: 0 auto 28px; }

/* ------------------------------ Footer ------------------------------ */
.site-footer { background: var(--green-900); border-top: 1px solid rgba(224,176,87,.15); padding: 56px 0 26px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-brand p { color: var(--cream-dim); margin-top: 14px; max-width: 320px; font-size: .95rem; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.footer-socials a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(224,176,87,.35); color: var(--gold-light);
  transition: background .3s var(--ease), color .3s, transform .3s var(--ease);
}
.footer-socials a [data-icon] { width: 20px; height: 20px; }
.footer-socials a:hover { background: var(--gold); color: var(--green-900); transform: translateY(-3px); }
html[dir="rtl"] .footer-socials { justify-content: flex-start; }
.footer-col h4 { color: var(--gold); margin-bottom: 16px; font-size: 1.05rem; }
.footer-col a, .footer-col li { color: var(--cream-dim); display: block; padding: 5px 0; transition: color .3s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { text-align: center; color: var(--cream-dim); font-size: .85rem; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.07); }

/* ------------------------------ Icons ------------------------------ */
[data-icon] { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
[data-icon] svg { width: 100%; height: 100%; display: block; }
.feature-ic { color: var(--gold); }
.feature-ic [data-icon] { width: 30px; height: 30px; }
.lang-toggle [data-icon] { width: 16px; height: 16px; }
.loc-card .ic, .contact-band .ic { color: var(--gold-light); }
.loc-card .ic [data-icon], .contact-band .ic [data-icon] { width: 18px; height: 18px; }
.socials a [data-icon] { width: 20px; height: 20px; }
.footer-contact a { display: flex; align-items: center; gap: 9px; }
.footer-contact a [data-icon] { width: 15px; height: 15px; color: var(--gold); flex: none; }
.footer-contact .foot-line { display: flex; align-items: center; gap: 9px; color: var(--cream-dim); padding: 5px 0; }
.footer-contact .foot-line [data-icon] { width: 15px; height: 15px; color: var(--gold); flex: none; }

/* Collagen soup benefits list */
.benefits { margin: 22px 0 24px; display: grid; gap: 13px; }
.benefits li { display: flex; align-items: center; gap: 12px; color: var(--cream); font-weight: 500; }
.benefits li [data-icon] { width: 23px; height: 23px; color: var(--gold); flex: none; }

/* Collagen soup — "with lentils" variant chip */
.soup-variant {
  display: flex; align-items: center; gap: 16px; margin: 0 0 28px;
  padding: 14px; border: 1px solid rgba(224,176,87,.28); border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  transition: transform .4s var(--ease), border-color .4s;
}
.soup-variant:hover { transform: translateY(-3px); border-color: rgba(224,176,87,.55); }
.soup-variant img { width: 92px; height: 92px; border-radius: 12px; object-fit: cover; flex: none; box-shadow: var(--shadow-soft); }
.soup-variant strong { display: block; color: var(--gold-light); font-size: 1.05rem; margin-bottom: 2px; }
.soup-variant span { color: var(--cream-dim); font-size: .9rem; line-height: 1.4; }

/* ------------------------------ Responsive ------------------------------ */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .features, .dish-grid, .loc-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .nav-toggle { display: grid; place-items: center; }
  .nav-links {
    position: fixed; inset-block-start: var(--nav-h); inset-inline: 0;
    flex-direction: column; align-items: stretch; gap: 0; padding: 10px 20px 24px;
    background: rgba(14,34,25,.97); backdrop-filter: blur(14px);
    border-top: 1px solid rgba(224,176,87,.18);
    transform: translateY(-130%); transition: transform .45s var(--ease); pointer-events: none;
  }
  body.menu-open .nav-links { transform: translateY(0); pointer-events: auto; }
  .nav-links a { padding: 16px 10px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links a::after { display: none; }
}
@media (max-width: 560px) {
  .gallery-grid { columns: 1; }
  .site-header .logo-sub { display: none; }
  .site-header .logo-name { font-size: 1.7rem; }
  .hero-cta .btn { width: 100%; }
}
