/* build:202607261900 */
/* ============================================================
   שי מערכות חכמות — Production CSS · DARK LUXURY THEME
   Design System · Layout · Components · Utilities
   ============================================================ */

/* ── 1. GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── 2. DESIGN TOKENS ── */
:root {
  /* ── Dark luxury palette (dominant) ── */
  --bg:          #101114;   /* page background — near-black graphite */
  --bg-2:        #15161A;   /* subtle alt band */
  --surface:     #191B20;   /* cards / panels on dark */
  --surface-2:   #21242B;   /* card hover */
  --cream:       #F0F1F3;   /* primary text on dark (cool off-white) */
  --cream-soft:  rgba(240,241,243,.66);  /* secondary text */
  --cream-mute:  rgba(240,241,243,.56);  /* labels, meta — AA on --bg */
  --gold:        #9E8A63;   /* accent — muted bronze (lines & details) */
  --gold-lt:     #B8A47C;   /* bronze hover */
  --gold-ring:   rgba(158,138,99,.32);   /* focus ring */
  --line:        rgba(240,241,243,.10);  /* borders on dark */
  --line-soft:   rgba(240,241,243,.06);  /* faint dividers */

  /* ── Light island (contact form card) ── */
  --paper:       #F4F4F2;   /* light card background */
  --paper-2:     #FFFFFF;   /* input background */
  --ink:         #16171A;   /* dark text on light */
  --ink-soft:    #3B3D42;   /* secondary dark text */
  --ink-mute:    #6A6D73;   /* labels / placeholders */
  --paper-border:#D8D9DB;   /* borders on light */

  --white:       #FFFFFF;
  --error:       #B91C1C;
  --error-bg:    #FEF2F2;
  --success:     #15803D;

  /* Typography */
  --font-he: 'Heebo', sans-serif;
  --font-en: 'Inter', sans-serif;

  /* Type Scale */
  --text-xs:   0.7rem;
  --text-sm:   0.8rem;
  --text-base: 0.9375rem;
  --text-md:   1.0625rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  clamp(2.6rem, 5.4vw, 4.4rem); /* hero */

  /* Spacing Scale (4px base) */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Border Radius */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;

  /* Shadows (dark theme — subtle) */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.3);
  --shadow-md: 0 10px 40px rgba(0,0,0,.45);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 220ms ease;

  /* Layout */
  --max-w:        1160px;
  --section-py:   var(--sp-20);
  --container-px: var(--sp-10);
  --nav-h:        68px;
}

/* ── 3. RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-he);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* LTR override for English */
body.lang-en,
body.lang-en * { font-family: var(--font-en); }
body.lang-en { direction: ltr; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

::selection { background: var(--gold); color: var(--bg); }

/* Subtle film grain — adds depth, prevents banding on dark */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Accessibility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -100px; right: var(--sp-4);
  background: var(--gold); color: var(--bg);
  padding: var(--sp-3) var(--sp-5); font-weight: 700;
  z-index: 9999; transition: top var(--t-base);
}
.skip-link:focus { top: var(--sp-4); }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Accessibility modes */
body.high-contrast { filter: contrast(1.6) brightness(1.05); }
html.large-text,
body.large-text { font-size: 19px; }
body.no-motion *,
body.no-motion *::before,
body.no-motion *::after {
  animation: none !important;
  transition: none !important;
}

/* ── 4. LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.section {
  padding-block: var(--section-py);
}
/* All sections dark — subtle tonal variation for rhythm */
.section--alt   { background: var(--bg-2); }
.section--dkr   { background: var(--bg-2); }
.section--dark  { background: var(--bg); color: var(--cream); }
.section--white { background: var(--bg); }

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-14);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.divider-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

/* ── 5. TYPOGRAPHY ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.heading-xl {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--cream);
}
.heading-xl strong { font-weight: 900; display: block; color: var(--gold); }

.heading-lg {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: var(--sp-3);
}
.section--dark .heading-lg { color: var(--cream); }

.heading-md {
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: var(--sp-2);
}

.body-lg {
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.75;
  color: var(--cream-soft);
}
.body-base {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.72;
  color: var(--cream-soft);
}
.body-md {
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.75;
  color: var(--cream-soft);
}
.body-sm {
  font-size: var(--text-sm);
  font-weight: 400;
  line-height: 1.7;
  color: var(--cream-soft);
}
.body-xs {
  font-size: var(--text-xs);
  color: var(--cream-mute);
  line-height: 1.6;
}

/* Dark section overrides (kept for compatibility) */
.section--dark .body-lg,
.section--dark .body-base { color: var(--cream-soft); }
.section--dark .body-sm   { color: var(--cream-mute); }

.text-center { text-align: center; }
.text-center .body-lg,
.text-center .body-base { margin-inline: auto; max-width: 560px; }

/* ── 6. SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: var(--sp-6);
  margin-bottom: var(--sp-14);
  border-bottom: 1px solid var(--line);
}
.section-header--stacked {
  flex-direction: column;
  text-align: center;
  align-items: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: var(--sp-12);
}
.section-header--stacked .eyebrow { margin-inline: auto; }

/* ── 7. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-xs);
  transition: background var(--t-fast), color var(--t-fast),
              border-color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  border: 1px solid transparent;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* Primary action — light filled (professional, high-contrast) */
.btn--dark {
  background: var(--cream);
  color: var(--bg);
  border-color: var(--cream);
}
.btn--dark:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}

/* Outline — secondary action (on dark) */
.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Ghost — for dark backgrounds */
.btn--ghost {
  background: transparent;
  color: var(--cream-soft);
  border-color: var(--line);
}
.btn--ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Cream — light button on dark */
.btn--cream {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: var(--white);
  border-color: var(--white);
}

.btn--full { width: 100%; justify-content: center; }

/* ── 8. CARD ── */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-sm);
}
.card--service {
  background: var(--surface);
  transition: background var(--t-base);
}
.card--service:hover { background: var(--surface-2); }

.card--testimonial {
  background: var(--surface);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
}

/* ── 9. GOLD RULE ── */
.gold-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-bottom: var(--sp-8);
}

/* ── 10. STAT ── */
.stat__num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat__label {
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-top: var(--sp-2);
}

/* ── 11. TRUST BAR ── */
.trust-bar {
  display: flex;
  align-items: stretch;
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}
.trust-bar__item {
  flex: 1;
  padding: var(--sp-5) var(--sp-6);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
}
.trust-bar__item:first-child { border-right: none; }
.trust-bar__item:last-child  { border-right: none; }
.trust-bar__dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.trust-bar__text {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--cream-soft);
}

/* ── 12. SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-12);
}
.service-card {
  padding: var(--sp-10) var(--sp-8);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  text-align: center;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.service-card:hover {
  background: var(--surface-2);
  border-color: rgba(158,138,99,.45);
  transform: translateY(-3px);
}
.service-card__icon {
  width: 40px; height: 40px;
  margin: 0 auto var(--sp-5);
  color: var(--gold);
}
.service-card__icon svg {
  width: 100%; height: 100%;
}
.service-card__name {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}
.service-card__desc {
  font-size: var(--text-sm);
  color: var(--cream-soft);
  line-height: 1.6;
}

/* ── Nav phone ── */
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--cream);
  white-space: nowrap;
  transition: color var(--t-fast);
  text-decoration: none;
}
.nav__phone:hover { color: var(--gold); }
.nav__phone svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }

/* ── 13. WHY FEATURE ── */
.why-feat {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--line-soft);
}
.why-feat:first-child { border-top: 1px solid var(--line-soft); }
.why-feat__icon {
  width: 22px; height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.why-feat__title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-1);
}
.why-feat__desc {
  font-size: var(--text-sm);
  color: var(--cream-soft);
  line-height: 1.65;
}

/* ── 14. GALLERY ── */
.gallery-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 10px;
  padding-inline-end: var(--sp-4);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-top: var(--sp-8);
}
.gallery-grid::-webkit-scrollbar { display: none; }
.gallery-item {
  flex: 0 0 82%;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: var(--surface);
  border-radius: var(--r-sm);
}
@media (min-width: 640px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    overflow: visible;
    scroll-snap-type: none;
    padding-inline-end: 0;
  }
  .gallery-item { flex: none; }
  .gallery-dots { display: none; }
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item__caption {
  position: absolute; bottom: 0; inset-inline: 0;
  background: linear-gradient(to top, rgba(10,9,7,.92), rgba(10,9,7,0));
  padding: var(--sp-8) var(--sp-4) var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .05em;
  opacity: 0;
  transition: opacity var(--t-base);
}
.gallery-item:hover .gallery-item__caption { opacity: 1; }
.gallery-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: var(--sp-5);
}
.gallery-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--t-base), transform var(--t-base);
  min-width: 28px; min-height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
}
.gallery-dot::after {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  display: block;
  background: var(--line);
}
.gallery-dot.is-active::after { background: var(--gold); transform: scale(1.4); }

/* ── 15. TESTIMONIAL ── */
.testimonial-card {
  padding: var(--sp-8) var(--sp-6);
  background: var(--surface);
  position: relative;
  border-radius: var(--r-sm);
}
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--sp-4);
  color: var(--gold);
  font-size: .85rem;
}
.testimonial-card__quote {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--cream-soft);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--cream-soft);
  flex-shrink: 0;
}
.testimonial-card__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .04em;
}
.testimonial-card__role {
  font-size: var(--text-xs);
  color: var(--cream-mute);
  margin-top: 1px;
}

/* ── 16. FAQ ── */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) 0;
  cursor: pointer;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--cream);
  width: 100%;
  text-align: right;
  gap: var(--sp-5);
  background: none;
  border: none;
  transition: color var(--t-base);
}
body.lang-en .faq-item__q { text-align: left; }
.faq-item.is-open .faq-item__q { color: var(--gold); }

.faq-item__icon {
  width: 26px; height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--cream-mute);
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base),
              border-color var(--t-base), color var(--t-base);
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.faq-item__a {
  display: none;
  padding: 0 0 var(--sp-5);
  font-size: var(--text-base);
  color: var(--cream-soft);
  line-height: 1.75;
  max-width: 620px;
}
.faq-item.is-open .faq-item__a { display: block; }

/* ── 17. FORM (LIGHT ISLAND) ── */
.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-md);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--shadow-md);
}
@media (max-width: 480px) {
  .form-card { padding: var(--sp-8) var(--sp-5); }
}

.form { display: flex; flex-direction: column; }

.form__microtrust {
  font-size: var(--text-xs);
  color: var(--ink-mute);
  text-align: center;
  margin-top: var(--sp-3);
  letter-spacing: 0.02em;
}

.form__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: var(--sp-6);
}

.form__field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-4);
}
.form__field:last-of-type { margin-bottom: 0; }

.form__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.form__label .req {
  color: var(--error);
  margin-right: 2px;
}

.form__input {
  appearance: none;
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--paper-border);
  border-radius: var(--r-sm);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.5;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form__input::placeholder { color: var(--ink-mute); }
.form__input:hover { border-color: var(--gold); }
.form__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-ring);
}
.form__input--select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6459' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 14px center;
  padding-left: 36px;
  cursor: pointer;
}
body[dir="rtl"] .form__input--select {
  background-position: right 14px center;
  padding-right: 36px;
  padding-left: var(--sp-4);
}
.form__input--textarea { resize: vertical; min-height: 88px; }

.form__field.has-error .form__input {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(185,28,28,.1);
}
.form__error {
  display: none;
  font-size: var(--text-xs);
  color: var(--error);
  margin-top: var(--sp-1);
}
.form__field.has-error .form__error { display: block; }
.form__field.is-valid .form__input { border-color: var(--success); }

.form__privacy {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-6);
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.6;
}
.form__privacy input[type="checkbox"] {
  width: auto;
  flex-shrink: 0;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form__privacy a { color: var(--ink); border-bottom: 1px solid var(--paper-border); }
.form__privacy a:hover { border-color: var(--gold); }

.form__check-group {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-top: var(--sp-2);
}
.form__check-opt {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
}
.form__check-opt input[type="checkbox"] {
  width: auto;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
#contact-pref-field.has-error .form__check-group {
  outline: 1px solid var(--error);
  border-radius: var(--r-sm);
  padding: var(--sp-2);
}

.form__privacy.has-error {
  outline: 1px solid var(--error);
  border-radius: var(--r-sm);
  padding: var(--sp-2);
  margin-inline: calc(var(--sp-2) * -1);
}

.btn--submit { position: relative; }
.btn--submit.is-loading { pointer-events: none; opacity: .75; }
.btn--submit.is-loading::after {
  content: '';
  position: absolute;
  right: var(--sp-4);
  top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px;
  border: 2px solid rgba(20,18,14,.3);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
}
.form-success.is-visible { display: block; }
.form-success__icon { font-size: 2.4rem; margin-bottom: var(--sp-4); color: var(--success); }
.form-success__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.form-success__sub {
  font-size: var(--text-base);
  color: var(--ink-soft);
  margin-bottom: var(--sp-8);
}

/* ── 18. CONTACT METHODS ── */
.contact-methods { display: flex; flex-direction: column; }
.contact-method {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: opacity var(--t-fast);
}
.contact-method:first-of-type { border-top: 1px solid var(--line); }
.contact-method:hover { opacity: .75; }
.contact-method__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: border-color var(--t-fast);
}
.contact-method:hover .contact-method__icon { border-color: var(--gold); }
.contact-method__label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cream-mute);
}
.contact-method__value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--cream);
}
.contact-method__arrow {
  margin-right: auto;
  color: var(--gold);
  font-size: 1rem;
  transition: color var(--t-fast), transform var(--t-fast);
}
body.lang-en .contact-method__arrow { margin-right: 0; margin-left: auto; }
.contact-method:hover .contact-method__arrow {
  color: var(--gold-lt);
  transform: translateX(-3px);
}
body.lang-en .contact-method:hover .contact-method__arrow {
  transform: translateX(3px);
}

/* ── 19. NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(20,18,14,.78);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(14px);
  transition: background var(--t-base), border-color var(--t-base);
}
#navbar.is-scrolled {
  background: rgba(20,18,14,.96);
  border-bottom-color: var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-6);
}

.nav__logo-img {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.nav__logo-he {
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
}
.nav__logo-en {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-family: var(--font-en);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}
.nav__links a {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream-soft);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-xs);
  transition: color var(--t-fast);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--gold); }

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.lang-toggle__btn {
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--cream-mute);
  transition: color var(--t-fast);
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lang-toggle__btn.is-active {
  color: var(--cream);
}
.lang-toggle__btn--en {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid rgba(158,138,99,.5);
  color: var(--gold);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .03em;
  transition: background var(--t-fast), border-color var(--t-fast), opacity var(--t-fast);
}
.lang-toggle__btn--en:not(.is-active):hover {
  background: rgba(158,138,99,.1);
  border-color: var(--gold);
}
.lang-toggle__btn--en.is-active {
  opacity: .5;
  border-color: rgba(158,138,99,.2);
  color: var(--cream-soft);
}
#btn-he:not(.is-active) {
  color: var(--cream);
  font-weight: 700;
}
@media (max-width: 640px) {
  .lang-toggle__en-label { display: none; }
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: all var(--t-base);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); inset-inline: 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  z-index: 999;
  padding: var(--sp-5) var(--sp-10);
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--cream-soft);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--line-soft);
  transition: color var(--t-fast);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav a:last-child {
  border-bottom: none;
  font-weight: 700;
  color: var(--gold);
}

/* ── 20. HERO ── */
#hero {
  padding-top: var(--nav-h);
  min-height: clamp(520px, 78svh, 780px);
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(to right, rgba(16,17,20,.55) 0%, rgba(16,17,20,.80) 45%, rgba(16,17,20,.94) 100%),
    linear-gradient(to top, rgba(16,17,20,.85), rgba(16,17,20,0) 55%),
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(158,138,99,.16), transparent 60%),
    url('images/hero-lifestyle.jpg') center/cover no-repeat,
    var(--bg);
}
body.lang-en #hero {
  background:
    linear-gradient(to left, rgba(16,17,20,.55) 0%, rgba(16,17,20,.80) 45%, rgba(16,17,20,.94) 100%),
    linear-gradient(to top, rgba(16,17,20,.85), rgba(16,17,20,0) 55%),
    radial-gradient(ellipse 70% 55% at 15% 15%, rgba(158,138,99,.16), transparent 60%),
    url('images/hero-lifestyle.jpg') center/cover no-repeat,
    var(--bg);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding-block-start: var(--sp-16);
  padding-block-end: var(--sp-12);
  max-width: 760px;
}
.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
}

/* Hero stat strip (replaces old #stats section) */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: var(--sp-6);
  margin-top: var(--sp-12);
}
.hero__stat {
  padding-inline-end: var(--sp-10);
  margin-inline-end: var(--sp-10);
  border-inline-end: 1px solid var(--line);
}
.hero__stat:last-child { border-inline-end: none; padding-inline-end: 0; margin-inline-end: 0; }
.hero__stat-num {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.03em;
}
.hero__stat-suffix { font-size: .55em; vertical-align: super; font-weight: 700; }
.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--cream-mute);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: var(--sp-2);
  font-weight: 500;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: var(--cream-mute);
  font-size: var(--text-xs);
  animation: float 2.8s ease-in-out infinite;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes float {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── 21. FLOATING BUTTONS ── */
.float-btns {
  position: fixed;
  bottom: var(--sp-6);
  left: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  z-index: 900;
}
body.lang-en .float-btns { left: auto; right: var(--sp-6); }

.float-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  cursor: pointer;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(0,0,0,.5); }
.float-btn--wa  { background: #25D366; color: #fff; }
.float-btn--tel { background: var(--gold); color: var(--bg); }

.float-btn__tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
  background: var(--surface);
  color: var(--cream);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .07em;
  padding: var(--sp-2) var(--sp-3);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
  border-radius: var(--r-xs);
  border: 1px solid var(--line);
}
body.lang-en .float-btn__tooltip { right: auto; left: calc(100% + 10px); }
.float-btn:hover .float-btn__tooltip { opacity: 1; }

/* ── 22. ACCESSIBILITY WIDGET ── */
.a11y-widget {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 900;
}
body.lang-en .a11y-widget { right: auto; left: var(--sp-6); }

.a11y-widget__btn {
  width: 46px; height: 46px;
  background: var(--surface);
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--t-fast);
}
.a11y-widget__btn:hover { background: var(--surface-2); }

.a11y-widget__panel {
  display: none;
  position: absolute;
  bottom: 58px;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--sp-4);
  width: 210px;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--shadow-md);
  border-radius: var(--r-sm);
}
.a11y-widget__panel.is-open { display: flex; }
body.lang-en .a11y-widget__panel { right: auto; left: 0; }

.a11y-widget__title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: var(--sp-1);
}
.a11y-widget__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--cream-soft);
  gap: var(--sp-3);
}
.a11y-widget__option button {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 3px var(--sp-3);
  color: var(--cream);
  cursor: pointer;
  transition: background var(--t-fast);
}
.a11y-widget__option button:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}
.a11y-widget__footer {
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line-soft);
}
.a11y-widget__footer a {
  font-size: var(--text-xs);
  color: var(--gold);
}

/* ── 23. MODAL ── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(10,9,7,.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--sp-5);
  backdrop-filter: blur(4px);
}
.modal-overlay.is-open { display: flex; }

.modal__box {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: var(--sp-10) var(--sp-8);
  max-width: 560px; width: 100%;
  max-height: 82vh; overflow-y: auto;
  position: relative;
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-md);
}
.modal__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  font-size: .9rem;
  cursor: pointer;
  color: var(--cream-mute);
  padding: var(--sp-1) var(--sp-3);
  transition: color var(--t-fast);
}
body[dir="rtl"] .modal__close { right: auto; left: var(--sp-4); }
.modal__close:hover { color: var(--cream); }
.modal__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: var(--sp-5);
}
.modal__body {
  font-size: var(--text-sm);
  color: var(--cream-soft);
  line-height: 1.8;
}
.modal__body h3 {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--cream);
  margin: var(--sp-5) 0 var(--sp-2);
}

/* ── 24. FOOTER ── */
#footer {
  background: #100E0A;
  color: var(--cream-soft);
  padding-block: var(--sp-14) var(--sp-8);
  border-top: 1px solid var(--line);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid var(--line-soft);
}
.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__links a {
  font-size: var(--text-sm);
  color: var(--cream-soft);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--cream-soft);
  margin-top: var(--sp-5);
  transition: color var(--t-fast);
}
.footer__contact-link:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
}
.footer__copy { font-size: var(--text-xs); color: var(--cream-mute); }
.footer__legal { display: flex; gap: var(--sp-5); }
.footer__legal a {
  font-size: var(--text-xs);
  color: var(--cream-mute);
  transition: color var(--t-fast);
}
.footer__legal a:hover { color: var(--gold); }

/* ── 25. STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: rgba(20,18,14,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(158,138,99,.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: var(--sp-3) var(--sp-8);
  transform: translateY(100%);
  transition: transform var(--t-base);
  pointer-events: none;
}
.sticky-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta__tagline {
  font-size: var(--text-sm);
  color: var(--cream-soft);
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__link {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--cream);
  white-space: nowrap;
  padding: var(--sp-3) var(--sp-8);
  border: 1px solid var(--cream);
  transition: background var(--t-fast), border-color var(--t-fast);
  flex-shrink: 0;
}
.sticky-cta__link:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
}
.sticky-cta__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--cream);
  padding: var(--sp-3) var(--sp-5);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.sticky-cta__btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.sticky-cta__btn:hover { border-color: var(--gold); color: var(--gold); }
.sticky-cta__btn--wa:hover { border-color: #25D366; color: #25D366; }
@media (max-width: 768px) {
  .sticky-cta { gap: var(--sp-3); padding: var(--sp-3) var(--sp-4); }
  .sticky-cta__actions { width: 100%; justify-content: center; }
  .sticky-cta__btn { flex: 1; justify-content: center; }
  .sticky-cta__link { flex: 1; text-align: center; padding: var(--sp-3) var(--sp-4); }
}

/* ── Google Reviews Badge ── */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--line);
  background: var(--surface);
  text-decoration: none;
  transition: border-color var(--t-fast);
}
.google-badge:hover { border-color: var(--gold); }
.google-badge__stars { color: #FBBC05; font-size: .85rem; letter-spacing: .05em; }
.google-badge__label { font-size: var(--text-xs); color: var(--cream-soft); font-weight: 500; }

/* Push float buttons above sticky bar */
.float-btns { bottom: calc(var(--sp-6) + 58px); }
.a11y-widget { bottom: calc(var(--sp-6) + 58px); }
@media (max-width: 768px) {
  .float-btns { bottom: calc(88px + 58px); }
  .a11y-widget { bottom: calc(var(--sp-6) + 58px); }
}

/* ── 26. SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 27. RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .grid-2.contact-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .grid-2.why-grid { grid-template-columns: 1fr; gap: var(--sp-12); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: var(--sp-16); --container-px: var(--sp-6); }

  .nav__links, .nav__links + .btn { display: none; }
  .nav__hamburger { display: flex; }

  .grid-3 { grid-template-columns: 1fr; gap: var(--sp-1); }
  .grid-5 { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
  .service-card { padding: var(--sp-8) var(--sp-4); }
  .service-card__icon { width: 34px; height: 34px; }

  .trust-bar { flex-wrap: wrap; }
  .trust-bar__item {
    min-width: 50%;
    flex: 1 1 50%;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding-inline: var(--sp-4);
  }
  .trust-bar__item:nth-child(2n) { border-right: none; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .faq-list { max-width: 100%; }
  .float-btns { bottom: 88px; }

  .sticky-cta__tagline { display: none; }
  .sticky-cta { justify-content: center; }
  .hero__inner { padding-block-start: var(--sp-8); padding-block-end: var(--sp-10); text-align: center; max-width: 100%; }
  .hero__inner .body-lg { margin-left: auto; margin-right: auto; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__stat { padding-inline-end: var(--sp-5); margin-inline-end: var(--sp-5); }
  .nav__phone { display: none; }
  .eyebrow { justify-content: center; }
  .nav__right .btn { display: none; }
  .nav__logo-img { height: 40px; }
}

@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; gap: var(--sp-2); }
}
