/* =========================================================
   Villa Cialo Boutique — Resort Luxury Stylesheet
   Black & Gold base + warmer/lighter accents · RTL/LTR
   ========================================================= */

:root {
  --bg: #0f0d0a;
  --bg-soft: #15120e;
  --bg-warm: #1c1814;
  --surface: #1a1612;
  --line: #2a241d;
  --text: #ece4d6;
  --text-soft: #b9ad97;
  --muted: #847866;
  --gold: #c9a35a;
  --gold-soft: #e3c587;
  --gold-deep: #8e6f33;
  --warm-white: #f6efe2;
  --sand: #d9c8a8;

  --shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  --shadow-gold: 0 14px 40px -10px rgba(201,163,90,0.35);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --slow: 1.1s var(--ease);
  --base: 0.5s var(--ease);

  --container: 1320px;
  --gutter: clamp(1.25rem, 3vw, 3.25rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Heebo', system-ui, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--bg); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 4px; }

/* ---------- Typography ---------- */
.display, .display-md {
  font-family: 'Heebo', 'Cormorant Garamond', serif;
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.display { font-size: clamp(2.5rem, 7.5vw, 6rem); }
.display-md { font-size: clamp(2rem, 5vw, 4rem); }
.italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 400;
}
.eyebrow .dash { width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.lead { color: var(--text-soft); font-size: 17px; max-width: 600px; margin: 18px auto 0; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section-head { text-align: start; margin-bottom: clamp(40px, 6vw, 80px); }
.section-head.center { text-align: center; }
.section-head h2 { margin-top: 16px; }

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; width: 28px; height: 28px;
  pointer-events: none; z-index: 9999;
  border: 1px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border-color 0.3s;
  mix-blend-mode: difference;
}
.cursor span {
  position: absolute; inset: 50% auto auto 50%;
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor.hover { width: 56px; height: 56px; background: rgba(201,163,90,0.15); }
.cursor.hover span { width: 0; height: 0; }
@media (max-width: 900px) { .cursor { display: none; } }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; letter-spacing: 0.5em;
  color: var(--gold);
  display: block; margin-bottom: 24px;
  padding-inline-start: 0.5em;
}
.loader-bar {
  width: 240px; height: 1px; background: var(--line);
  margin: 0 auto; overflow: hidden;
}
.loader-bar > div {
  height: 100%; width: 30%;
  background: var(--gold);
  animation: loadbar 1.4s var(--ease) infinite;
}
@keyframes loadbar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: all var(--base);
  background: linear-gradient(to bottom, rgba(15,13,10,0.85), transparent);
  backdrop-filter: blur(0);
}
.nav.scrolled {
  background: rgba(15,13,10,0.92);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
/* סידור הקונטיינר של הלוגו והטקסט בשורה אחת */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px; /* הרווח בין התמונה לטקסט */
    text-decoration: none;
}

/* העיצוב של הריבוע הקטן של הלוגו */
.nav-logo-img {
    width: 45px; /* רוחב הריבוע */
    height: 45px; /* גובה הריבוע */
    object-fit: contain; /* שומר שהתמונה לא תיחתך או תתעוות */
    display: block;
}

/* סידור הטקסט של הלוגו אחד מתחת לשני */
.nav-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.brand-mark.big { width: 56px; height: 56px; font-size: 32px; margin-bottom: 14px; }
.brand:hover .brand-mark { background: var(--gold); color: var(--bg); }
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; letter-spacing: 0.18em;
  color: var(--warm-white);
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  transition: color var(--base);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; inset-inline-start: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--base);
}
.nav-links a:hover { color: var(--warm-white); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-btn {
  font-size: 12px; letter-spacing: 0.25em;
  color: var(--text-soft);
  border: 1px solid var(--line);
  padding: 8px 14px;
  transition: all var(--base);
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.burger {
  width: 28px; height: 28px;
  display: none; flex-direction: column; justify-content: center; gap: 5px;
}
.burger span { display: block; width: 100%; height: 1px; background: var(--warm-white); transition: all var(--base); }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.open span:nth-child(2) { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
}

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0; visibility: hidden;
  transition: opacity var(--base), visibility var(--base);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; color: var(--warm-white);
  letter-spacing: 0.1em;
}
.mobile-menu a:hover { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn-gold, .btn-gold-sm, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 40px;
  font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase; font-weight: 400;
  transition: all var(--base);
  border: 1px solid transparent;
  position: relative; overflow: hidden;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--bg);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); filter: brightness(1.1); }
.btn-gold-sm { padding: 10px 22px; font-size: 11px; background: var(--gold); color: var(--bg); }
.btn-gold-sm:hover { background: var(--gold-soft); }
.btn-ghost {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-ghost:hover { background: var(--gold); color: var(--bg); }
.full { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative; height: 100svh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: -5%; z-index: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s ease-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(-2%, -2%); }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(15,13,10,0.5) 70%, rgba(15,13,10,0.95) 100%),
    linear-gradient(180deg, rgba(15,13,10,0.3) 0%, rgba(15,13,10,0.85) 100%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 980px; padding: 0 var(--gutter);
  text-align: center;
}
.hero-content .display { color: var(--warm-white); }
.hero-content .display span { display: block; }
.hero-sub {
  margin-top: 24px; font-size: clamp(15px, 1.5vw, 19px);
  color: var(--sand); max-width: 580px; margin-inline: auto;
  font-weight: 300;
}
.hero-cta { margin-top: 44px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 30px; inset-inline: 0;
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--warm-white); opacity: 0.6;
}
.hero-scroll span { font-size: 10px; letter-spacing: 0.5em; }
.hero-scroll .line {
  width: 1px; height: 50px; background: var(--warm-white);
  animation: scrollLine 2.5s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
}
.hero-meta {
  position: absolute; bottom: 32px; right: 5%;
  z-index: 2; display: flex; gap: 32px;
  color: var(--warm-white);
}
.hero-meta div { display: flex; flex-direction: column; align-items: center; }
.hero-meta b { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--gold); font-weight: 400; }
.hero-meta span { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-soft); }
@media (max-width: 700px) {
  .hero-meta { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg-soft);
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 36px);
  color: var(--gold-soft);
  font-style: italic;
}
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Split sections ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px); align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split-text p { color: var(--text-soft); margin-top: 18px; max-width: 520px; }
.split-text h2 { margin-top: 18px; }
.bullets {
  list-style: none; margin-top: 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.bullets li {
  position: relative; padding-inline-start: 22px;
  color: var(--text-soft); font-size: 14px;
}
.bullets li::before {
  content: '◆'; position: absolute; inset-inline-start: 0;
  color: var(--gold); font-size: 8px; top: 8px;
}

.img-stack { position: relative; aspect-ratio: 4/5; }
.img-stack img { position: absolute; object-fit: cover; }
.img-stack .s1 {
  inset: 0 30% 30% 0; width: 70%; height: 70%;
  z-index: 2; box-shadow: var(--shadow);
}
.img-stack .s2 {
  inset: 30% 0 0 30%; width: 60%; height: 60%;
  z-index: 1; border: 6px solid var(--bg);
}
[dir="rtl"] .img-stack .s1 { inset: 0 0 30% 30%; }
[dir="rtl"] .img-stack .s2 { inset: 30% 30% 0 0; }

/* ---------- Suites ---------- */
.suites { background: var(--bg-soft); }
.suites-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 700px) { .suites-grid { grid-template-columns: 1fr; } }
.suite { position: relative; }
.suite-img {
  aspect-ratio: 4/3; overflow: hidden;
  background: var(--bg-warm);
}
.suite-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.suite:hover .suite-img img { transform: scale(1.08); }
.suite-meta {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.suite-meta .num {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold); font-size: 13px; letter-spacing: 0.3em;
}
.suite-meta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 300;
  color: var(--warm-white);
}
.suite-meta p { color: var(--text-soft); font-size: 14px; }

/* ---------- Facilities ---------- */
.fac-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .fac-grid { grid-template-columns: repeat(2, 1fr); } }
.fac {
  background: var(--bg);
  padding: 40px 24px;
  text-align: center;
  transition: all var(--base);
}
.fac:hover { background: var(--bg-warm); transform: translateY(-4px); }
.fac i {
  font-style: normal; font-size: 32px; color: var(--gold);
  display: block; margin-bottom: 14px;
}
.fac h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--warm-white);
  margin-bottom: 6px;
}
.fac p { font-size: 12px; color: var(--muted); letter-spacing: 0.1em; }

/* ---------- Quote parallax ---------- */
.quote-parallax {
  position: relative; min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.qp-bg { position: absolute; inset: -10%; z-index: 0; }
.qp-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45) contrast(1.05);
}
.qp-content {
  position: relative; z-index: 2;
  text-align: center; padding: 80px var(--gutter);
  max-width: 900px;
}
.qp-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 44px);
  font-weight: 300; line-height: 1.3;
  color: var(--warm-white);
  margin-top: 24px;
}

/* ---------- Gallery ---------- */
.gallery { background: var(--bg-soft); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 6px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } }
.gallery-grid .gi {
  overflow: hidden; cursor: pointer; position: relative;
}
.gallery-grid .gi img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.gallery-grid .gi:hover img { transform: scale(1.12); }
.gallery-grid .gi::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(15,13,10,0.6));
  opacity: 0; transition: opacity var(--base);
  pointer-events: none; /* הוסף את השורה הזו כדי שהלחיצה תעבור לתמונה */
}
.gallery-grid .gi:hover::after { opacity: 1; }
.gallery-grid .gi.tall { grid-row: span 2; }
.gallery-grid .gi.wide { grid-column: span 2; }

/* הקונטיינר של הכפתורים */
.gallery-cats {
    display: flex; 
    gap: 15px; /* רווח נקי בין הכפתורים */
    justify-content: center; 
    margin-bottom: 50px;
    flex-wrap: wrap; 
}

/* עיצוב הכפתורים עצמם */
.gallery-cats button, .gal-filter {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3); /* מסגרת לבנה עדינה ושקופה למחצה */
    color: #fff; /* טקסט לבן */
    padding: 12px 30px;
    border-radius: 0px; /* פינות חדות לחלוטין - מרובע קלאסי */
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.25em; /* רווח אותיות רחב (Tracking) נותן מראה יוקרתי */
    text-transform: uppercase;
    transition: all 0.4s ease;
    cursor: pointer; /* כדי שיראו שזה לחיץ */
}

/* מצב מעבר עכבר או כשהכפתור נבחר (פעיל) */
.gallery-cats button:hover, 
.gal-filter.active {
    background: #fff; /* מילוי לבן במעבר עכבר */
    color: var(--resort-text); /* הטקסט הופך לכהה (או זהב) כדי לבלוט */
    border-color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(15,13,10,0.97);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 92vh; object-fit: contain; box-shadow: var(--shadow); }
.lb-close, .lb-prev, .lb-next {
  position: absolute; color: var(--warm-white);
  font-size: 40px; width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  transition: all var(--base);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--gold); color: var(--bg); }
.lb-close { top: 20px; inset-inline-end: 20px; }
.lb-prev { inset-inline-start: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { inset-inline-end: 20px; top: 50%; transform: translateY(-50%); }
[dir="rtl"] .lb-prev::after { content: '›'; } [dir="rtl"] .lb-prev { font-size: 0; }
[dir="rtl"] .lb-prev::after { font-size: 40px; }
[dir="rtl"] .lb-next::after { content: '‹'; } [dir="rtl"] .lb-next { font-size: 0; }
[dir="rtl"] .lb-next::after { font-size: 40px; }

/* ---------- Location ---------- */
.location { background: var(--bg-warm); }
.map {
  width: 100%; aspect-ratio: 4/3; border: 0;
  filter: grayscale(0.3) contrast(0.95);
  box-shadow: var(--shadow);
}

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 720px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px;
}
.contact-form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
@media (max-width: 600px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form span {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
}
.contact-form input, .contact-form select, .contact-form textarea {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--warm-white);
  padding: 14px 16px;
  font: inherit;
  transition: border-color var(--base);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold);
}
/* עיצוב כפתור התקשרות יוקרתי */
.btn-call-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px; /* נותן לו קצת אוויר מהטקסט שמעליו */
    margin-bottom: 20px; /* מרחיק אותו מהטופס שמתחתיו */
    padding: 14px 36px;
    border: 1px solid #c4a77d; /* מסגרת זהב */
    color: #c4a77d; /* טקסט זהב */
    background: transparent;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    border-radius: 0px; /* פינות חדות ואלגנטיות, אם תרצה עגול תשנה ל-40px */
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-call-now .icon {
    font-size: 1.2rem;
}

/* אפקט במעבר עכבר - הכפתור מתמלא בזהב והטקסט הופך ללבן/כהה */
.btn-call-now:hover {
    background: #c4a77d;
    color: #fff; /* או #2a2a2a אם אתה מעדיף טקסט כהה על הזהב */
    box-shadow: 0 4px 15px rgba(196, 167, 125, 0.3);
}
/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
  background: var(--bg);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; color: var(--warm-white);
  margin-bottom: 12px;
}
.footer h5 {
  font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px; font-weight: 500;
}
.footer p, .footer a {
  display: block; color: var(--text-soft);
  font-size: 14px; margin-bottom: 8px;
  transition: color var(--base);
}
.footer a:hover { color: var(--gold); }
.copy {
  text-align: center; padding-top: 30px;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--muted); letter-spacing: 0.15em;
}

/* ---------- Sticky mobile bar ---------- */
.sticky-mobile {
  position: fixed; bottom: 0; inset-inline: 0; z-index: 50;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: rgba(15,13,10,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
}
.sticky-mobile a {
  text-align: center; padding: 14px;
  font-size: 12px; color: var(--text-soft);
  border-inline-start: 1px solid var(--line);
}
.sticky-mobile a:nth-child(2) { color: #25d366; }
.sticky-mobile a:last-child { background: var(--gold); color: var(--bg); }
@media (max-width: 900px) { .sticky-mobile { display: grid; } body { padding-bottom: 56px; } }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; bottom: 80px; inset-inline-end: 22px; z-index: 60;
  width: 56px; height: 56px;
  background: #25d366; color: white;
  display: grid; place-items: center; border-radius: 50%;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: transform var(--base);
}
.float-wa:hover { transform: scale(1.1); }
@media (max-width: 900px) { .float-wa { bottom: 76px; } }

/* ---------- Notification ---------- */
.notif {
  position: fixed; bottom: 24px; inset-inline-start: 24px; z-index: 55;
  background: rgba(15,13,10,0.95);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
  padding: 14px 18px; max-width: 280px;
  display: none; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  animation: slideUp 0.6s var(--ease);
}
.notif.visible { display: flex; }
.notif .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25d366;
  animation: pulse 2s ease-in-out infinite;
}
.notif b { display: block; color: var(--warm-white); font-size: 13px; font-weight: 500; }
.notif span { font-size: 11px; color: var(--muted); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes slideUp { from { transform: translateY(20px); opacity: 0; } }
@media (max-width: 900px) { .notif { bottom: 90px; max-width: 240px; } }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="250"] { transition-delay: 0.25s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="50"] { transition-delay: 0.05s; }
.reveal[data-delay="150"] { transition-delay: 0.15s; }
.reveal[data-delay="350"] { transition-delay: 0.35s; }

/* ---------- LTR overrides for English ---------- */
[dir="ltr"] body { font-family: 'Cormorant Garamond', 'Heebo', serif; }
[dir="ltr"] .display, [dir="ltr"] .display-md { font-family: 'Cormorant Garamond', serif; font-weight: 300; }


@media (max-width: 768px) {
  .hero-bg img {
    object-position: center 20%; /* משאיר את הפוקוס על מרכז-עליון של התמונה */
  }
}
