/* =====================================================
   הנקודה הירוקה — Park Tzora / Denisra
   Dark premium one-pager · RTL · brand: #000 / #3FDD91
   ===================================================== */

:root {
  --ink: #000000;
  --ink-2: #060a08;
  --ink-3: #0b120e;
  --green: #3FDD91;
  --green-strong: #2fca80;
  --green-deep: #0C2A1B;
  --green-ghost: rgba(63, 221, 145, 0.14);
  --white: #F2F7F4;
  --muted: #9fb3a8;
  --line: rgba(242, 247, 244, 0.1);

  --font-display: 'Heebo', sans-serif;
  --font-body: 'Assistant', 'Heebo', sans-serif;

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --radius: 20px;
  --container: 1200px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: clip;
  color-scheme: dark;
}

a, button, input, select, .tab {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

h1, h2, h3 { text-wrap: balance; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

::selection { background: var(--green); color: var(--ink); }

.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: fixed; top: -100px; right: 16px;
  background: var(--green); color: var(--ink);
  padding: 12px 20px; border-radius: 999px;
  font-weight: 700; z-index: 300; text-decoration: none;
  transition: top 200ms var(--ease-out);
}
.skip-link:focus { top: 16px; }

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

/* ---------- Grain / atmosphere ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 90;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 9s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3%, 2%); }
  40% { transform: translate(2%, -3%); }
  60% { transform: translate(-2%, -2%); }
  80% { transform: translate(3%, 3%); }
}

/* ---------- The travelling brand dot ----------
   Position/scale driven by JS (scroll-scrubbed glide);
   color, glow and opacity morph via [data-tone] transitions. */
.brand-dot {
  position: fixed;
  top: 0; left: 0;
  width: 44vmin; height: 44vmin;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: var(--green);
  transition:
    background-color 1100ms ease,
    opacity 1100ms ease,
    box-shadow 1100ms ease;
  will-change: transform;
}
html:not(.js) .brand-dot {
  transform: translate(calc(22vw - 50%), calc(48vh - 50%));
}
/* soft inner light — gives the flat disc gentle depth */
.brand-dot::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, rgba(255,255,255,0.28), rgba(255,255,255,0) 58%);
  opacity: 0.9;
  transition: opacity 900ms ease;
}
.brand-dot::after {
  content: '';
  position: absolute; inset: -16%;
  border-radius: 50%;
  border: 1px solid var(--green-ghost);
  animation: dot-breathe 6s ease-in-out infinite;
}
@keyframes dot-breathe {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.05); opacity: 0.35; }
}
body[data-tone="dim"] .brand-dot::before,
body[data-tone="deep"] .brand-dot::before { opacity: 0.25; }
body[data-tone="ghost"] .brand-dot::before { opacity: 0; }
body[data-tone="green"] .brand-dot { background: var(--green); opacity: 0.92; box-shadow: 0 0 140px rgba(63,221,145,0.35); }
body[data-tone="green-soft"] .brand-dot { background: var(--green); opacity: 0.1; box-shadow: none; }
body[data-tone="dim"] .brand-dot { background: var(--green-deep); opacity: 0.85; box-shadow: none; }
body[data-tone="deep"] .brand-dot { background: var(--green-deep); opacity: 0.55; box-shadow: none; }
body[data-tone="ghost"] .brand-dot { background: transparent; opacity: 1; box-shadow: inset 0 0 0 1.5px rgba(63,221,145,0.5); }

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none; z-index: 400;
  opacity: 0;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--green);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid rgba(63,221,145,0.55);
  transform: translate(-50%, -50%);
  transition: width 250ms var(--ease-out), height 250ms var(--ease-out), border-color 250ms ease;
}
body.cursor-on .cursor-dot, body.cursor-on .cursor-ring { opacity: 1; }
body.cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  border-color: var(--green);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-display); margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--green);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  flex: none;
}
.eyebrow.center { justify-content: center; width: 100%; }

.section-title {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
}
.section-title em {
  font-style: normal;
  color: var(--green);
}
.section-title.center { text-align: center; }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  color: var(--white);
  font-weight: 400;
  margin: 0 0 16px;
}
.lead strong { color: var(--green); }
p { color: var(--muted); margin: 0 0 16px; }
p.lead { color: #d7e2dc; }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms var(--ease-out), background-color 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.btn:active { transform: scale(0.97); }
.btn-solid {
  background: var(--green); color: var(--ink);
}
.btn-solid:hover { background: var(--green-strong); box-shadow: 0 8px 30px rgba(63,221,145,0.35); }
.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(242,247,244,0.3);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-lg { min-height: 56px; padding: 14px 34px; font-size: 1.08rem; }
.btn-sm { min-height: 44px; padding: 9px 22px; font-size: 0.95rem; }

:is(a, button, input, select):focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn:focus-visible { border-radius: 999px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--green); font-weight: 700; text-decoration: none;
  font-family: var(--font-display);
}
.link-arrow svg { width: 20px; height: 20px; transition: transform 250ms var(--ease-out); }
.link-arrow:hover svg { transform: translateX(-6px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0;
  z-index: 200;
  transition: background-color 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
}
.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brandbar { display: flex; align-items: center; gap: 18px; min-width: 0; }
.logo-sep {
  width: 1px;
  height: 38px;
  flex: none;
  background: linear-gradient(180deg, transparent, rgba(63, 221, 145, 0.65), transparent);
}
.header-denisra {
  height: 34px;
  width: auto;
  flex: none;
  opacity: 0.92;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--white);
}
.logo-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green);
  flex: none;
  transition: transform 300ms var(--ease-out);
}
.logo:hover .logo-dot { transform: scale(1.12); }
.logo-text {
  font-family: var(--font-display);
  font-weight: 200; font-size: 1.28rem; line-height: 1.05;
  display: flex; flex-direction: column;
}
.logo-text strong { font-weight: 800; color: var(--green); }
.logo-text small {
  font-family: var(--font-body);
  font-size: 0.66rem; color: var(--muted);
  letter-spacing: 0.08em; margin-top: 4px;
}

.main-nav { display: flex; gap: 26px; }
.main-nav a {
  color: var(--muted); text-decoration: none;
  font-weight: 600; font-size: 0.98rem;
  padding: 6px 2px;
  position: relative;
  transition: color 200ms ease;
}
.main-nav a::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms var(--ease-out);
}
.main-nav a:hover, .main-nav a.is-active { color: var(--white); }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  transition: color 200ms ease;
}
.header-phone svg { width: 18px; height: 18px; color: var(--green); }
.header-phone:hover { color: var(--green); }

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  background: transparent; border: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 7px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--white);
  border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 90px;
  overflow: clip;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-ellipse {
  position: absolute;
  top: 50%; left: -34vmax;
  width: 72vmax; height: 110vmax;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--green-deep);
  opacity: 0.75;
  filter: blur(2px);
}

.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 780px; }

/* tag chip shared by render images */
.media-tag {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--green);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.85rem;
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line);
  background: rgba(6, 10, 8, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 9px 18px;
  color: #cfe0d7;
  font-weight: 600; font-size: 0.92rem;
  margin: 0 0 30px;
}
.pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  position: relative; flex: none;
}
.pulse-dot::after {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--green);
  animation: pulse-ring 2s var(--ease-out) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero-title {
  font-size: clamp(3.4rem, 11vw, 8.2rem);
  line-height: 0.99;
  font-weight: 100;
  letter-spacing: 0.01em;
  margin: 0 0 26px;
}
.hero-title .line { display: block; }
.hero-title .line-accent { font-weight: 200; }
.dot-i {
  font-style: normal;
  color: var(--green);
  font-weight: 800;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 400;
  color: var(--white);
  margin: 0 0 14px;
}
.hero-sub strong { color: var(--green); font-weight: 800; }

.hero-desc { max-width: 560px; margin-bottom: 36px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 54px; }

.hero-stats {
  display: flex; gap: clamp(24px, 5vw, 60px);
  list-style: none; padding: 0; margin: 0;
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats b {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  color: var(--white);
  line-height: 1.1;
}
.hero-stats span { color: var(--muted); font-size: 0.9rem; }

.scroll-hint {
  position: absolute; bottom: 26px; right: 50%;
  transform: translateX(50%);
  width: 30px; height: 52px;
  border: 1.5px solid rgba(242,247,244,0.3);
  border-radius: 999px;
  display: flex; justify-content: center;
  z-index: 2;
}
.scroll-hint-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  margin-top: 9px;
  animation: scroll-drop 1.8s var(--ease-in-out) infinite;
}
@keyframes scroll-drop {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(24px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* load-in reveals (hidden state only when JS is available) */
.js .reveal-load {
  opacity: 0;
  transform: translateY(26px);
  animation: rise 900ms var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative; z-index: 2;
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
  padding: 18px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  animation: marquee var(--marquee-dur, 26s) linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.25rem;
  color: #cfe0d7;
  white-space: nowrap;
}
.marquee-track i { color: var(--green); font-size: 0.55rem; font-style: normal; }
@keyframes marquee {
  to { transform: translateX(var(--marquee-shift, 50%)); }
}

/* ---------- Sections & layout ---------- */
.section { position: relative; z-index: 2; padding: clamp(80px, 11vw, 140px) 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
/* בלי זה, תוכן שלא נשבר (כמו שורת הפרויקטים) מנפח את עמודת הגריד מעבר למסך */
.split > * { min-width: 0; }
.split-reverse .split-text { order: 1; }
.split-reverse .split-media { order: 2; }

/* scroll reveals (hidden state only when JS is available) */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  transition-delay: var(--d, 0s);
}
.js .reveal.in-view { opacity: 1; transform: translateY(0); }

.js .reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1000ms var(--ease-in-out);
  transition-delay: var(--d, 0s);
}
.js .reveal-clip.in-view { clip-path: inset(0 0 0 0); }

/* directional motion on section transitions:
   text glides in from the right (RTL reading side), media from the left */
.js .split .split-text .reveal,
.js .about-text .reveal,
.js .leads .leads-text .reveal {
  transform: translateX(46px);
}
.js .split .split-media .reveal,
.js .split .split-media.reveal,
.js .about-bleed.reveal,
.js .leads .lead-form.reveal {
  transform: translateX(-46px);
}
.js .split .split-text .reveal.in-view,
.js .about-text .reveal.in-view,
.js .leads .leads-text .reveal.in-view,
.js .split .split-media .reveal.in-view,
.js .split .split-media.reveal.in-view,
.js .about-bleed.reveal.in-view,
.js .leads .lead-form.reveal.in-view {
  transform: translateX(0);
}
.js .split .split-media .reveal-clip {
  opacity: 0;
  transform: translateX(-46px);
  transition: clip-path 1000ms var(--ease-in-out), transform 900ms var(--ease-out), opacity 900ms var(--ease-out);
}
.js .split .split-text .reveal-clip {
  opacity: 0;
  transform: translateX(46px);
  transition: clip-path 1000ms var(--ease-in-out), transform 900ms var(--ease-out), opacity 900ms var(--ease-out);
}
.js .split .reveal-clip.in-view { opacity: 1; transform: translateX(0); }

/* ---------- About: full-bleed render on the left half ---------- */
.about {
  min-height: clamp(560px, 60vw, 720px);
  display: flex;
  align-items: center;
  overflow: clip;
}
.about .container { width: min(var(--container), 100% - 48px); }
.about-text { width: min(600px, 47%); }
.about-bleed {
  position: absolute;
  margin: 0;
  left: 0; top: 0; bottom: 0;
  width: 47%;
  border-radius: 0 var(--radius) var(--radius) 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-left: 0;
}
.about-bleed img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .about-bleed:hover img { transform: scale(1.03); }
}

/* ---------- Location ---------- */
.loc-points {
  list-style: none; padding: 0; margin: 26px 0 0;
  display: flex; flex-direction: column; gap: 14px;
  color: #d7e2dc;
}
.loc-points li { display: flex; align-items: center; gap: 14px; font-weight: 600; }
.loc-chip {
  flex: none;
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-ghost);
  border: 1px solid rgba(63,221,145,0.35);
  color: var(--green);
  font-family: var(--font-display); font-weight: 800;
}
.loc-chip svg { width: 22px; height: 22px; }

.map-wrap {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(10px, 2vw, 22px);
}
.map-svg { width: 100%; height: auto; display: block; }
.road {
  fill: none;
  stroke: rgba(242,247,244,0.28);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2000ms var(--ease-in-out);
}
.road-minor { stroke: rgba(242,247,244,0.1); stroke-width: 2; }
.road-38 { stroke: rgba(63,221,145,0.7); stroke-width: 5; transition-delay: 300ms; }
.map-wrap.in-view .road { stroke-dashoffset: 0; }

.map-forest ellipse { fill: #0C2A1B; opacity: 0.85; }
.coastline { fill: none; stroke: rgba(63,221,145,0.4); stroke-width: 2; }

.road-badge circle {
  fill: #101813;
  stroke: rgba(242,247,244,0.35);
  stroke-width: 1.2;
}
.road-badge text {
  fill: var(--white);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  text-anchor: middle;
}
.road-badge-38 circle { fill: var(--green); stroke: none; }
.road-badge-38 text { fill: var(--ink); font-weight: 800; }

.town circle { fill: rgba(242,247,244,0.55); }
.town-city circle { fill: var(--white); }
.town text {
  fill: #cfe0d7;
  font-family: var(--font-body);
  font-size: 14px;
}
.town-city text { font-weight: 700; fill: var(--white); }
.town-forest text { fill: #6fa387; font-size: 12.5px; font-style: italic; }
.dir-label { fill: var(--muted); font-size: 13px; font-weight: 600; }
.town { opacity: 0; transition: opacity 600ms ease; transition-delay: calc(1s + var(--td, 0s)); }
.map-wrap.in-view .town { opacity: 1; }

.inset text { font-size: 10.5px; }
.inset .town circle { fill: rgba(242,247,244,0.45); }
.inset-marker { fill: var(--green); }
.inset-marker-label { fill: var(--green) !important; font-weight: 700; }

.marker-core { fill: var(--green); }
.marker-ripple {
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  opacity: 0;
  transform-origin: 370px 196px;
  animation: map-ripple 2.6s var(--ease-out) infinite;
}
.marker-ripple-2 { animation-delay: 1.3s; }
@keyframes map-ripple {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}
.marker-label {
  fill: var(--ink);
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  text-anchor: middle;
}
.map-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 14px;
}
.map-actions a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
  color: #d7e2dc;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem;
  transition: border-color 200ms ease, color 200ms ease, transform 160ms var(--ease-out);
}
.map-actions a:hover { border-color: rgba(63, 221, 145, 0.5); color: var(--green); }
.map-actions a:active { transform: scale(0.97); }
.map-actions svg { width: 18px; height: 18px; color: var(--green); }

/* ---------- Numbers ---------- */
.numbers { text-align: center; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  text-align: right;
}
.stat-card {
  background: rgba(6, 10, 8, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  overflow: hidden;
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out), border-color 300ms ease;
}
.stat-card:hover { border-color: rgba(63,221,145,0.4); }
.stat-photo {
  margin: -34px -30px 0;
  height: 170px;
  overflow: hidden;
  position: relative;
}
.stat-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(6,10,8,0.9), transparent 55%);
}
.stat-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
@media (hover: hover) and (pointer: fine) {
  .stat-card:hover .stat-photo img { transform: scale(1.05); }
}
.stat-photo + .stat-icon { margin-top: -28px; position: relative; z-index: 2; }
.stat-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.stat-icon svg { width: 26px; height: 26px; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.stat-card h3 { color: var(--green); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.stat-card p { margin: 0; font-size: 0.98rem; }

/* ---------- Band ---------- */
.band {
  position: relative; z-index: 2;
  padding: clamp(70px, 9vw, 120px) 0 clamp(30px, 5vw, 60px);
}
.band-head { margin-bottom: 44px; }
.band-head .section-title { margin-bottom: 0; }
.band-media {
  position: relative;
  margin: 0 auto;
  width: min(1160px, 100% - 48px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}
.band-media img { width: 100%; height: auto; display: block; }

/* ---------- Mix ---------- */
.mix-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 54px;
}
.mix-head .lead { margin-bottom: 6px; max-width: 560px; }

.mix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mix-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out), border-color 300ms ease, background-color 300ms ease;
}
.mix-card:hover { border-color: rgba(63,221,145,0.45); background: var(--ink-3); }
.mix-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-ghost);
  color: var(--green);
  border: 1px solid rgba(63,221,145,0.3);
  margin-bottom: 18px;
  transition: background-color 300ms ease, color 300ms ease, transform 300ms var(--ease-out);
}
.mix-card:hover .mix-icon { background: var(--green); color: var(--ink); transform: rotate(-6deg); }
.mix-icon svg { width: 24px; height: 24px; }
.mix-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 6px; }
.mix-card p { margin: 0; font-size: 0.96rem; }
.mix-card-accent { border-color: rgba(63,221,145,0.4); background: linear-gradient(160deg, rgba(63,221,145,0.09), transparent 55%); }


/* ---------- Floor plan figures ---------- */
.panel-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  align-items: start;
  max-width: 1060px;
  margin-inline: auto;
}
.panel-grid .units-table { max-width: none; margin: 0; }
.plan-figure {
  margin: 0;
  background: #f4f8f5;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 14px;
}
.plan-figure img { width: 100%; border-radius: 8px; }
.plan-figure .axon {
  margin-top: 12px;
  border: 1px solid rgba(11, 18, 14, 0.08);
}
.plan-figure figcaption {
  padding-top: 10px;
  text-align: center;
  color: #5b6f63;
  font-size: 0.82rem;
}

/* ---------- Advantages ---------- */
.advantages { background: var(--ink-2); border-block: 1px solid var(--line); }
.adv-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
}
.adv-list li {
  display: flex; align-items: center; gap: 22px;
  padding: 21px 6px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 500;
  color: #e6efe9;
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out), padding-right 300ms var(--ease-out);
}
.adv-list li:first-child { border-top: 1px solid var(--line); }
@media (hover: hover) and (pointer: fine) {
  .adv-list li:hover { padding-right: 18px; }
  .adv-list li:hover .adv-num { background: var(--green); color: var(--ink); }
}
.adv-num {
  flex: none;
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(63,221,145,0.4);
  color: var(--green);
  font-weight: 700; font-size: 0.92rem;
  transition: background-color 250ms ease, color 250ms ease;
}
.adv-media {
  margin: 34px 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: clamp(200px, 22vw, 280px);
}
.adv-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

/* ---------- Units ---------- */
.tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
  margin: 40px 0 34px;
}
.tab {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1rem;
  color: var(--muted);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 48px;
  padding: 10px 26px;
  cursor: pointer;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 160ms var(--ease-out);
}
.tab:active { transform: scale(0.97); }
.tab:hover { color: var(--white); border-color: rgba(63,221,145,0.4); }
.tab.is-active {
  background: var(--green);
  color: var(--ink);
  border-color: var(--green);
  font-weight: 800;
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: panel-in 450ms var(--ease-out); }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.units-table {
  width: 100%;
  max-width: 760px;
  margin-inline: auto;
  border-collapse: collapse;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.units-table th, .units-table td {
  padding: 15px 22px;
  text-align: right;
  border-bottom: 1px solid var(--line);
}
.units-table thead th {
  font-family: var(--font-display);
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  background: rgba(63,221,145,0.06);
}
.units-table tbody tr:last-child td { border-bottom: 0; }
.units-table tfoot td {
  border-bottom: 0;
  border-top: 1px solid rgba(63,221,145,0.3);
  color: var(--green);
  font-weight: 700;
}
.units-table tbody tr { transition: background-color 200ms ease; }
.units-table tbody tr:hover { background: rgba(63,221,145,0.05); }
.units-table td:first-child {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--white);
}
.units-note {
  text-align: center;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- Denisra ---------- */
.denisra { background: var(--ink-2); border-block: 1px solid var(--line); overflow: clip; }
.denisra-projects { margin-top: 26px; }
.denisra-projects-label {
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 12px;
}
.denisra-projects-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-bottom: 4px;
}
.denisra-projects-row::-webkit-scrollbar { display: none; }
.denisra-projects-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  color: #cfe0d7;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color 250ms ease, color 250ms ease;
}
.denisra-projects-row span:hover { border-color: rgba(63,221,145,0.45); color: var(--white); }
.denisra-side { display: flex; flex-direction: column; gap: 26px; }
.denisra-facts {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 18px;
}
.denisra-facts li {
  display: flex; align-items: center; gap: 24px;
  background: rgba(0,0,0,0.45);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out), border-color 300ms ease;
}
.denisra-facts li:hover { border-color: rgba(63,221,145,0.4); }
.denisra-facts b {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 2.6rem;
  color: var(--green);
  min-width: 86px;
  line-height: 1;
}
.denisra-facts span { color: #d7e2dc; font-weight: 600; }

/* ---------- Leads ---------- */
.leads { padding-bottom: clamp(110px, 14vw, 170px); }
.leads-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.leads-contact {
  list-style: none; padding: 0; margin: 30px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.leads-contact a {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
  transition: color 200ms ease;
}
.leads-contact a:hover { color: var(--green); }
.leads-contact svg { width: 20px; height: 20px; color: var(--green); }

.lead-form {
  position: relative;
  background: var(--ink-2);
  border: 1px solid rgba(63,221,145,0.25);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(28px, 4vw, 46px);
  box-shadow: 0 40px 120px rgba(0,0,0,0.55), 0 0 80px rgba(63,221,145,0.07);
}
.form-title {
  font-size: 1.7rem; font-weight: 800;
  margin-bottom: 26px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-weight: 700; font-size: 0.95rem;
  margin-bottom: 8px;
  color: #d7e2dc;
}
.field input, .field select {
  width: 100%;
  min-height: 52px;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  padding: 12px 18px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  appearance: none;
}
.field input::placeholder { color: rgba(159,179,168,0.55); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(63,221,145,0.18);
}
.field.has-error input, .field.has-error select { border-color: #ff7d7d; }
.field-error {
  display: block;
  color: #ff9d9d;
  font-size: 0.86rem;
  min-height: 1.2em;
  margin-top: 6px;
}
/* ---------- Custom select (styled dropdown) ---------- */
.custom-select { position: relative; }
.select-trigger {
  width: 100%;
  min-height: 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  color: rgba(159,179,168,0.55);
  font-family: var(--font-body);
  font-size: 1.05rem;
  text-align: right;
  padding: 12px 18px;
  cursor: pointer;
  transition: border-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}
.custom-select.has-value .select-trigger { color: var(--white); }
.select-trigger:focus-visible,
.custom-select.is-open .select-trigger {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(63,221,145,0.18);
}
.select-trigger svg {
  width: 18px; height: 18px; flex: none;
  color: var(--muted);
  transition: transform 250ms var(--ease-out), color 200ms ease;
}
.custom-select.is-open .select-trigger svg { transform: rotate(180deg); color: var(--green); }
.field.has-error .select-trigger { border-color: #ff7d7d; }

.select-menu {
  position: absolute;
  top: calc(100% + 8px); right: 0; left: 0;
  z-index: 30;
  margin: 0; padding: 8px;
  list-style: none;
  background: var(--ink-2);
  border: 1px solid rgba(63,221,145,0.35);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px rgba(63,221,145,0.08);
  transform-origin: top center;
  animation: select-pop 220ms var(--ease-out);
}
.select-menu[hidden] { display: none; }
@keyframes select-pop {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.select-menu li {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  color: #d7e2dc;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease;
}
.select-menu li + li { margin-top: 2px; }
.select-menu li:hover, .select-menu li:focus-visible {
  outline: none;
  background: rgba(63,221,145,0.12);
  color: var(--green);
}
.select-menu li::after {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  flex: none;
  background: var(--green);
  opacity: 0;
  transition: opacity 150ms ease;
}
.select-menu li[aria-selected="true"] { color: var(--green); font-weight: 600; }
.select-menu li[aria-selected="true"]::after { opacity: 1; }

.hp-field {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.btn-submit { width: 100%; position: relative; }
.btn-submit .btn-loading {
  display: none;
  width: 20px; height: 20px;
  border: 2.5px solid rgba(0,0,0,0.25);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 500ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-submit.is-loading { pointer-events: none; opacity: 0.85; }
.btn-submit.is-loading .btn-loading { display: inline-block; }

.form-note a { color: var(--green); text-underline-offset: 3px; }
.form-note {
  font-size: 0.82rem;
  color: rgba(159,179,168,0.7);
  text-align: center;
  margin: 14px 0 0;
}

.form-success[hidden] { display: none; }
.form-success {
  position: absolute; inset: 0;
  background: var(--ink-2);
  border-radius: inherit;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 400ms var(--ease-out), transform 400ms var(--ease-out);
}
.form-success.is-visible { opacity: 1; transform: scale(1); }
.form-success h3 { font-size: 1.5rem; margin-bottom: 10px; }
.form-success p { margin: 0; }
.success-dot {
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--green); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  animation: success-pop 600ms var(--ease-out);
}
.success-dot svg { width: 34px; height: 34px; }
@keyframes success-pop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative; z-index: 2;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  padding: 50px 0 30px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.footer-park { margin: 12px 0 0; font-size: 0.9rem; }
.footer-park span { color: rgba(63,221,145,0.5); margin-inline: 8px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.footer-contact a {
  color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-weight: 600;
  transition: color 200ms ease;
}
.footer-contact a:hover { color: var(--green); }
.footer-address, .footer-hours { color: var(--muted); font-size: 0.9rem; }
.footer-contact svg {
  width: 1em; height: 1em;
  vertical-align: -0.12em;
  margin-inline-end: 7px;
  color: var(--green);
}
.footer-legal {
  padding-top: 22px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-legal p { font-size: 0.8rem; color: rgba(159,179,168,0.6); margin: 0; max-width: 640px; }
.footer-credit {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.8rem; color: rgba(159,179,168,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-credit img {
  height: 15px; width: auto; display: block;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.footer-credit:hover { color: rgba(159,179,168,0.9); }
.footer-credit:hover img { opacity: 1; }

/* ---------- Mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  bottom: 0; inset-inline: 0;
  z-index: 150;
  display: none;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 350ms var(--ease-out);
}
.mobile-cta.is-visible { transform: translateY(0); }
.mobile-cta .btn { flex: 1; }
.btn svg { width: 20px; height: 20px; flex: none; }

/* ---------- Legal pages ---------- */
.legal-main { padding: calc(var(--header-h) + 46px) 0 90px; position: relative; z-index: 1; }
.legal-main .container { max-width: 840px; }
.legal-title { font-size: clamp(2rem, 5vw, 2.9rem); font-weight: 800; line-height: 1.15; margin: 0 0 10px; }
.legal-title em { font-style: normal; color: var(--green); }
.legal-updated { color: var(--muted); font-size: 0.9rem; margin: 0 0 38px; }
.legal-main h2 {
  font-size: 1.3rem; font-weight: 800;
  margin: 40px 0 12px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.legal-main h2::before { content: ''; display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: var(--green); margin-inline-end: 10px; }
.legal-main p, .legal-main li { color: #c9d6cf; line-height: 1.85; }
.legal-main ul { padding-inline-start: 22px; margin: 10px 0 18px; }
.legal-main li { margin-bottom: 7px; }
.legal-main a { color: var(--green); text-underline-offset: 3px; }
.legal-note {
  background: rgba(63,221,145,0.07);
  border: 1px solid rgba(63,221,145,0.25);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 18px 0;
}
.legal-back {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 30px;
  color: var(--green); text-decoration: none;
  font-weight: 600;
}
.legal-back:hover { text-decoration: underline; text-underline-offset: 3px; }
.legal-back svg { width: 17px; height: 17px; }

/* footer legal links row */
.footer-links {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  padding-top: 20px;
  font-size: 0.85rem;
}
.footer-links a { color: var(--muted); text-decoration: none; transition: color 200ms ease; }
.footer-links a:hover { color: var(--green); }
.footer-links span { color: rgba(63,221,145,0.5); margin-inline: 10px; }

.a11y-statement {
  display: block;
  margin-top: 4px;
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
}
.a11y-statement:hover { color: var(--green); }

/* ---------- Cookie consent ---------- */
.cookie-pop[hidden] { display: none; }
.cookie-pop:not(.is-in) { pointer-events: none; }
.cookie-pop {
  position: fixed;
  bottom: 20px; right: 20px;
  z-index: 320;
  display: flex; gap: 16px; align-items: flex-start;
  width: min(400px, calc(100vw - 28px));
  background: var(--ink-2);
  border: 1px solid rgba(63,221,145,0.35);
  border-radius: calc(var(--radius) + 6px);
  padding: 22px;
  box-shadow: 0 28px 70px rgba(0,0,0,0.65), 0 0 50px rgba(63,221,145,0.08);
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 450ms var(--ease-out), transform 450ms var(--ease-out);
}
.cookie-pop.is-in { opacity: 1; transform: translateY(0) scale(1); }
.cookie-dot {
  position: absolute;
  top: -76px;                 /* השקית יושבת על הקצה העליון של הפופ-אפ */
  inset-inline-start: 12px;
  width: 118px;
  animation: cookie-nudge 4s ease-in-out infinite;
}
.cookie-dot img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.45));
}
@keyframes cookie-nudge {
  0%, 84%, 100% { transform: rotate(0); }
  88% { transform: rotate(-10deg); }
  92% { transform: rotate(8deg); }
  96% { transform: rotate(-4deg); }
}
.cookie-body h3 { font-size: 1.1rem; margin: 2px 0 6px; }
.cookie-body h3 .dot-i { color: var(--green); }
.cookie-body p { margin: 0 0 14px; font-size: 0.9rem; color: var(--muted); line-height: 1.55; }
.cookie-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.cookie-decline {
  background: none; border: 0; cursor: pointer;
  color: var(--muted);
  font-family: var(--font-body); font-size: 0.88rem;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 200ms ease;
}
.cookie-decline:hover { color: var(--white); }

/* ---------- Accessibility widget ---------- */
.a11y {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 330;
  transition: opacity 300ms ease;
}
.a11y-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0; cursor: pointer;
  background: var(--green);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 24px rgba(63,221,145,0.35);
  transition: transform 200ms var(--ease-out), box-shadow 200ms ease;
}
.a11y-btn:hover { transform: scale(1.08); }
.a11y-btn:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.a11y-btn svg { width: 26px; height: 26px; }
.a11y-panel {
  position: absolute;
  bottom: calc(100% + 12px); left: 0;
  width: min(300px, calc(100vw - 40px));
  background: var(--ink-2);
  border: 1px solid rgba(63,221,145,0.35);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 40px rgba(63,221,145,0.08);
  transform-origin: bottom left;
  animation: select-pop 220ms var(--ease-out);
}
.a11y-panel[hidden] { display: none; }
.a11y-panel h3 { font-size: 1.15rem; margin: 0 0 14px; }
.a11y-panel h3 .dot-i { color: var(--green); }
.a11y-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-grid button {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 12px 6px;
  background: rgba(0,0,0,0.45);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  color: #d7e2dc;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}
.a11y-grid button b { font-size: 1.15rem; line-height: 1; color: var(--green); font-weight: 700; }
.a11y-grid button:hover { border-color: rgba(63,221,145,0.45); color: var(--white); }
.a11y-grid button[aria-pressed="true"] {
  border-color: var(--green);
  background: rgba(63,221,145,0.12);
  color: var(--green);
}
.a11y-reset {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  background: none; border: 0; cursor: pointer;
  color: var(--muted);
  font-family: var(--font-body); font-size: 0.85rem;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 200ms ease;
}
.a11y-reset:hover { color: var(--white); }

/* accessibility modes */
body.a11y-contrast {
  --muted: #e9f2ed;
  --line: rgba(255,255,255,0.35);
}
body.a11y-contrast p, body.a11y-contrast span, body.a11y-contrast li { color: #f4faf7; }
body.a11y-gray::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 9990;
  pointer-events: none;
  backdrop-filter: grayscale(1);
}
body.a11y-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  color: var(--green) !important;
}
body.a11y-motion *, body.a11y-motion *::before, body.a11y-motion *::after {
  animation: none !important;
  transition: none !important;
}
body.a11y-motion .reveal, body.a11y-motion .reveal-load, body.a11y-motion .reveal-clip {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 1024px) {
  .split, .leads-inner { grid-template-columns: 1fr; }
  .about { min-height: 0; display: flex; flex-direction: column; }
  .about-bleed {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 0;
    border-inline: 0;
    order: 2;
    margin: 44px 0 0;
  }
  .about-text { width: 100%; max-width: 640px; }
  .split-reverse .split-text { order: 0; }
  .split-media { max-width: 640px; }
  .mix-head { grid-template-columns: 1fr; align-items: start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid .stat-card:last-child { grid-column: 1 / -1; }
  .stats-grid .stat-card:last-child .stat-photo { height: 220px; }
  .mix-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 66px; }

  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    gap: 4px;
    background: rgba(0,0,0,0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out);
    z-index: 190;
  }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; overscroll-behavior: contain; }
  .main-nav a { padding: 13px 4px; font-size: 1.12rem; border-bottom: 1px solid rgba(242,247,244,0.06); }
  .nav-toggle { display: flex; }
  .header-phone span { display: none; }
  .header-actions .btn { display: none; }
  .brandbar { gap: 12px; }
  .logo-sep { height: 30px; }
  .header-denisra { height: 26px; }
  .logo-text small { display: none; }

  .brand-dot { width: 58vmin; height: 58vmin; opacity: 0.5; }
  body[data-tone="green"] .brand-dot { opacity: 0.55; }

  .hero { padding-bottom: 70px; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { flex-wrap: nowrap; gap: 18px; }
  .hero-stats li { flex: 1 1 0; }
  .hero-stats span { font-size: 0.82rem; }
  .scroll-hint { display: none; }

  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid .stat-card:last-child { grid-column: auto; }
  .stats-grid .stat-card:last-child .stat-photo { height: 170px; }
  .mix-grid { grid-template-columns: 1fr; }
  .panel-grid { grid-template-columns: 1fr; }
  .denisra-seal { width: 112px; height: 112px; top: -20px; inset-inline-start: -10px; }
  .denisra-seal > img { width: 64px; }
  .denisra-projects-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .band-caption { margin-top: -60px; }

  .units-table th, .units-table td { padding: 12px 14px; font-size: 0.95rem; }

  .mobile-cta { display: flex; }
  .site-footer { padding-bottom: 110px; }
  .leads { scroll-margin-bottom: 90px; }

  .cookie-pop { bottom: calc(96px + env(safe-area-inset-bottom)); inset-inline: 14px; width: auto; padding: 18px; }
  .a11y { left: 12px; bottom: calc(96px + env(safe-area-inset-bottom)); }
  .a11y-btn { width: 44px; height: 44px; }
  /* בזמן שפופ-אפ העוגיות פתוח במובייל - מסתירים רגעית את כפתור הנגישות */
  .cookie-pop.is-in ~ .a11y { opacity: 0; pointer-events: none; }

  /* פוטר במובייל: הכול ממורכז */
  .footer-inner { justify-content: center; }
  .footer-brand {
    width: 100%;
    display: flex; flex-direction: column; align-items: center;
    text-align: center;
  }
  .footer-brand .brandbar { justify-content: center; }
  .footer-contact {
    width: 100%;
    flex-direction: row; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 6px 0;
    text-align: center;
  }
  .footer-contact > * + *::before {
    content: '|';
    color: rgba(63,221,145,0.5);
    margin-inline: 3px;
    font-weight: 400;
  }
  .footer-contact a { font-size: min(0.8rem, 3vw); }
  .footer-address, .footer-hours { font-size: min(0.75rem, 2.85vw); }
  .footer-contact svg { margin-inline-end: 4px; }
  .footer-legal {
    flex-direction: column; align-items: center;
    gap: 8px;
    text-align: center;
  }
  /* הקרדיט של Sello עובר מתחת לשורת הזכויות */
  .footer-legal .footer-credit { order: 3; }
}

/* =====================================================
   Reduced motion
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-load, .reveal-clip {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    animation: none !important;
    transition: none !important;
  }
  .brand-dot { transition: opacity 300ms ease, background-color 300ms ease; }
  .brand-dot::after, .marquee-track, .grain,
  .marker-ripple, .pulse-dot::after, .scroll-hint-dot { animation: none !important; }
  .cursor-dot, .cursor-ring { display: none; }
  .road { stroke-dashoffset: 0; transition: none; }
  .town { opacity: 1; transition: none; }
}
