/* ============================================================
   משרד עורכי דין שלמה מנחם — סגנון ראשי
   ============================================================ */

:root {
  --navy-900: #0b1524;
  --navy-800: #101d30;
  --navy-700: #16263e;
  --navy-600: #1f3452;
  --gold: #c9a45c;
  --gold-light: #e2c98f;
  --gold-dark: #a8853f;
  --ink: #1d2733;
  --ink-soft: #46525f;
  --bg: #f8f6f2;
  --bg-alt: #efece5;
  --white: #ffffff;
  --line: #e3ded4;
  --shadow: 0 10px 30px rgba(11, 21, 36, 0.08);
  --shadow-lg: 0 18px 50px rgba(11, 21, 36, 0.14);
  --radius: 10px;
  --max-w: 1180px;
  --font-serif: "Frank Ruhl Libre", "Times New Roman", serif;
  --font-sans: "Heebo", "Arial Hebrew", Arial, sans-serif;
}

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

/* ---------- נגישות ---------- */

.skip-link {
  position: absolute;
  top: -60px;
  inset-inline-start: 16px;
  z-index: 200;
  background: var(--navy-900);
  color: var(--gold-light);
  padding: 12px 22px;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: 0.01ms !important; }
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  direction: rtl;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- טיפוגרפיה ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-800);
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.35rem; }

p { color: var(--ink-soft); }

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.gold-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border: 0;
  margin: 22px 0 26px;
}

.gold-divider.center { margin-inline: auto; }

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.text-center { text-align: center; }

/* ---------- כפתורים ---------- */

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-900);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201, 164, 92, 0.35);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline-dark {
  border-color: var(--navy-700);
  color: var(--navy-700);
}

.btn-outline-dark:hover {
  background: var(--navy-800);
  color: var(--white);
}

/* ---------- כותרת עליונה ---------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: rgba(11, 21, 36, 0.55);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
  background: rgba(11, 21, 36, 0.96);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

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

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}

.logo .logo-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo .logo-name {
  font-family: "Suez One", var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo .logo-sub {
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  color: var(--gold-light);
  font-weight: 500;
  margin-top: 2px;
}

@media (max-width: 560px) {
  .logo .logo-name { font-size: 1.5rem; }
  .logo .logo-mark { width: 40px; height: 40px; }
}

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

.main-nav a {
  display: block;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 500;
  border-radius: 4px;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-light);
}

.main-nav .nav-cta {
  margin-inline-start: 10px;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  padding: 9px 22px;
}

.main-nav .nav-cta:hover {
  background: var(--gold);
  color: var(--navy-900);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(201, 164, 92, 0.12), transparent 55%),
    linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 14px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  padding: 160px 0 110px;
  max-width: 720px;
}

.hero h1 {
  color: var(--white);
}

.hero h1 .gold {
  color: var(--gold-light);
}

.hero .lead {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
  max-width: 560px;
  margin-top: 8px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.hero-strip {
  position: relative;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 64px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-strip .strip-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--gold-light);
}

.hero-strip .strip-item span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero פנימי (עמודים משניים) */

.page-hero {
  background:
    radial-gradient(ellipse at 80% 10%, rgba(201, 164, 92, 0.14), transparent 50%),
    linear-gradient(160deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 165px 0 70px;
}

.page-hero h1 { color: var(--white); }

.page-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
}

.breadcrumbs {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.breadcrumbs a:hover { color: var(--gold-light); }

/* ---------- מקטעים ---------- */

.section { padding: 90px 0; }

.section.alt { background: var(--bg-alt); }

.section.dark {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.section.dark h2, .section.dark h3 { color: var(--white); }

.section.dark p { color: rgba(255, 255, 255, 0.78); }

.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- כרטיסי תחומי עיסוק ---------- */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.card .card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.card .card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.6;
}

.card h3 { margin-bottom: 12px; }

.card p { flex: 1; }

.card .card-link {
  margin-top: 22px;
  font-weight: 600;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card .card-link:hover { color: var(--navy-800); }

/* ---------- רשימות יתרון / שירותים ---------- */

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-inline-start: 34px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2l-3.5-3.5L4 14.2 9 19.2 20 8.2l-1.5-1.5z"/></svg>') center/contain no-repeat;
}

.section.dark .check-list li { color: rgba(255,255,255,0.82); }

/* ---------- שני טורים ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col .col-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201,164,92,0.25), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-col .col-media svg {
  width: 210px;
  height: 210px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 0.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.two-col .col-media svg .accent { stroke: var(--gold); opacity: 0.45; }

.site-footer .footer-logo {
  font-family: "Suez One", var(--font-serif);
  font-weight: 400;
}

/* ---------- ערכים / למה אנחנו ---------- */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px;
}

.value-item {
  border-inline-start: 3px solid var(--gold);
  padding-inline-start: 20px;
}

.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.section.dark .value-item h3 { color: var(--gold-light); }

/* ---------- תהליך עבודה ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  counter-reset: step;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.step h3 { font-size: 1.1rem; margin-bottom: 8px; }

/* ---------- שאלות נפוצות ---------- */

.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--navy-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-dark);
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body { padding: 0 24px 22px; }

/* ---------- פס קריאה לפעולה ---------- */

.cta-banner {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 164, 92, 0.18), transparent 55%),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 { color: var(--white); margin-bottom: 8px; }

.cta-banner p { color: rgba(255, 255, 255, 0.78); max-width: 520px; }

/* ---------- טופס יצירת קשר ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.18);
}

.contact-form textarea { min-height: 130px; resize: vertical; }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.contact-info { display: grid; gap: 26px; }

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-item .info-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-item .info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.7;
}

.info-item h3 { font-size: 1.05rem; margin-bottom: 2px; }

.info-item a:hover { color: var(--gold-dark); }

/* ---------- פוטר ---------- */

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
}

.site-footer h4 {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.site-footer .footer-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}

.site-footer .footer-sub {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.site-footer ul { list-style: none; display: grid; gap: 10px; }

.site-footer ul a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.5);
}

.disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
  max-width: 460px;
}

/* ---------- אנימציית הופעה ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- כפתור וואטסאפ צף ---------- */

.float-wa {
  position: fixed;
  bottom: 26px;
  inset-inline-start: 26px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.float-wa:hover { transform: scale(1.08); }

.float-wa svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- רספונסיביות ---------- */

@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }

  .main-nav {
    position: fixed;
    top: 78px;
    inset-inline: 0;
    background: rgba(