/* =========================================================
   R.B.I King Holdings — one-page site
   Palette: charcoal + gold (per brand deck)
   ========================================================= */
:root {
  --bg: #141416;
  --bg-alt: #1a1b1e;
  --bg-card: #1e1f23;
  --gold: #d4af6a;
  --gold-strong: #e3c27e;
  --gold-dim: rgba(212, 175, 106, 0.28);
  --text: #eae5da;
  --muted: #b3ac9e;
  --dark-veil: rgba(12, 12, 14, 0.55);
  /* Heebo — אושר ע"י הלקוח, בסגנון אלמוני שראה אצל רם-מוגרבי-ארדיטי */
  --font-body: "Heebo", system-ui, sans-serif;
  --font-display: "Heebo", system-ui, sans-serif;
  --font-latin: "Heebo", system-ui, sans-serif;
  --header-h: 76px;
  --radius: 4px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: min(1180px, 92%); margin-inline: auto; }

.ltr { direction: ltr; unicode-bidi: isolate; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.25; }

h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: var(--text); }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 60;
  height: var(--header-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(12,12,14,0.55), rgba(12,12,14,0));
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: rgba(15, 15, 17, 0.92);
  box-shadow: 0 1px 0 var(--gold-dim);
}
/* blur on a pseudo-element: backdrop-filter on the header itself would turn it
   into the containing block of the fixed mobile nav and break its off-screen state */
.site-header::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  backdrop-filter: blur(12px); opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none; z-index: -1;
}
.site-header.scrolled::after { opacity: 1; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark { height: 24px; width: auto; display: block; }
.brand-text {
  font-family: var(--font-latin);
  font-weight: 300;
  color: var(--gold-strong);
  font-size: 1.02rem;
  letter-spacing: 0.34em;
  white-space: nowrap;
}

.main-nav { display: flex; align-items: center; gap: clamp(0.9rem, 2.2vw, 1.9rem); }
.main-nav a {
  color: var(--text); text-decoration: none; font-size: 0.98rem; font-weight: 400;
  padding-block: 6px; position: relative; white-space: nowrap;
}
.main-nav a::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.nav-toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-carousel {
  position: absolute; inset: -4%;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
.hero-slide {
  position: absolute; inset: 0;
  background-position: center 30%; background-size: cover; background-repeat: no-repeat;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }
@keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.07); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center 42%, rgba(10,10,12,0.25) 0%, rgba(10,10,12,0.72) 78%),
    linear-gradient(to bottom, rgba(10,10,12,0.62), rgba(10,10,12,0.28) 40%, var(--bg) 97%);
}
.hero-content { position: relative; z-index: 2; padding-block: 18vh 12vh; }
.hero-mark {
  display: block; margin-inline: auto; margin-bottom: 1.7rem;
  height: clamp(58px, 9vw, 86px); width: auto;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.55));
}
.hero-heading { margin: 0; font-weight: normal; }
.hero-wordmark {
  display: block;
  font-family: var(--font-latin);
  font-weight: 300;
  color: var(--gold-strong);
  font-size: clamp(1.4rem, 4.2vw, 2.8rem);
  letter-spacing: 0.34em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55);
  white-space: nowrap;
}
.hero-rule {
  display: block;
  width: min(320px, 52vw); height: 1px; margin: 1.4rem auto;
  background: linear-gradient(to left, transparent, var(--gold), transparent);
}
.hero-title {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
  font-weight: 300; color: var(--text);
  letter-spacing: 0.14em; line-height: 1.25;
}
.hero-sub {
  margin-top: 0.9rem; color: var(--text);
  font-size: clamp(1rem, 1.8vw, 1.18rem); letter-spacing: 0.06em;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}
.hero-actions { margin-top: 2.6rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.scroll-cue {
  position: absolute; bottom: 80px; inset-inline: 0; margin-inline: auto;
  width: 44px; height: 44px; display: grid; place-items: center;
  color: var(--gold); opacity: 0.85; z-index: 2;
  animation: cueFloat 2.4s ease-in-out infinite;
}
@keyframes cueFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 1rem; font-weight: 500;
  padding: 12px 34px; border-radius: var(--radius);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.2s;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-strong), #b89050); color: #17150f; }
.btn-gold:hover { background: linear-gradient(135deg, #f0d296, var(--gold)); }
.btn-ghost { border-color: var(--gold-dim); color: var(--text); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-strong); }

/* ---------- stats ---------- */
.stats { border-block: 1px solid var(--gold-dim); background: var(--bg-alt); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-block: 2.6rem; gap: 1rem; text-align: center;
}
.stat { display: grid; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--gold-strong); font-weight: 500;
}
.stat-label { color: var(--muted); font-size: 0.95rem; }

/* ---------- sections ---------- */
.section { padding-block: clamp(4.5rem, 9vw, 7.5rem); }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.overline {
  color: var(--gold); letter-spacing: 0.32em; font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; margin-bottom: 0.7rem;
}

/* ---------- about ---------- */
.about-grid {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
/* כל פסקאות האודות באותו צבע — הבידול הוא בגודל בלבד */
.about-text p { color: var(--text); }
.about-text .lead { font-size: 1.16rem; font-weight: 400; margin-bottom: 1.2rem; }
.about-text p + p { margin-top: 1.1rem; }

.pillars {
  margin-top: 2.8rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.pillar {
  border-top: 1px solid var(--gold-dim); padding-top: 1.3rem;
}
.pillar-icon { width: 34px; height: 34px; color: var(--gold); margin-bottom: 0.8rem; }
.pillar h3 { font-size: 1.12rem; margin-bottom: 0.45rem; color: var(--text); }
.pillar p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

.founders {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
  padding: 16px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.founder { display: grid; gap: 0.6rem; margin: 0; }
.founder-img { overflow: hidden; border-radius: 2px; aspect-ratio: 4/5; }
.founder-img img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85); transition: transform 0.6s ease; }
.founder:hover .founder-img img { transform: scale(1.045); }
.founder figcaption { text-align: center; font-family: var(--font-display); font-size: 1.02rem; color: var(--gold-strong); }
.founders-caption { grid-column: 1 / -1; text-align: center; padding-block: 0.4rem 0.2rem; }
.founders-role { color: var(--muted); font-size: 0.88rem; letter-spacing: 0.08em; }

/* ---------- project cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.6vw, 2rem); }
.card-wide { grid-column: 1 / -1; }

.card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }

.card-media { position: relative; overflow: hidden; aspect-ratio: 16/8.5; }
.card-wide .card-media { aspect-ratio: 21/8; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.card:hover .card-media img { transform: scale(1.05); }

.chip {
  position: absolute; top: 14px; inset-inline-start: 14px;
  background: rgba(15, 15, 17, 0.78); backdrop-filter: blur(6px);
  color: var(--gold-strong); border: 1px solid var(--gold-dim);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  padding: 5px 14px; border-radius: 2px;
}
.chip-plan { color: #e8d9b8; }
.chip-line { position: static; background: transparent; backdrop-filter: none; align-self: center; white-space: nowrap; }

.card-body { padding: 1.5rem 1.7rem 1.7rem; }
.card-body h3 { font-size: 1.45rem; color: var(--text); }
.card-loc { color: var(--gold); font-size: 0.92rem; letter-spacing: 0.14em; margin: 0.25rem 0 0.75rem; }
.card-body > p:last-of-type { color: var(--muted); font-size: 0.98rem; }
.card-kicker { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.26em; margin-bottom: 0.6rem; }

.card-text { justify-content: center; position: relative; min-height: 300px; }
.card-text .card-body { padding: 2.2rem; }
.card-text::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 42%, rgba(212,175,106,0.05) 42.5%, transparent 43.5%),
    linear-gradient(115deg, transparent 55%, rgba(212,175,106,0.07) 55.5%, transparent 57%),
    linear-gradient(115deg, transparent 68%, rgba(212,175,106,0.04) 68.5%, transparent 70%);
}
.card-text .chip { position: static; display: inline-block; margin-top: 1.1rem; }

/* ---------- income assets ---------- */
.income-block { margin-top: clamp(2.5rem, 5vw, 4rem); }
.sub-title {
  font-size: 1.35rem; color: var(--text); margin-bottom: 1.4rem;
  display: flex; align-items: center; gap: 1rem;
}
.sub-title::after { content: ""; flex: 1; height: 1px; background: var(--gold-dim); }

.income-list { list-style: none; }
.income-list li {
  display: grid; grid-template-columns: 220px 1fr auto; gap: 1.4rem; align-items: center;
  padding-block: 1.15rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.income-list li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.income-name { display: grid; gap: 1px; }
.income-name strong { font-family: var(--font-display); font-weight: 500; font-size: 1.12rem; color: var(--text); }
.income-name span { color: var(--gold); font-size: 0.86rem; letter-spacing: 0.12em; }
.income-list p { color: var(--muted); font-size: 0.95rem; }

/* ---------- urban renewal strip ---------- */
.renewal-block { margin-top: clamp(2.5rem, 5vw, 4rem); }
.renewal-note { color: var(--muted); font-size: 0.95rem; margin: -0.6rem 0 1.3rem; }
.renewal-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(220px, 1fr);
  gap: 14px; overflow-x: auto; padding-bottom: 10px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin; scrollbar-color: var(--gold-dim) transparent;
}
.renewal-strip figure { scroll-snap-align: start; }
.renewal-strip img {
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
  border-radius: 2px; filter: saturate(0.9);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.renewal-strip figure:hover img { filter: saturate(1.05); transform: translateY(-3px); }
.renewal-strip figcaption { color: var(--muted); font-size: 0.85rem; padding-top: 0.5rem; }

/* ---------- divider ---------- */
.divider {
  position: relative; min-height: 46vh;
  background: url("images/divider-jerusalem.webp") center / cover no-repeat;
  display: flex; align-items: center;
}
.divider::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(12,12,14,0.78), rgba(12,12,14,0.78));
}
.divider-inner { position: relative; width: 100%; text-align: center; padding-block: 4rem; }
.divider-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  color: var(--gold-strong); letter-spacing: 0.12em;
}

/* ---------- personal ---------- */
.personal-inner { text-align: center; max-width: 640px; }
.personal-icon { width: 44px; height: 44px; color: var(--gold); margin-inline: auto; margin-bottom: 1.2rem; }
.personal-text { color: var(--muted); margin: 1.1rem 0 2rem; }

/* ---------- contact ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.contact-list { list-style: none; display: grid; gap: 1.5rem; }
.contact-list li { display: grid; gap: 0.15rem; }
.contact-label { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.22em; }
.contact-value { color: var(--text); font-size: 1.15rem; text-decoration: none; font-weight: 400; justify-self: start; }
a.contact-value:hover { color: var(--gold-strong); }
.contact-actions { margin-top: 2.2rem; display: flex; gap: 0.9rem; flex-wrap: wrap; }

.contact-form { display: grid; gap: 1.1rem; background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); padding: clamp(1.4rem, 3vw, 2.2rem); border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 0.4rem; }
.contact-form label span { font-size: 0.9rem; color: var(--muted); letter-spacing: 0.04em; }
.contact-form input, .contact-form textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); color: var(--text);
  font-family: var(--font-body); font-size: 1rem; padding: 11px 14px;
  transition: border-color 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.form-note { color: var(--muted); font-size: 0.82rem; text-align: center; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--gold-dim); background: #101012; }
.footer-inner { display: grid; gap: 1.1rem; justify-items: center; text-align: center; padding-block: 2.8rem; }
.footer-brand { font-size: 0.95rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; }
.footer-nav a { color: var(--muted); text-decoration: none; font-size: 0.92rem; }
.footer-nav a:hover { color: var(--gold-strong); }
.footer-copy { color: #8a8478; font-size: 0.85rem; }

/* ---------- modal ---------- */
.modal { position: fixed; inset: 0; z-index: 90; display: grid; place-items: center; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8, 8, 10, 0.72); backdrop-filter: blur(4px); }
.modal-card {
  position: relative; width: min(480px, 90vw);
  background: var(--bg-card); border: 1px solid var(--gold-dim);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 2.4rem 2.2rem; text-align: center;
  animation: modalIn 0.35s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.modal-card h3 { font-size: 1.5rem; margin-bottom: 0.7rem; }
.modal-card > p { color: var(--muted); font-size: 0.98rem; }
.modal-actions { margin-top: 1.8rem; display: grid; gap: 0.8rem; }
.modal-close {
  position: absolute; top: 10px; inset-inline-end: 14px;
  background: none; border: none; color: var(--muted);
  font-size: 1.7rem; cursor: pointer; line-height: 1;
}
.modal-close:hover { color: var(--gold-strong); }


/* ---------- reveal animation ----------
   מוסתר רק כש-JS פעיל (html.js) — בלי JS התוכן גלוי תמיד */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s ease, transform 0.8s ease; }
html.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-carousel { animation: none; }
  .hero-slide { transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .about-grid { grid-template-columns: 1fr; }
  .founders { max-width: 520px; }
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 80;
  }
  .nav-toggle span { width: 24px; height: 1.6px; background: var(--gold-strong); transition: transform 0.3s, opacity 0.3s; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

  .main-nav {
    position: fixed; inset: 0; z-index: 70;
    background: rgba(13, 13, 15, 0.97); backdrop-filter: blur(10px);
    flex-direction: column; justify-content: center; gap: 2rem;
    transform: translateY(-102%); transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .main-nav.open { transform: none; }
  .main-nav a { font-size: 1.3rem; }

  .hero-wordmark { letter-spacing: 0.22em; font-size: clamp(1.1rem, 5.4vw, 3rem); }
  .brand-text { font-size: 0.85rem; letter-spacing: 0.24em; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 2rem; }
  .cards { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 1.3rem; }
  .income-list li { grid-template-columns: 1fr; gap: 0.4rem; }
  .income-list .chip-line { justify-self: start; margin-top: 0.2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .card-wide .card-media { aspect-ratio: 16/9; }
  .card-media { aspect-ratio: 16/9.5; }
}

/* =========================================================
   מבנה רב-עמודי — נוסף בסבב המשוב של הלקוח
   ========================================================= */

/* ---------- כפתור בתפריט שנראה כמו קישור (אזור אישי) ---------- */
.nav-link-btn {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.98rem; font-weight: 400;
  color: var(--text); padding-block: 6px; position: relative;
  white-space: nowrap; line-height: inherit;
}
.nav-link-btn::after {
  content: ""; position: absolute; inset-inline: 0; bottom: 0;
  height: 1px; background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-link-btn:hover::after { transform: scaleX(1); }
.main-nav a.current::after { transform: scaleX(1); }
.main-nav a.current { color: var(--gold-strong); }
.footer-nav .nav-link-btn { color: var(--muted); font-size: 0.92rem; }
.footer-nav .nav-link-btn:hover { color: var(--gold-strong); }

/* ---------- נקודות הקרוסלה ---------- */
.hero-dots {
  position: absolute; bottom: 80px; inset-inline: 0; z-index: 3;
  display: flex; gap: 10px; justify-content: center;
}
.hero-dots button {
  width: 8px; height: 8px; padding: 0; border-radius: 50%;
  border: 1px solid var(--gold); background: transparent; cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hero-dots button[aria-selected="true"] { background: var(--gold); transform: scale(1.25); }

/* ---------- כותרת עמוד פנימי ---------- */
.page-hero {
  padding-block: calc(var(--header-h) + clamp(3rem, 7vw, 5.5rem)) clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--gold-dim);
  background: var(--bg-alt);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3rem); letter-spacing: 0.1em; color: var(--text);
}
.page-hero-sub { color: var(--muted); margin-top: 0.8rem; }

/* ---------- קריאה לפעולה בטיזר הפרויקטים ---------- */
.teaser-cta { margin-top: clamp(1.8rem, 4vw, 2.6rem); text-align: center; }

/* ---------- שורת צור קשר קבועה ---------- */
body { padding-bottom: 58px; }

.contact-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 65;
  height: 58px; display: flex; align-items: stretch;
  background: rgba(15, 15, 17, 0.94);
  border-top: 1px solid var(--gold-dim);
  backdrop-filter: blur(10px);
}
.cb-item {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--text); text-decoration: none; font-size: 0.95rem;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.25s, color 0.25s;
}
.cb-item:first-child { border-inline-start: none; }
.cb-item svg { color: var(--gold); transition: color 0.25s; }
.cb-item:hover { background: rgba(212, 175, 106, 0.08); color: var(--gold-strong); }
.cb-cta {
  background: linear-gradient(135deg, var(--gold-strong), #b89050);
  color: #17150f; font-weight: 500; max-width: 42%;
}
.cb-cta:hover { background: linear-gradient(135deg, #f0d296, var(--gold)); color: #17150f; }

@media (max-width: 520px) {
  .cb-item span { font-size: 0.88rem; }
  .cb-item:not(.cb-cta) span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
}

/* ---------- יישור "אזור אישי" לשאר הפריטים בתחתית ---------- */
.footer-nav { align-items: center; }
.footer-nav .nav-link-btn { padding: 0; line-height: inherit; }
.footer-nav .nav-link-btn::after { display: none; }

/* ---------- רצועת ירושלים בעמוד צור קשר ---------- */
.jer-band { position: relative; overflow: hidden; }
.jer-band img {
  width: 100%; height: clamp(200px, 30vw, 340px);
  object-fit: cover; object-position: center 42%;
  filter: saturate(0.92) brightness(0.92);
}
.jer-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(20,20,22,0.35), rgba(20,20,22,0) 35%, rgba(20,20,22,0.75)),
    linear-gradient(to left, rgba(20,20,22,0.4), transparent 30%, rgba(20,20,22,0.4));
}
.jer-caption {
  position: absolute; inset-inline: 0; bottom: clamp(0.9rem, 2.5vw, 1.6rem); z-index: 2;
  text-align: center; color: var(--gold-strong);
  font-size: clamp(0.85rem, 1.6vw, 1rem); letter-spacing: 0.16em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
}

/* ---------- בורר שפה (דגל + תווית) ---------- */
.lang-switch {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 5px 12px; border: 1px solid var(--gold-dim); border-radius: 2px;
  color: var(--text); text-decoration: none; font-size: 0.88rem;
  letter-spacing: 0.08em; white-space: nowrap;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.lang-switch:hover { border-color: var(--gold); color: var(--gold-strong); background: rgba(212, 175, 106, 0.07); }
.lang-switch::after { display: none; }
.lang-switch svg { border-radius: 1px; flex: none; box-shadow: 0 0 0 1px rgba(255,255,255,0.12); }

@media (max-width: 860px) {
  .lang-switch { font-size: 1.05rem; padding: 8px 18px; gap: 0.6rem; }
  .lang-switch svg { width: 28px; height: 19px; }
}

/* ---------- קרדיט הבונה ---------- */
.footer-credit { color: #8a8478; font-size: 0.8rem; letter-spacing: 0.06em; }
.footer-credit a {
  color: var(--muted); text-decoration: none;
  border-bottom: 1px solid transparent; transition: color 0.3s, border-color 0.3s;
}
.footer-credit a:hover { color: var(--gold-strong); border-bottom-color: var(--gold-dim); }
