/* ==========================================================================
   Electra Residences - Elad
   State-of-the-art Hebrew RTL real-estate site
   ========================================================================== */

:root {
  --white: #ffffff;
  --off-white: #f5f7fb;
  --paper: #fafbfd;
  --cream: #f3ede2;
  --gold: #b9985a;
  --gold-soft: #d6c194;
  --blue-50: #eef3fb;
  --blue-100: #dde7f4;
  --blue-200: #c2d2ea;
  --blue-300: #91aed4;
  --blue-500: #4a6fa5;
  --blue-700: #1e3a6e;
  --blue-800: #122a55;
  --blue-900: #0a1d3f;
  --blue-1000: #050f24;
  --ink: #0a1d3f;
  --muted: #5b6a82;
  --line: rgba(18, 42, 85, 0.10);
  --line-soft: rgba(18, 42, 85, 0.06);
  --shadow-sm: 0 1px 2px rgba(10, 29, 63, 0.04), 0 2px 8px rgba(10, 29, 63, 0.04);
  --shadow-md: 0 4px 14px rgba(10, 29, 63, 0.06), 0 18px 50px rgba(10, 29, 63, 0.08);
  --shadow-lg: 0 10px 28px rgba(10, 29, 63, 0.10), 0 36px 90px rgba(10, 29, 63, 0.14);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
  --header-h: 96px;
}

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

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

body {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  direction: rtl;
  text-align: right;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
}

@media (max-width: 720px) {
  body { font-size: 16px; line-height: 1.7; }
  .container { padding: 0 20px; }
}

::selection { background: var(--blue-900); color: var(--white); }

/* ==========================================================================
   Scroll progress bar
   ========================================================================== */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 2px;
  background: rgba(10, 29, 63, 0.06);
  z-index: 200;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-700), var(--gold));
  transition: width 0.05s linear;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: #ffffff;
  border-bottom-color: var(--line-soft);
  box-shadow: 0 1px 0 rgba(10, 29, 63, 0.04);
}
.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 12px 40px rgba(10, 29, 63, 0.12);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 36px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.site-header.is-scrolled .site-header__inner { padding: 12px 36px; }
.site-header__logo img {
  height: 38px;
  width: auto;
  transition: filter 0.4s var(--ease), opacity 0.4s var(--ease);
}
.site-header:not(.is-scrolled):not(.is-menu-open) .site-header__logo img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.site-header.is-menu-open .site-header__logo img {
  filter: none;
  opacity: 1;
}

.site-nav {
  display: flex;
  gap: 48px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.site-nav a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}
.site-nav a::after {
  content: '';
  position: absolute;
  inset: auto 0 -4px 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }
.site-header:not(.is-scrolled):not(.is-menu-open) .site-nav a {
  color: rgba(255, 255, 255, 0.85);
}
.site-header:not(.is-scrolled):not(.is-menu-open) .site-nav a:hover { color: var(--white); }

.site-header:not(.is-scrolled):not(.is-menu-open) .site-header__cta {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: none;
  backdrop-filter: blur(10px);
  color: var(--white);
}
.site-header:not(.is-scrolled):not(.is-menu-open) .site-header__cta:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.7);
}

.mobile-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(10, 29, 63, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-sm);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.25s var(--ease);
}
.site-header:not(.is-scrolled):not(.is-menu-open) .mobile-nav-toggle {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.site-header.is-menu-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-menu-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-menu-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
}

@media (max-width: 980px) {
  .site-nav { display: none; }
}
@media (max-width: 720px) {
  .site-header__inner, .site-header.is-scrolled .site-header__inner { padding: 12px 18px; }
  .site-header__logo img { height: 34px; }
  .site-header .site-header__cta { display: none !important; }
  .mobile-nav-toggle { display: inline-flex; }
  .mobile-nav {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    inset-inline: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line-soft);
    border-radius: 18px;
    box-shadow: 0 18px 60px rgba(10, 29, 63, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
  }
  .site-header.is-menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .mobile-nav__links {
    display: grid;
    gap: 4px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--line-soft);
  }
  .mobile-nav__links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-900);
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
  }
  .mobile-nav__links a:hover {
    background: var(--blue-50);
    color: var(--blue-700);
  }
  .mobile-nav__cta {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 14px;
  }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0;
  direction: rtl;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn > span {
  display: inline-flex;
  align-items: center;
  line-height: 1.35;
}
.btn--primary {
  background: var(--blue-900);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(10, 29, 63, 0.20);
}
.btn--primary:hover {
  background: var(--blue-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 29, 63, 0.28);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: var(--white);
  color: var(--blue-900);
  border-color: var(--white);
}
.btn--link {
  padding: 14px 8px;
  color: var(--white);
  position: relative;
}
.btn--link::after {
  content: '';
  position: absolute;
  inset: auto 8px 6px 8px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}
.btn--link:hover::after { opacity: 1; }

.btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 1em;
  min-width: 1em;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(-4px); }
.btn--back:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   Hero - full-bleed, slideshow, premium typography
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue-1000);
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(30, 90, 160, 0.45) 0%, rgba(30, 90, 160, 0.25) 40%, rgba(20, 60, 130, 0.55) 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
}

.hero__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 36px 200px;
  color: var(--white);
}
.hero__title {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(2.8rem, 8.4vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__title-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1.3s var(--ease-out) 0.4s forwards;
}
.hero__title-line--accent {
  animation-delay: 0.55s;
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0;
}
.hero__lede {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1.2s var(--ease) 0.7s forwards;
}
.hero__cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1.2s var(--ease) 0.85s forwards;
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Hero stats strip - bottom of hero */
.hero__strip {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(5, 15, 36, 0.5));
  padding-bottom: 30px;
}
.hero__strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 28px;
}
.hero__chip {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1s var(--ease) 1s forwards;
}
.hero__chip-num {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}
.hero__chip-label {
  font-size: 12.5px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 720px) {
  .hero__inner { padding: 120px 20px 220px; }
  .hero__strip-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 22px 20px 0; }
  .hero__chip-num { font-size: 1.5rem; }
}

.hero__scroll {
  position: absolute;
  bottom: 18px;
  inset-inline-start: 36px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero__scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0.2); transform-origin: top; opacity: 0.2; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.2); transform-origin: bottom; opacity: 0.2; }
}
@media (max-width: 980px) { .hero__scroll { display: none; } }

/* ==========================================================================
   Section primitives
   ========================================================================== */
.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}
.section--tinted { background: var(--off-white); }
.section--paper { background: var(--paper); }
#gallery { padding-top: clamp(16px, 2vw, 28px); }
.section--project {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  padding-top: clamp(80px, 8vw, 120px);
  padding-bottom: clamp(80px, 8vw, 120px);
}

.eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: #0080c4;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--blue-700);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.eyebrow::before {
  display: none;
}
.eyebrow--light { color: #0080c4; }

.heading {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--blue-900);
}
.heading--display {
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  letter-spacing: 0;
}
.heading--light { color: var(--white); }

.body-text {
  line-height: 1.85;
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 400;
}
.body-text + .body-text { margin-top: 1em; }
.body-text--lede {
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(10, 29, 63, 0.78);
  margin-top: 18px;
  max-width: 740px;
}
.body-text--light {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
}
.body-text em {
  font-style: normal;
  color: var(--blue-700);
  font-weight: 600;
}

.section-header { margin-bottom: 56px; max-width: 820px; }
#transport .section-header, #city .section-header { margin-bottom: 24px; }
.section-header--wide { max-width: none; }
.section-header--wide .body-text--lede { max-width: none; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .body-text--lede { margin-inline: auto; }

/* ==========================================================================
   Split layout (text + image)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.split__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}
.split__media--wide { aspect-ratio: 5 / 4; }
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: filter 0.5s var(--ease), transform 0.7s var(--ease);
}
.split__media:hover img {
  filter: brightness(1.04) saturate(1.08);
  transform: scale(1.015);
}
.split__badge {
  position: absolute;
  top: 22px;
  inset-inline-end: 22px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--blue-900);
}

.split__text .heading { margin-bottom: 24px; }
.split--transport {
  align-items: stretch;
}
.split--transport .split__media {
  aspect-ratio: auto;
  min-height: 100%;
}

@media (max-width: 920px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__media { aspect-ratio: 4 / 3; }
  .split--transport .split__media { aspect-ratio: 4 / 3; min-height: auto; }
}

/* ==========================================================================
   Metric list (inline stats under split copy)
   ========================================================================== */
.metric-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.metric-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-list strong {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: var(--blue-900);
  letter-spacing: 0;
  line-height: 1.1;
}
.metric-list span {
  font-size: 12.5px;
  letter-spacing: 0;
  color: var(--muted);
}

.metric-list--center {
  max-width: 680px;
  margin-inline: auto;
}

.metric-list--center li {
  align-items: center;
}

@media (max-width: 560px) {
  .metric-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
    padding-top: 22px;
    text-align: center;
  }
  .metric-list li {
    align-items: center;
  }
  .metric-list strong {
    font-size: clamp(1.3rem, 7vw, 1.65rem);
  }
  .metric-list span {
    font-size: 11.5px;
    letter-spacing: 0;
    line-height: 1.35;
  }
}

.location-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.location-intro .eyebrow {
  justify-content: center;
}

.location-intro .heading {
  margin-bottom: 32px;
}

.location-intro .body-text {
  max-width: 780px;
  margin-inline: auto;
}

.location-map {
  margin-top: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.location-map img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

/* ==========================================================================
   Featured project (lead section, dark luxury card)
   ========================================================================== */
.featured {
  position: relative;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-1000) 100%);
  color: var(--white);
  border-radius: 24px;
  padding: clamp(44px, 5.5vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.featured__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 85% -10%, rgba(185, 152, 90, 0.28), transparent 50%),
    radial-gradient(circle at 5% 110%, rgba(74, 111, 165, 0.4), transparent 55%);
  pointer-events: none;
}
.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='60'><path d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.04)' stroke-width='1'/></svg>");
  pointer-events: none;
}

.featured__head { margin-bottom: 48px; }
.featured__head .eyebrow { color: #0080c4; }
.featured__head .heading { color: var(--white); margin-top: 6px; }

.featured__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(36px, 4vw, 64px);
  align-items: start;
}
.featured__copy .body-text { color: rgba(255, 255, 255, 0.82); font-weight: 400; line-height: 1.9; }
.featured__copy .body-text--lede { color: rgba(255, 255, 255, 0.95); font-weight: 400; }
.featured__copy .body-text em { color: var(--blue-300); font-style: normal; font-weight: 600; }

.featured-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.featured-stats li {
  background: rgba(3, 10, 30, 0.88);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 0.3s var(--ease);
}
.featured-stats li:hover { background: rgba(3, 10, 30, 0.98); }
.featured-stats li .num {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0;
  line-height: 1;
}
.featured-stats li .label {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0;
}

@media (max-width: 920px) {
  .featured__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .featured-stats { grid-template-columns: repeat(2, 1fr); }
  .featured { border-radius: 18px; }
}

/* ==========================================================================
   Feature grid (neighborhood)
   ========================================================================== */
.feature-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-grid li {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 32px 28px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.feature-grid li:hover {
  transform: translateY(-4px);
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
}
.feature-grid__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-700);
  margin-bottom: 18px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
.feature-grid__icon svg { width: 26px; height: 26px; }
.feature-grid li:hover .feature-grid__icon {
  background: var(--blue-900);
  color: var(--white);
}
.feature-grid h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 6px;
  letter-spacing: 0;
}
.feature-grid p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--muted);
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Family services (numbered cards)
   ========================================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 36px 28px 32px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-300), var(--blue-700));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__num {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--blue-500);
  display: block;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 18px;
  letter-spacing: 0;
  line-height: 1.25;
}
.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card li {
  position: relative;
  padding-inline-start: 18px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
}
.service-card li::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-500);
}

@media (max-width: 1000px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }

/* ==========================================================================
   Statement (parks)
   ========================================================================== */
.section--statement {
  position: relative;
  padding: clamp(88px, 10vw, 150px) 0;
  isolation: isolate;
  color: var(--white);
}
.statement-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.statement-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: statementZoom 22s ease-out forwards;
  filter: brightness(1.1) saturate(1.6) contrast(1.08);
}
@keyframes statementZoom {
  to { transform: scale(1); }
}
.section--statement::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 60% 0%, rgba(255, 210, 80, 0.22) 0%, transparent 55%),
    linear-gradient(180deg,
      rgba(10, 50, 15, 0.15) 0%,
      rgba(5, 30, 10, 0.20) 45%,
      rgba(5, 15, 5, 0.72) 100%
    );
}
.statement {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.statement .eyebrow { justify-content: center; }
.statement .eyebrow--light { color: var(--blue-300); }
.statement__heading {
  color: var(--white);
  margin: 8px 0 32px;
}
.statement__text {
  font-weight: 400;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 760px;
  margin: 0 auto;
}
.statement__text + .statement__text { margin-top: 1em; }
.statement__text--small {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1.6em !important;
  letter-spacing: 0;
}

/* ==========================================================================
   Transportation list
   ========================================================================== */
.transport-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.transport-list li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.transport-list li:last-child { border-bottom: none; }
.transport-list__tag {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-900);
  min-width: 110px;
  letter-spacing: 0;
}
.transport-list__desc {
  font-size: 0.97rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-slider {
  width: 100%;
  max-width: none;
  margin: 0;
}
.gallery-slider__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: var(--blue-50);
  box-shadow: var(--shadow-md);
}
.gallery-slider__main {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.gallery-slider__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: auto;
}
/* Classic crossfade: cloned outgoing image fades out over the new one */
.gallery-slider__fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.55s var(--ease);
}
.gallery-slider__main.is-plan img {
  object-fit: contain;
  padding: 28px;
  background: var(--white);
}
.gallery-slider__main:hover img { transform: none; }
.gallery-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
  box-shadow: var(--shadow-sm);
  font-size: 30px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.gallery-slider__arrow:hover {
  background: var(--blue-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.gallery-slider__arrow--prev { inset-inline-end: 18px; }
.gallery-slider__arrow--next { inset-inline-start: 18px; }
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.gallery-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 2px solid transparent;
  opacity: 0.72;
  transition: border-color 0.25s var(--ease), opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.gallery-thumb:hover,
.gallery-thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
}
.gallery-thumb.is-active { border-color: var(--blue-700); }
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb--plan img {
  object-fit: contain;
  padding: 8px;
  background: var(--white);
}
@media (max-width: 720px) {
  .gallery-slider__stage { aspect-ratio: 4 / 3; }
  .gallery-slider__arrow {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }
  .gallery-slider__arrow--prev { inset-inline-end: 10px; }
  .gallery-slider__arrow--next { inset-inline-start: 10px; }
  .gallery-thumbs {
    gap: 8px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 15, 36, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(8px);
  padding: 40px;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close {
  position: absolute;
  top: 24px;
  inset-inline-start: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: background 0.25s var(--ease);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background 0.25s var(--ease);
}
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.20); }
.lightbox__nav--prev { inset-inline-end: 24px; }
.lightbox__nav--next { inset-inline-start: 24px; }
@media (max-width: 720px) {
  .lightbox { padding: 16px; }
  .lightbox__nav { width: 42px; height: 42px; }
}

/* ==========================================================================
   Company section
   ========================================================================== */
.section--company {
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-1000) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section--company::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(74, 111, 165, 0.30), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(185, 152, 90, 0.18), transparent 55%);
  pointer-events: none;
}
.company {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}
.company__logo {
  min-height: 100%;
  padding: 24px 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.company .eyebrow--light { color: var(--blue-300); }
.company__copy .eyebrow { justify-content: center; }
.company__copy .heading { margin-top: 6px; margin-bottom: 24px; }
.company-stats {
  list-style: none;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.company-stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.company-stats strong {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  color: var(--white);
  letter-spacing: 0;
  line-height: 1.1;
}
.company-stats span {
  font-size: 12.5px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 900px) {
  .section--company {
    padding-block: 64px;
  }
  .company {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .company__logo {
    width: min(240px, 74vw);
    max-width: 220px;
    margin-inline: auto;
    min-height: auto;
    padding: 22px 28px;
  }
  .company__copy .eyebrow {
    justify-content: center;
  }
  .company__copy .body-text--light {
    margin-inline: auto;
  }
}
@media (max-width: 560px) {
  .company-stats {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
    padding-top: 24px;
    text-align: center;
  }
  .company-stats li {
    align-items: center;
  }
  .company-stats strong {
    font-size: clamp(1.45rem, 8vw, 1.85rem);
  }
  .company-stats span {
    line-height: 1.45;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--blue-1000);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 40px;
  text-align: center;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.site-footer img {
  height: 38px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.site-footer__divider {
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.site-footer p {
  font-size: 0.84rem;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.55);
}
.site-footer__powered {
  margin-top: -12px;
  font-size: 0.78rem;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.25s var(--ease);
}
.site-footer__powered:hover { color: rgba(255, 255, 255, 0.72); }

/* ==========================================================================
   Inventory page
   ========================================================================== */
.inventory-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 34%, var(--off-white) 100%);
  color: var(--blue-900);
}
.inventory-page .site-nav a { text-decoration: none !important; }
.inventory-page .site-nav a::after { display: none; }
.inventory-page .site-header__cta {
  background: var(--blue-900) !important;
  color: var(--white) !important;
  border-color: transparent !important;
  box-shadow: 0 6px 20px rgba(10, 29, 63, 0.20) !important;
  backdrop-filter: none !important;
  padding: 16px 40px !important;
  border-radius: 999px !important;
}
.inventory-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.inventory-header__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.inventory-header__back {
  background: var(--white);
  color: var(--blue-900);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}
.inventory-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 34px 36px 72px;
}
.inventory-hero {
  max-width: 640px;
  margin: 0 0 34px auto;
  text-align: start;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: clamp(40px, 6vh, 80px);
}
.inventory-hero .eyebrow {
  justify-content: flex-start;
  margin-bottom: 8px;
}
.inventory-hero__back {
  background: #0080c4 !important;
  border-color: #0080c4 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  border-radius: 50px !important;
}
.inventory-hero .heading {
  margin: 0 0 16px;
}

.inventory-hero__back {
  margin-top: 22px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  color: var(--blue-900);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.inventory-hero__back:hover {
  background: var(--blue-50);
  color: var(--blue-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.inventory-widget {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: clamp(18px, 3vw, 34px);
  overflow: hidden;
}
.inventory-widget .jv-realestate-root {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
}
@media (max-width: 720px) {
  .inventory-header {
    padding: 16px 18px;
  }
  .inventory-header__logo img {
    height: 34px;
  }
  .inventory-header__back {
    padding: 10px 14px;
    font-size: 13px;
  }
  .inventory-main {
    padding: 24px 18px 52px;
  }
  .inventory-widget {
    margin-inline: -8px;
    padding: 14px;
    border-radius: 14px;
  }
}

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title-line, .hero__lede, .hero__cta, .hero__chip { opacity: 1; transform: none; animation: none; }
}

/* ==========================================================================
   Review adjustments
   ========================================================================== */
body,
button,
input,
textarea,
select {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
  letter-spacing: 0;
}

.heading,
.heading--display,
.hero__title,
.featured-stats li .num,
.metric-list strong,
.company-stats strong {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
  letter-spacing: 0;
}

.site-header__inner,
.site-header.is-scrolled .site-header__inner {
  padding: 12px 28px;
  gap: 18px;
}

.site-header__logo {
  flex: 0 0 auto;
}

.site-header__logo--project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(150px, 12vw, 196px);
  height: 64px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.site-header__logo--project img,
.site-header.is-scrolled .site-header__logo--project img,
.site-header.is-menu-open .site-header__logo--project img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.inventory-page .site-header__logo--project {
  width: clamp(154px, 12.5vw, 214px);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .site-header__logo--project img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.site-nav {
  position: static;
  flex: 0 1 auto;
  justify-content: center;
  gap: clamp(13px, 1.4vw, 20px);
  transform: none;
  min-width: 0;
}

.site-nav a {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  direction: ltr;
  flex: 0 0 auto;
}

.site-header__developer-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__developer-logo img {
  height: 54px;
  width: auto;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .site-header__developer-logo img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.mobile-project-logo-direct {
  display: none;
}

.site-header__cta,
.site-header:not(.is-scrolled):not(.is-menu-open) .site-header__cta,
.inventory-page .site-header__cta {
  background: #0080c4 !important;
  border-color: #0080c4 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  min-height: 56px;
  align-items: center;
  align-self: center;
  gap: 10px;
  direction: rtl;
  font-weight: 600;
}

.site-header__cta > span {
  line-height: 1;
}

.site-header__cta.btn--back > span {
  position: relative;
  top: 14px;
}

.site-header__cta:hover,
.site-header:not(.is-scrolled):not(.is-menu-open) .site-header__cta:hover,
.inventory-page .site-header__cta:hover {
  background: #006aa8 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.hero {
  min-height: min(820px, 100svh);
  justify-content: center;
}

.hero__overlay {
  background:
    linear-gradient(180deg, rgba(30, 90, 160, 0.45) 0%, rgba(30, 90, 160, 0.25) 40%, rgba(20, 60, 130, 0.55) 100%);
}

.hero__inner {
  min-height: min(820px, 100svh);
  padding: calc(var(--header-h) + 32px) 36px 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__panel {
  width: min(680px, 100%);
  padding: 0;
  border-inline-start: 0;
  background: transparent;
}

.hero__mobile-logo {
  display: none;
}

.hero__title {
  font-weight: 600;
  font-size: clamp(2.9rem, 6.4vw, 4.8rem);
  line-height: 1.02;
  margin-bottom: 24px;
}

.hero__title-line,
.hero__lede {
  opacity: 1;
  transform: none;
  animation: none;
}

.hero__title-line--accent {
  font-weight: 400;
}

.hero__lede {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 400;
  line-height: 1.62;
  max-width: 520px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: clamp(44px, 5vw, 72px) 0;
}

.section--paper,
.section--project {
  background: var(--white);
}

.section--tinted {
  background: var(--off-white);
}

.section--project {
  padding-top: clamp(44px, 4vw, 58px);
}

.section + .section {
  border-top: 0;
}

/* Map zoom + magnifier */
.location-map { position: relative; cursor: crosshair; }
.map-lens {
  display: none;
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(0, 128, 196, 0.7);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 0 0 1px rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 10;
  background-repeat: no-repeat;
}

.map-zoom-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transition: background 0.2s;
}
.map-zoom-btn:hover { background: #fff; }
.map-zoom-btn svg { width: 20px; height: 20px; color: #0080c4; }
.map-modal {
  padding: 0;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  max-width: 95vw;
  max-height: 92vh;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
}
.map-modal::backdrop { background: rgba(0,0,0,0.75); }
.map-modal img { display: block; max-width: 95vw; max-height: 88vh; object-fit: contain; }
.map-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.92);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Nature section */
.section--nature { background: var(--off-white); padding-bottom: 0; }
.nature-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  margin-top: 32px;
}
.nature-panels__image { overflow: hidden; }
.nature-panels__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.4) brightness(1.05);
  transition: transform 10s ease;
}
.nature-panels__image:hover img { transform: scale(1.04); }
.nature-panels__content {
  background: #fff;
  padding: clamp(36px, 5vw, 64px) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-inline-start: 4px solid #3a9e5f;
}
.nature-panels__content .heading { margin-bottom: 16px; }
.nature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 28px;
}
.nature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  direction: rtl;
}
.nature-list li svg {
  width: 22px;
  height: 22px;
  color: #3a9e5f;
  flex-shrink: 0;
  margin-top: 3px;
}
.nature-list li strong { display: block; font-weight: 600; color: var(--blue-900); font-size: 1rem; }
.nature-list li span { font-size: 0.88rem; color: rgba(10,29,63,0.62); line-height: 1.5; }
@media (max-width: 860px) {
  .nature-panels { grid-template-columns: 1fr; }
  .nature-panels__image { min-height: 280px; }
}

.section .heading, .section .heading--display {
  margin-bottom: 20px;
}
.section .eyebrow {
  margin-bottom: 10px;
}

.eyebrow {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 14px;
  text-transform: none;
  color: #0080c4 !important;
  justify-content: center;
}

.eyebrow::before {
  display: none;
}

.heading {
  font-weight: 600;
  font-size: clamp(2rem, 3.45vw, 3rem);
  line-height: 1.12;
}

.heading--display {
  font-weight: 600;
  font-size: clamp(2.4rem, 4.2vw, 3.7rem);
}

.body-text {
  font-size: 1.04rem;
  line-height: 1.78;
}

.body-text--lede {
  font-size: 1.04rem;
  font-weight: 400;
  line-height: 1.78;
}

.section-header {
  margin-bottom: 30px;
}

.split {
  gap: clamp(30px, 4vw, 58px);
}

.split__media,
.gallery-slider__stage,
.feature-grid li,
.service-card,
.company__logo {
  border-radius: 8px;
}

.featured {
  border-radius: 8px;
  padding: clamp(32px, 4vw, 52px);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-1000));
}

.featured::after {
  display: none;
}

.featured__head {
  margin-bottom: 34px;
}

.featured__head .eyebrow {
  color: var(--white);
}

.featured__grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 4vw, 52px);
}

.featured__copy .body-text,
.featured__copy .body-text--lede,
.body-text--light {
  font-weight: 400;
}

.featured__copy .body-text,
.featured__copy .body-text--lede,
.featured__copy .body-text em,
.featured-stats li .label {
  color: var(--white);
}

.featured__copy .body-text,
.featured__copy .body-text--lede {
  font-size: 1.04rem;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
}

.featured-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.featured-download-link .arrow {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: transform 0.25s var(--ease);
}

.featured-download-link:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-900);
  transform: translateY(-1px);
}

.featured-download-link:hover .arrow {
  transform: translateX(-3px);
}

.featured-download-link--inventory {
  background: var(--white);
  border-color: var(--white);
  color: var(--blue-900);
  font-weight: 800;
  padding-inline: 30px;
  box-shadow: 0 10px 28px rgba(5, 15, 36, 0.22);
}

.featured-download-link--inventory:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  color: var(--blue-900);
}

@media (max-width: 560px) {
  .featured-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .featured-download-link {
    width: 100%;
  }
}

.featured-stats {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.10);
}

.featured-stats li {
  padding: 22px 20px;
}

.featured-stats li .num {
  font-weight: 600;
}

.feature-grid,
.services {
  gap: 16px;
}

.feature-grid li,
.service-card {
  padding: 28px 26px;
  box-shadow: none;
}

.feature-grid li:hover,
.service-card:hover {
  transform: none;
}

.feature-grid__icon,
.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--blue-700);
  margin-bottom: 14px;
}

.feature-grid__icon {
  border-radius: 0;
  background: transparent;
}

.feature-grid__icon svg,
.service-card__icon svg {
  width: 34px;
  height: 34px;
}

.feature-grid li:hover .feature-grid__icon {
  background: transparent;
  color: var(--blue-700);
}

.feature-grid h3,
.service-card h3 {
  font-weight: 600;
}

.service-card::before,
.service-card__num {
  display: none;
}

.service-card__icon {
  border-radius: 0;
  background: transparent;
}

.feature-grid p,
.service-card li,
.transport-list__desc {
  font-size: 1.04rem;
  line-height: 1.78;
}

.statement__text {
  font-weight: 400;
  font-size: 1.04rem;
  line-height: 1.78;
}

.section--statement {
  padding: clamp(58px, 6.5vw, 92px) 0;
}

.statement__text--small {
  font-size: 1.04rem;
}

.section--company {
  background: linear-gradient(180deg, var(--blue-900), var(--blue-1000));
}

.section--downloads {
  background: var(--white);
}

.downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.download-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  color: var(--blue-900);
  text-decoration: none;
  box-shadow: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.download-card:hover {
  background: var(--white);
  border-color: var(--blue-200);
  transform: translateY(-2px);
}

.download-card__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--blue-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.download-card:hover .download-card__icon {
  background: var(--blue-900);
  color: var(--white);
}

.download-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.download-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.download-card__meta {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.3;
}

.download-card__action {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 0.92rem;
  font-weight: 600;
}

.download-card__action svg {
  transition: transform 0.25s var(--ease);
}

.download-card:hover .download-card__action svg {
  transform: translateY(2px);
}

.section--contact {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.78fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
}

.contact-section__copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-section__copy .heading {
  margin-bottom: 18px;
}

.contact-section__copy .body-text {
  max-width: 570px;
  color: rgba(10, 29, 63, 0.78);
}

.contact-section__media {
  flex: 1 1 auto;
  min-height: 220px;
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.contact-section__media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.contact-form {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-form__title {
  margin-bottom: 2px;
  color: var(--blue-900);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.2;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  color: var(--blue-900);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.contact-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(18, 42, 85, 0.16);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-900);
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
  text-align: right;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}

.contact-field input:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 4px rgba(74, 111, 165, 0.13);
}

.contact-field input::placeholder {
  color: rgba(91, 106, 130, 0.72);
  text-align: right;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  direction: rtl;
}
.contact-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #0080c4;
  cursor: pointer;
}
.contact-consent span {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(10, 29, 63, 0.65);
}

.contact-submit {
  min-height: 56px;
  border-radius: 999px;
  background: var(--blue-900);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(10, 29, 63, 0.18);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-submit:hover {
  background: var(--blue-800);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(10, 29, 63, 0.24);
}

.contact-note {
  margin-top: -4px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.company {
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
}

.company__logo {
  border: 0;
  padding: 0;
  min-height: auto;
  background: transparent;
}

.company__logo img {
  width: min(128px, 100%);
  filter: none;
  opacity: 1;
}

.company-stats strong {
  font-weight: 600;
}

.site-footer {
  padding: 52px 0 38px;
}

.site-footer img {
  height: 62px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer__legal {
  max-width: 980px;
  font-size: 0.72rem;
  line-height: 1.8;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.58);
}

.site-footer__links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer__links a:hover {
  color: var(--white);
}

.site-footer__powered {
  margin-top: -6px;
  letter-spacing: 0;
}

.inventory-widget .jv-realestate-root {
  font-family: 'Noto Sans Hebrew', Arial, sans-serif;
}

.inventory-main {
  padding-top: calc(var(--header-h) + 34px);
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1280px) {
  .site-header__inner,
  .site-header.is-scrolled .site-header__inner {
    direction: ltr;
  }

  .site-header__logo--project {
    display: inline-flex;
    order: 2;
    width: auto;
    height: 44px;
    padding: 6px 12px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(5, 15, 36, 0.16);
  }

  /* Match the inventory page logo to the home page (override desktop width) */
  .inventory-page .site-header__logo--project {
    width: auto;
  }

  .site-header.is-scrolled .site-header__logo--project,
  .site-header.is-menu-open .site-header__logo--project {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  .site-header__logo--project img,
  .site-header.is-scrolled .site-header__logo--project img,
  .site-header.is-menu-open .site-header__logo--project img {
    height: 100%;
    width: auto;
  }

  .site-header:not(.is-scrolled):not(.is-menu-open) .site-header__logo--project img {
    filter: none;
    opacity: 1;
  }

  .site-header__actions {
    order: 1;
  }

  .mobile-nav-toggle {
    order: 0;
  }

  .site-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: block;
    position: absolute;
    top: calc(100% + 8px);
    inset-inline: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line-soft);
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(10, 29, 63, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
  }

  .site-header.is-menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-nav__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--line-soft);
  }

  .mobile-nav__links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--blue-900);
  }

  .mobile-nav__cta {
    width: 100%;
    justify-content: center;
  }

  .hero__mobile-logo {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 82px;
  }

  .site-header {
    background: rgba(5, 15, 36, 0.18);
    border-bottom-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: saturate(160%) blur(12px);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--line-soft);
  }

  .site-header__inner,
  .site-header.is-scrolled .site-header__inner {
    min-height: var(--header-h);
    padding: 10px 18px;
    gap: 12px;
  }

  .site-header__actions {
    display: flex;
    position: static;
    flex: 0 0 auto;
    min-width: 0;
    justify-content: center;
    align-items: center;
    transform: none;
    z-index: 2;
  }

  .site-header__developer-logo img {
    width: clamp(132px, 38vw, 160px);
    max-width: calc(100vw - 160px);
    height: auto;
  }

  .mobile-nav__links {
    grid-template-columns: 1fr;
  }

  .site-header__logo--project {
    display: inline-flex;
    height: 40px;
    padding: 5px 10px;
    position: static;
    flex: 0 0 auto;
  }

  .site-header::after {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    position: static;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    z-index: 3;
  }

  .site-header:not(.is-scrolled):not(.is-menu-open) .mobile-nav-toggle {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.95);
    color: var(--blue-900);
    box-shadow: 0 6px 18px rgba(5, 15, 36, 0.16);
    backdrop-filter: none;
  }

  .mobile-nav-toggle span {
    width: 20px;
    height: 2.5px;
  }

  .mobile-project-logo-direct {
    display: none !important;
  }

  .container {
    padding-inline: 22px;
  }

  .hero {
    min-height: 560px;
  }

  .hero__inner {
    min-height: 560px;
    padding: calc(var(--header-h) + 24px) 22px 42px;
  }

  .hero__panel {
    width: 100%;
    border-radius: 8px;
    max-width: none;
    padding: 0;
    background: transparent;
    text-align: center;
    border-inline-start: 0;
    overflow: hidden;
  }

  .hero__mobile-logo {
    width: clamp(132px, 46vw, 172px);
    margin-bottom: 16px;
    padding: 7px 10px;
  }

  .hero__title {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .hero__lede {
    font-size: 1rem;
    line-height: 1.58;
    max-width: 25ch;
    margin-inline: auto;
    white-space: normal;
  }

  .featured__grid,
  .company {
    grid-template-columns: 1fr;
  }

  .company {
    text-align: center;
  }

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

  .contact-section__grid {
    grid-template-columns: 1fr;
  }

  .contact-section__media,
  .contact-section__media img {
    min-height: 230px;
  }

  .download-card {
    padding: 20px;
    gap: 14px;
  }

  .download-card__action span:first-child {
    display: none;
  }

  .contact-submit {
    width: 100%;
  }

  .company__copy .eyebrow {
    justify-content: center;
  }

  .company__logo {
    justify-self: center;
  }

  /* Neighborhood + quality-of-life cards become a horizontal swipe slider */
  .feature-grid,
  .services {
    display: flex;
    grid-template-columns: none;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 22px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .feature-grid::-webkit-scrollbar,
  .services::-webkit-scrollbar {
    display: none;
  }

  .feature-grid li,
  .service-card {
    flex: 0 0 80%;
    max-width: 80%;
    scroll-snap-align: center;
    box-shadow: var(--shadow-sm);
  }
}

/* ==========================================================================
   Map note + sticky contact CTA
   ========================================================================== */
.map-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: clamp(32px, 4vw, 54px) 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}
.map-note svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--blue-700);
}

.sticky-cta {
  position: fixed;
  z-index: 90;
  inset-block-end: 0;
  inset-inline: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  background: #0080c4;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 0;
  box-shadow: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease), transform 0.3s var(--ease), background 0.25s var(--ease);
}
.sticky-cta:hover {
  background: #006aa8;
}
.sticky-cta svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}
.sticky-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .sticky-cta { transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease); }
}
