/* ==========================================================================
   Azmaimoon&Co. | גיליון סגנון ראשי
   סקשן 1: כותרת עליונה, ניווט, בורר שפה, Hero, רצועת משרדים
   כל המרווחים בנויים על תכונות לוגיות כדי שהיפוך RTL/LTR יעבוד לבד.
   ========================================================================== */

/* ---------- 1. אסימוני עיצוב ---------- */
:root {
  /* ==========================================================
     הצבעים מגיעים מ-C:\Users\User1\Design\tokens.json, מקור האמת
     היחיד, ותואמים לדפי הנחיתה. הזהב מחולק לשלוש דרגות לפי
     ניגודיות, ואין להחליף ביניהן:
       --gold       גרפיקה בלבד. נכשל AA לטקסט על רקע בהיר
       --gold-rule  קו שנושא מידע, עובר 1.4.11
       --gold-deep  גרסת הטקסט של הזהב על רקע בהיר, עובר AA
       --gold-light הזהב לטקסט על רקע כהה
     ========================================================== */
  --gold:        #B29D6D;
  --gold-rule:   #A08A54;
  --gold-deep:   #7F6D43;
  --gold-light:  #C9B183;
  --gold-soft:   #F4F0E6;

  /* כהה. שמות navy נשמרו כדי לא לשבור את כל הגיליון, אך הגוון פחמי */
  --navy:        #1E1C16;
  --navy-deep:   #14130F;
  --dark-text:   #F2F0E9;
  --dark-muted:  #ADA99C;
  --dark-border: #3B372C;

  --ink:         #171715;
  --ink-soft:    #6C6960;
  --line:        #ECEBE9;
  --cream:       #F5F5F4;
  --white:       #FFFFFF;

  --radius:      4px;
  --radius-lg:   10px;
  --shadow-sm:   0 1px 3px rgba(20, 19, 15, .08);
  --shadow-md:   0 6px 24px rgba(20, 19, 15, .10);
  --shadow-lg:   0 18px 48px rgba(20, 19, 15, .16);

  --header-h:    88px;
  --wrap:        1180px;
  --ease:        cubic-bezier(.22, .61, .36, 1);

  --font-he: "Assistant", "Heebo", Arial, "Segoe UI", sans-serif;
  --font-ar: "Noto Kufi Arabic", "Cairo", Arial, sans-serif;
  --font-en: "Barlow", "Segoe UI", Arial, sans-serif;
  --font:    var(--font-he);
}

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

/* ---------- 2. איפוס ובסיס ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-block-start: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.25; font-weight: 700; }
p  { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s var(--ease);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.wrap {
  width: min(100% - 48px, var(--wrap));
  margin-inline: auto;
}

/* מבודד רצף לטיני בתוך משפט עברי, כדי שסימני פיסוק סמוכים לא יזוזו */
.ltr { direction: ltr; unicode-bidi: isolate; }

.skip-link {
  position: absolute;
  inset-block-start: -100px;
  inset-inline-start: 16px;
  z-index: 200;
  background: var(--navy);
  color: var(--dark-text);
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: inset-block-start .2s var(--ease);
}
.skip-link:focus { inset-block-start: 16px; }

/* מוצג רק לקוראי מסך */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* ---------- 3. כותרת עליונה ---------- */
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-block-end: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 52px;
  width: auto;
  transition: transform .25s var(--ease);
}
.logo:hover img { transform: scale(1.03); }

/* ניווט */
.nav-cluster {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-list a {
  display: block;
  padding: 9px 15px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius);
  position: relative;
  white-space: nowrap;
}

.nav-list a::after {
  content: "";
  position: absolute;
  inset-block-end: 3px;
  inset-inline: 15px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: var(--origin, right);
  transition: transform .28s var(--ease);
}
html[dir="ltr"] .nav-list a::after { --origin: left; }
.nav-list a:hover::after,
.nav-list a[aria-current="true"]::after { transform: scaleX(1); }
.nav-list a:hover { color: var(--navy); }

/* בורר שפה */
.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: var(--cream);
}

.lang-switch button {
  font: inherit;
  font-size: 13.5px;
  font-weight: 700;
  padding: 5px 13px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
/* כל כפתור נשאר בפונט של שפתו, גם כשהאתר במצב שפה אחרת */
.lang-switch button[lang="he"] { font-family: var(--font-he); }
.lang-switch button[lang="ar"] { font-family: var(--font-ar); }
.lang-switch button[lang="en"] { font-family: var(--font-en); }

.lang-switch button:hover { color: var(--navy); }
.lang-switch button[aria-pressed="true"] {
  background: var(--navy);
  color: var(--dark-text);
}

/* כפתור המבורגר */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 21px; height: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; inset-inline-start: 0; }
.nav-toggle span::before { inset-block-start: -7px; }
.nav-toggle span::after  { inset-block-start: 7px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 4. Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy-deep);
  color: var(--dark-text);
  overflow: hidden;
}

/* שכבת רקע: תמונת קו רקיע. עד לקבלת צילום אמיתי, SVG מובנה משמש מציין מקום */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  /* מציין מקום עד לקבלת צילום אמיתי. נתיבים בתוך משתנה CSS נפתרים
     יחסית לגיליון הסגנון, ולכן התמונה מוגדרת כאן ולא ב-HTML. */
  background-image: url("../img/hero-skyline.svg");
  background-size: cover;
  background-position: center 100%;
  opacity: .85;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 8%, rgba(178, 157, 109, .18), transparent 58%),
    linear-gradient(180deg, rgba(20, 19, 15, .82) 0%, rgba(20, 19, 15, .62) 46%, rgba(20, 19, 15, .78) 100%);
}

/* שתי עמודות: טקסט מצד אחד, דמות חתוכה מהצד השני */
.hero-inner {
  padding-block-start: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 560px);
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
}

.hero-copy {
  padding-block-end: clamp(36px, 4vw, 56px);
  max-width: 640px;
}

/* דיוקן גדול, חזה ומעלה, שנשען על הקו התחתון של הסקשן במקום לרחף בחלל.
   הגובה הוא שקובע, לא הרוחב, כדי שהדמות לא תמתח את הסקשן. */
.hero-figure {
  position: relative;
  align-self: end;
  justify-self: center;
  line-height: 0;
}
/* הילת זהב עדינה מאחורי הדיוקן */
.hero-figure::before {
  content: "";
  position: absolute;
  inset-inline: -8%;
  inset-block: 8% 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 40%, rgba(178, 157, 109, .30), rgba(178, 157, 109, .06) 50%, transparent 72%);
}
/* צילום סטודיו על רקע פחם, באותו גוון של הסקשן. מסכה רדיאלית מדהה את
   השוליים לשקיפות, כך שהמלבן נבלע ברקע ונראה כדיוקן שצולם במקום. */
.hero-figure img {
  height: clamp(520px, 74vh, 700px);
  width: auto;
  max-width: 100%;
  display: block;
  -webkit-mask-image:
    radial-gradient(ellipse 58% 76% at 50% 46%, #000 42%, transparent 96%),
    linear-gradient(180deg, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(ellipse 58% 76% at 50% 46%, #000 42%, transparent 96%),
    linear-gradient(180deg, #000 82%, transparent 100%);
  mask-composite: intersect;
  filter: contrast(1.03) saturate(1.02);
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-block-end: 18px;
}
/* ריווח אותיות רחב מתאים ללטינית בלבד */
html[lang="he"] .hero-eyebrow,
html[lang="ar"] .hero-eyebrow { letter-spacing: .1em; font-size: 14px; }

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.9rem);
  letter-spacing: -.01em;
}

/* קו הזהב מתחת לשם */
.hero h1::after {
  content: "";
  display: block;
  width: 84px; height: 3px;
  background: var(--gold);
  margin-block-start: 22px;
}

.hero-credentials {
  margin-block-start: 22px;
  font-size: clamp(.95rem, 2vw, 1.08rem);
  font-weight: 600;
  color: var(--gold-soft);
}

.hero-tagline {
  margin-block-start: 14px;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 300;
  color: rgba(242, 240, 233, .92);
}

.hero-lead {
  margin-block-start: 20px;
  font-size: 1.02rem;
  color: rgba(242, 240, 233, .74);
  max-width: 60ch;
}

.hero-actions {
  margin-block-start: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- 5. כפתורים ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease),
              color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 6px 20px rgba(178, 157, 109, .32);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-ghost {
  background: transparent;
  color: var(--dark-text);
  border-color: rgba(242, 240, 233, .42);
}
.btn-ghost:hover { background: rgba(242, 240, 233, .1); border-color: var(--white); }

/* החץ מצויר לכיוון שמאל, ומתהפך אוטומטית ב-LTR.
   scale היא תכונה עצמאית ולכן אינה מתנגשת עם ה-transform שבריחוף. */
.btn .arrow { transition: transform .2s var(--ease); }
html[dir="ltr"] .btn .arrow { scale: -1 1; }
html[dir="rtl"] .btn:hover .arrow { transform: translateX(-4px); }
html[dir="ltr"] .btn:hover .arrow { transform: translateX(-4px); }

/* ---------- 6. נתוני מפתח ב-Hero ---------- */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-block-start: 1px solid rgba(242, 240, 233, .14);
  padding-block: 28px 34px;
  text-align: center;
}

.hero-stats .num {
  display: block;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--gold-light);
}
.hero-stats .txt {
  font-size: .88rem;
  color: rgba(242, 240, 233, .68);
}

/* ---------- 7. רצועת משרדים ---------- */
.offices-strip {
  background: var(--cream);
  border-block-end: 1px solid var(--line);
}

.offices-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 44px;
  padding-block: 20px;
}

.offices-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.offices-strip svg { flex: none; color: var(--gold); }

/* ---------- 8. מערכת סקשנים ---------- */
.section { padding-block: clamp(64px, 8vw, 104px); }
.section-light { background: var(--cream); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-block-end: clamp(40px, 5vw, 60px);
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-block-end: 12px;
}
html[lang="he"] .eyebrow,
html[lang="ar"] .eyebrow { letter-spacing: .09em; font-size: 14px; }

.section-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--navy);
}
.section-head h2::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  background: var(--gold);
  margin: 18px auto 0;
}

.section-lead {
  margin-block-start: 20px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ---------- 9. כרטיסי תחומי עיסוק ---------- */
/* flex ולא grid, כדי שהשורה האחרונה החסרה תתמרכז ולא תיצמד לצד אחד */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.area-card {
  display: flex;
  flex: 1 1 320px;
  max-width: 372px;
}

.area-card > a {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 34px 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease),
              border-color .28s var(--ease);
}

/* פס זהב עליון שנפתח בריחוף */
.area-card > a::before {
  content: "";
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: var(--origin, right);
  transition: transform .32s var(--ease);
}
html[dir="ltr"] .area-card > a::before { --origin: left; }

.area-card > a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.area-card > a:hover::before { transform: scaleX(1); }

.area-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--navy);
  margin-block-end: 20px;
  transition: background .28s var(--ease), color .28s var(--ease);
}
.area-icon svg { width: 27px; height: 27px; }
.area-card > a:hover .area-icon { background: var(--navy); color: var(--gold-light); }

.area-card h3 {
  font-size: 1.28rem;
  color: var(--navy);
  margin-block-end: 12px;
}

.area-card p {
  font-size: .97rem;
  color: var(--ink-soft);
  line-height: 1.85;
  flex: 1;
}

.area-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-block-start: 22px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold-deep);
}
.area-more .arrow {
  width: 16px; height: 16px;
  transition: transform .22s var(--ease);
}
html[dir="ltr"] .area-more .arrow { scale: -1 1; }
.area-card > a:hover .area-more .arrow { transform: translateX(-4px); }

/* ---------- 10. אודות המשרד ---------- */
.section-dark {
  background: var(--navy-deep);
  color: rgba(242, 240, 233, .82);
}
.section-dark .eyebrow { color: var(--gold-light); }
.section-dark h2, .section-dark h3 { color: var(--dark-text); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

/* פורטרט. התמונה עגולה על רקע שקוף, ולכן היא יושבת ישירות על הרקע הכהה
   והכיתוב מתחתיה ולא עליה. */
.about-portrait {
  position: relative;
  margin: 0;
  max-width: 440px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  box-shadow: 0 0 0 6px rgba(178, 157, 109, .08), var(--shadow-lg);
}
/* קו זהב דק בתוך המסגרת, כמו פספרטו */
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(201, 177, 131, .45);
  border-radius: 6px;
  pointer-events: none;
}
.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 12%;
}
.about-portrait figcaption { margin-block-start: 18px; }

.about-portrait figcaption strong {
  display: block;
  font-size: 1.3rem;
  color: var(--dark-text);
}
.about-portrait figcaption span {
  display: block;
  margin-block-start: 6px;
  font-size: .9rem;
  color: var(--gold-light);
}

/* גוף הטקסט */
.about-body h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-block-end: 26px;
}
.about-body h2::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  background: var(--gold);
  margin-block-start: 18px;
}

.about-text p + p { margin-block-start: 18px; }
.about-text p { font-size: 1.02rem; line-height: 1.9; }

/* ציטוט מודגש */
.about-quote {
  margin: 34px 0 0;
  padding: 24px 26px;
  background: rgba(178, 157, 109, .09);
  border-inline-start: 3px solid var(--gold);
  border-radius: var(--radius);
}
.about-quote h3 {
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-block-end: 8px;
}
.about-quote p { font-size: 1rem; line-height: 1.85; color: rgba(242, 240, 233, .9); }

/* השכלה והסמכות */
.about-creds { margin-block-start: 34px; }
.about-creds h3 {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242, 240, 233, .55);
  margin-block-end: 14px;
}
.about-creds ul {
  display: grid;
  gap: 10px;
}
.about-creds li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .98rem;
  font-weight: 600;
  color: rgba(242, 240, 233, .9);
}
.about-creds svg {
  flex: none;
  width: 18px; height: 18px;
  margin-block-start: 5px;
  color: var(--gold);
}

/* ---------- 11. ציר זמן, ניסיון מקצועי ---------- */
.timeline {
  position: relative;
  max-width: 860px;
  margin-inline: auto;
  padding-inline-start: 34px;
}

/* הקו האנכי */
.timeline::before {
  content: "";
  position: absolute;
  inset-block: 10px;
  inset-inline-start: 7px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-soft));
}

.tl-item {
  position: relative;
  padding-block-end: 20px;
}
.tl-item:last-child { padding-block-end: 0; }

/* הנקודה על הקו */
.tl-item::before {
  content: "";
  position: absolute;
  inset-block-start: 26px;
  inset-inline-start: -34px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--cream);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px var(--cream);
}
.tl-item.is-current::before {
  background: var(--gold);
  border-color: var(--navy);
}

.tl-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}
.tl-item:hover .tl-card {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.tl-item.is-current .tl-card {
  border-color: var(--gold);
  background: linear-gradient(180deg, #FBFAF6, var(--white));
}

.tl-period {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-block-end: 6px;
}

.tl-badge {
  font-size: .72rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--dark-text);
}

.tl-card h3 {
  font-size: 1.12rem;
  color: var(--navy);
}

.tl-org {
  margin-block-start: 4px;
  font-size: .95rem;
  color: var(--ink-soft);
}

/* תת-שורות בכרטיס ציר הזמן */
.tl-sub {
  margin-block-start: 12px;
  padding-block-start: 12px;
  border-block-start: 1px dashed var(--line);
  display: grid;
  gap: 7px;
}
.tl-sub li {
  position: relative;
  padding-inline-start: 16px;
  font-size: .91rem;
  color: var(--ink-soft);
}
.tl-sub li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- 12. יצירת קשר ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

/* טופס */
.contact-form {
  background: rgba(242, 240, 233, .05);
  border: 1px solid rgba(242, 240, 233, .12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.contact-form h3 {
  font-size: 1.25rem;
  margin-block-end: 22px;
}

.field { margin-block-end: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field label {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(242, 240, 233, .8);
  margin-block-end: 7px;
}
.field label b { color: var(--gold-light); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--dark-text);
  background: rgba(10, 9, 7, .55);
  border: 1px solid rgba(242, 240, 233, .18);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 118px; line-height: 1.7; }

.field input::placeholder,
.field textarea::placeholder { color: rgba(242, 240, 233, .38); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: rgba(10, 9, 7, .8);
}
.field input:user-invalid,
.field textarea:user-invalid { border-color: #e08a7a; }

/* הרשימה הנפתחת נצבעת על ידי מערכת ההפעלה, ולכן האפשרויות מוגדרות בנפרד */
.field select option { background: var(--navy-deep); color: var(--dark-text); }

.form-error {
  margin-block-end: 16px;
  font-size: .92rem;
  font-weight: 600;
  color: #f0a596;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 4px;
}

.btn-wa {
  background: #25d366;
  color: #06301a;
}
.btn-wa:hover { background: #3ee07b; }

.form-note {
  margin-block-start: 18px;
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(242, 240, 233, .55);
}

/* עמודת פרטי הקשר */
.contact-block + .contact-block { margin-block-start: 30px; }

.contact-block h3 {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-block-end: 16px;
}
html[lang="he"] .contact-block h3,
html[lang="ar"] .contact-block h3 { letter-spacing: .06em; font-size: .92rem; }

.contact-list { display: grid; gap: 16px; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: .98rem;
}
.contact-list svg {
  flex: none;
  width: 19px; height: 19px;
  margin-block-start: 3px;
  color: var(--gold);
}
.contact-list b {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(242, 240, 233, .5);
  margin-block-end: 2px;
}
.contact-list a { color: var(--dark-text); font-weight: 600; }
.contact-list a:hover { color: var(--gold-light); }

/* ---------- 13. פוטר ---------- */
.site-footer {
  background: #0E0D0A;
  color: rgba(242, 240, 233, .62);
  padding-block: clamp(44px, 5vw, 64px) 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 3fr) minmax(0, 3fr);
  gap: clamp(28px, 4vw, 52px);
  padding-block-end: 34px;
  border-block-end: 1px solid rgba(242, 240, 233, .1);
}

.footer-brand img {
  height: 46px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
  margin-block-end: 18px;
}
.footer-credentials {
  font-size: .92rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-block-end: 10px;
}
.footer-tagline { font-size: .92rem; line-height: 1.8; }

.footer-col h3 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark-text);
  margin-block-end: 16px;
}
html[lang="he"] .footer-col h3,
html[lang="ar"] .footer-col h3 { letter-spacing: .04em; font-size: .95rem; }

.footer-col ul { display: grid; gap: 10px; }
.footer-legal-title { margin-block-start: 24px; }
.footer-col a { font-size: .94rem; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-block-start: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.footer-disclaimer {
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(242, 240, 233, .42);
  max-width: 62ch;
}
.footer-rights {
  display: flex;
  gap: 10px;
  font-size: .82rem;
  color: rgba(242, 240, 233, .42);
  white-space: nowrap;
}

/* ---------- 14. רספונסיביות ---------- */
@media (max-width: 980px) {
  :root { --header-h: 74px; }

  .nav-toggle { display: grid; }

  /* נעגן את המגירה לכותרת עצמה ולא לגובה קבוע, כדי שלא ייווצר רווח */
  .nav-cluster {
    position: absolute;
    inset-block-start: 100%;
    inset-inline: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-block-end: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 12px 24px 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .25s var(--ease), opacity .25s var(--ease), visibility .25s;
  }
  .nav-cluster.is-open { transform: translateY(0); opacity: 1; visibility: visible; }

  .nav-list { flex-direction: column; align-items: stretch; }
  .nav-list a { padding: 14px 4px; border-block-end: 1px solid var(--line); border-radius: 0; }
  .nav-list a::after { display: none; }

  .lang-switch { align-self: center; margin-block-start: 18px; }

  .logo img { height: 44px; }

  /* הדמות ב-Hero קטנה מדי מכדי להחזיק את הפריסה, ולכן חוזרים לעמודה אחת */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { display: none; }
  .hero-copy { max-width: none; padding-block-end: clamp(32px, 5vw, 48px); }

  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-portrait { max-width: 420px; margin-inline: auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 32px); }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .offices-strip ul { flex-direction: column; align-items: flex-start; gap: 10px; }
  .areas-grid { gap: 18px; }
  .area-card { max-width: none; }
  .timeline { padding-inline-start: 26px; }
  .tl-item::before { inset-inline-start: -26px; width: 13px; height: 13px; }
  .tl-card { padding: 16px 18px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .area-card > a { padding: 28px 22px 24px; }
}

/* ---------- 15. עמודי תוכן משפטי ---------- */
.legal-header {
  background: var(--white);
  border-block-end: 1px solid var(--line);
}
.legal-header .wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-header img { height: 48px; width: auto; }
.legal-header a.back {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
}
.legal-header a.back:hover { color: var(--gold); }

.legal-main { padding-block: clamp(40px, 5vw, 64px) clamp(56px, 7vw, 88px); }

.legal-doc {
  max-width: 820px;
  margin-inline: auto;
}

.legal-doc > h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--navy);
}
.legal-doc > h1::after {
  content: "";
  display: block;
  width: 64px; height: 3px;
  background: var(--gold);
  margin-block-start: 18px;
}

.legal-updated {
  margin-block-start: 16px;
  font-size: .9rem;
  color: var(--ink-soft);
}

.legal-doc h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-block: 38px 12px;
  padding-block-end: 8px;
  border-block-end: 1px solid var(--line);
}

.legal-doc h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-block: 22px 8px;
}

.legal-doc p { margin-block-start: 12px; line-height: 1.9; }

.legal-doc ul.bullets {
  margin-block-start: 12px;
  display: grid;
  gap: 8px;
}
.legal-doc ul.bullets li {
  position: relative;
  padding-inline-start: 20px;
  line-height: 1.85;
}
.legal-doc ul.bullets li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 12px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.legal-doc table {
  width: 100%;
  margin-block-start: 16px;
  border-collapse: collapse;
  font-size: .96rem;
}
.legal-doc th,
.legal-doc td {
  border: 1px solid var(--line);
  padding: 11px 14px;
  text-align: start;
  vertical-align: top;
}
.legal-doc th { background: var(--cream); color: var(--navy); font-weight: 700; }

.legal-note {
  margin-block-start: 20px;
  padding: 18px 20px;
  background: var(--cream);
  border-inline-start: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: .96rem;
  line-height: 1.85;
}

.legal-contact {
  margin-block-start: 16px;
  padding: 20px 22px;
  background: var(--navy-deep);
  color: rgba(242, 240, 233, .82);
  border-radius: var(--radius-lg);
}
.legal-contact a { color: var(--gold-light); font-weight: 600; }
.legal-contact p { margin-block-start: 6px; }

/* ---------- 16. העדפות נגישות ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}


/* ===== 13.09.2026: תמונות בכרטיסי תחומים, דרגה בפתיח, מקטע תוצאות ===== */
.area-img { width: 100%; height: auto; aspect-ratio: 16 / 9; margin: 0 0 18px; border-radius: 8px; object-fit: cover; object-position: center; display: block; filter: saturate(.85); }
.area-card > a:hover .area-img { filter: saturate(1); }
.hero-rank { margin: 6px 0 14px; font-size: .95rem; letter-spacing: .02em; color: var(--gold-light); }
.about-service { font-weight: 600; }
.proof { background: var(--navy-deep); color: var(--dark-text); }
.proof .eyebrow { color: var(--gold-light); }
.proof h2 { color: var(--dark-text); }
.proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; margin-block-start: 26px; }
.proof-card { border: 1px solid rgba(201,177,131,.35); border-inline-start: 4px solid var(--gold-light); border-radius: var(--radius-lg); padding: 26px 28px; background: rgba(255,255,255,.03); }
.proof-num { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; color: var(--gold-light); margin: 0 0 10px; line-height: 1.15; }
.proof-txt { margin: 0; color: var(--dark-text); opacity: .92; line-height: 1.6; }
.proof-note { margin-block-start: 18px; font-size: .9rem; opacity: .7; }

.about-steps-title { margin-block: 22px 8px; font-size: 1.05rem; color: var(--gold-light); }
.about-steps { counter-reset: st; list-style: none; padding: 0; margin: 0 0 6px; display: grid; gap: 10px; }
.about-steps li { counter-increment: st; position: relative; padding-inline-start: 44px; line-height: 1.55; }
.about-steps li::before { content: counter(st); position: absolute; inset-inline-start: 0; top: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--gold-light); color: var(--gold-light); display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
