:root {
  --ink: #101312;
  --paper: #f3f1ec;
  --white: #fff;
  --muted: #6f736f;
  --line: #d6d5cf;
  --lime: #ff5a1f;
  --blue: #d94816;
  --head: "Heebo", sans-serif;
  --body: "Assistant", sans-serif;
  --max: 1240px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.5;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  display: block;
}
.demo-note {
  height: 28px;
  background: var(--lime);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav {
  height: 76px;
  padding: 0 max(22px, calc((100vw - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 38px;
  background: rgba(16, 19, 18, 0.94);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #2d302e;
}
.nav-progress {
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: -1px;
  width: calc(var(--page-progress, 0) * 100%);
  height: 2px;
  background: var(--lime);
}
.wordmark {
  font-family: var(--head);
  font-weight: 900;
  letter-spacing: -0.06em;
  font-size: 21px;
  white-space: nowrap;
}
.wordmark span {
  color: var(--lime);
}
.wordmark small {
  font-size: 8px;
  letter-spacing: 0.2em;
  display: block;
  color: #8c928e;
}
.wordmark img { width: 148px; height: auto; object-fit: contain; }
.footer .wordmark img { width: 170px; }
.nav nav {
  display: flex;
  gap: 28px;
  margin-inline-start: auto;
}
.nav nav a {
  font-size: 13px;
  color: #b8bdb9;
}
.nav nav a:hover {
  color: #fff;
}
.call-chip {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #4d524f;
  padding: 0 16px;
  font-weight: 600;
}
.call-chip svg {
  width: 17px;
  fill: var(--lime);
}
.hero {
  --hero-x: 50%;
  --hero-y: 50%;
  min-height: calc(100svh - 104px);
  position: relative;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle 260px at var(--hero-x) var(--hero-y), rgba(255, 90, 31, 0.18), transparent 72%);
  mix-blend-mode: screen;
}
.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img {
  object-fit: cover;
  object-position: center 46%;
  animation: kenburns 24s ease-in-out infinite alternate;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.15), rgba(8, 10, 9, 0.78) 72%),
    linear-gradient(0deg, rgba(8, 10, 9, 0.8), transparent 55%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 44px));
  margin-inline: max(22px, calc((100vw - var(--max)) / 2));
  margin-block: 80px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  color: #dfe4e0;
}
.eyebrow.ink {
  color: #515650;
}
.stars {
  color: var(--lime);
  letter-spacing: 0.08em;
}
.hero h1,
.section h2 {
  font-family: var(--head);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.93;
}
.hero h1 {
  font-size: clamp(56px, 8vw, 112px);
  max-width: 820px;
}
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}
.lead {
  font-size: clamp(17px, 2vw, 22px);
  max-width: 580px;
  color: #d4d8d5;
  margin: 28px 0;
}
.hero-actions,
.visit-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.15s;
}
.button.primary {
  background: var(--lime);
  color: #101312;
}
.button.quiet {
  border: 1px solid #777d79;
  color: #fff;
}
.button.dark {
  background: var(--ink);
  color: #fff;
}
.button.outline {
  border: 1px solid var(--ink);
}
.button:hover {
  transform: translateY(-2px);
}
.proof-card {
  position: absolute;
  z-index: 3;
  inset-inline-end: max(22px, calc((100vw - var(--max)) / 2));
  inset-block-end: 44px;
  width: 300px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 22px;
  border-top: 3px solid var(--lime);
}
.proof-card > span {
  font-size: 10px;
  color: var(--muted);
  font-weight: 700;
}
.proof-card blockquote {
  font-family: var(--head);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  margin: 9px 0;
}
.proof-card cite {
  font-size: 11px;
  color: var(--muted);
  font-style: normal;
}
.truth-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: auto;
  border-inline-start: 1px solid var(--line);
}
.truth-strip div {
  padding: 26px;
  border-inline-end: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.truth-strip strong {
  display: block;
  font-family: var(--head);
  font-size: 24px;
  letter-spacing: -0.04em;
}
.truth-strip span {
  font-size: 11px;
  color: var(--muted);
}
.section {
  padding: clamp(80px, 10vw, 150px) max(22px, calc((100vw - var(--max)) / 2));
}
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  margin-bottom: 70px;
}
.section-head .eyebrow {
  grid-column: 1/-1;
}
.section h2 {
  font-size: clamp(48px, 6vw, 86px);
}
.section-head.compact > div {
  align-self: end;
}
.section-head.compact > p {
  max-width: 36ch;
  color: var(--muted);
  align-self: end;
}
.trust {
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.trust-grid article {
  padding: 34px 28px;
  border-inline-start: 1px solid var(--line);
}
.trust-grid article:first-child {
  border-inline-start: 0;
}
.index {
  font-family: var(--head);
  font-size: 11px;
  color: var(--blue);
  font-weight: 700;
}
.trust-grid h3 {
  font-family: var(--head);
  font-size: 28px;
  margin: 35px 0 14px;
}
.trust-grid p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 30ch;
}
.trust-grid small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 28px;
}
.type-river {
  position: relative;
  direction: ltr;
  overflow: hidden;
  background: var(--lime);
  border-block: 1px solid rgba(16, 19, 18, 0.25);
  padding-block: 18px;
}
.type-river-track {
  display: flex;
  align-items: center;
  direction: ltr;
  gap: 0;
  width: max-content;
  animation: river-loop 12s linear infinite;
  will-change: transform;
}
.type-river-group {
  flex: none;
  min-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  padding-inline: 14px;
}
.type-river span {
  font: 900 clamp(38px, 5vw, 72px)/1 var(--head);
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.type-river i { width: 10px; height: 10px; background: var(--ink); border-radius: 50%; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 340px);
  gap: 12px;
}
.shot {
  position: relative;
  overflow: hidden;
  background: #ddd;
  cursor: zoom-in;
}
.shot::after {
  content: "פתיחה";
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -40%;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(16, 19, 18, 0.78);
  font-size: 11px;
  opacity: 0;
  transition: opacity .25s, translate .25s;
}
.shot:hover::after,.shot:focus-visible::after { opacity: 1; translate: -50% -50%; }
.shot.tall {
  grid-row: 1/3;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.shot:hover img {
  transform: scale(1.025);
}
.shot figcaption {
  position: absolute;
  inset-inline: 14px;
  inset-block-end: 14px;
  background: rgba(16, 19, 18, 0.88);
  color: #fff;
  font-size: 10px;
  padding: 7px 10px;
}
.reviews {
  background: var(--ink);
  color: #fff;
}
.review-stage {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 540px;
  border-block: 1px solid #343936;
}
.review-score {
  padding: 34px 28px;
  border-inline-end: 1px solid #343936;
  display: flex;
  flex-direction: column;
  background: var(--lime);
  color: var(--ink);
}
.review-score > span { font: 700 10px/1 var(--body); letter-spacing: .15em; }
.review-score strong { font: 900 92px/.9 var(--head); letter-spacing: -.08em; margin-top: 42px; }
.review-score small { font-size: 11px; margin-top: 10px; }
.review-score b { margin-top: auto; font: 900 110px/.72 var(--head); letter-spacing: -.08em; opacity: .2; }
.review-feature {
  padding: clamp(34px, 6vw, 86px);
  background: linear-gradient(135deg, rgba(255,90,31,.09), transparent 42%), #171b19;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-mark {
  font-family: Georgia, serif;
  color: var(--lime);
  font-size: 110px;
  line-height: 0.55;
}
.review-feature blockquote {
  font-family: var(--head);
  font-size: clamp(25px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.42;
  margin: 30px 0 50px;
  max-width: 30ch;
}
.review-feature footer {
  display: flex;
  justify-content: space-between;
  color: #aab0ac;
  font-size: 12px;
}
.review-nav { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid #343936; }
.review-nav button { min-height: 82px; padding: 16px; border: 0; border-inline-end: 1px solid #343936; background: transparent; color: #777e79; text-align: start; cursor: pointer; transition: background .2s, color .2s; }
.review-nav button:last-child { border-inline-end: 0; }
.review-nav button:hover,.review-nav button.active { background: #202522; color: #fff; }
.review-nav button.active { box-shadow: inset 0 -3px var(--lime); }
.review-nav b { display: block; color: var(--lime); font: 700 11px var(--head); margin-bottom: 7px; }
.review-nav span { font-size: 11px; }
.review-stage.is-switching { opacity: .25; transform: translateY(8px); }
.review-stage { transition: opacity .22s, transform .22s; }
.text-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--lime);
  font-size: 13px;
}
.reviews { background: #f8f9fa; color: #202124; }
.google-review-grid { min-height: 0; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; border: 0; }
.google-review { min-height: 270px; padding: 24px; border: 1px solid #dadce0; border-radius: 14px; background: #fff; box-shadow: 0 2px 8px rgba(60,64,67,.12); }
.google-review header { display: flex; align-items: center; gap: 12px; }
.google-review header > span:nth-child(2) { display: grid; line-height: 1.25; }
.google-review header small { margin-top: 4px; color: #70757a; font-size: 12px; }
.google-review header i { margin-inline-start: auto; font: 700 23px Arial,sans-serif; color: #4285f4; font-style: normal; }
.review-avatar { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; display: grid; place-items: center; background: #1a73e8; color: #fff; font: 700 19px Arial,sans-serif; }
.google-review:nth-child(2n) .review-avatar { background: #0f9d58; }
.google-review:nth-child(3n) .review-avatar { background: #db4437; }
.review-meta { display: flex; align-items: center; gap: 9px; margin: 16px 0 12px; }
.review-meta strong { color: #fbbc04; font-size: 20px; direction: ltr; letter-spacing: 1px; }
.review-meta time { color: #70757a; font: 13px Arial,sans-serif; }
.google-review blockquote { color: #3c4043; font: 400 17px/1.65 Arial,var(--body),sans-serif; }
.reviews .text-link { min-height: 48px; padding: 0 18px; display: inline-flex; align-items: center; border: 1px solid #dadce0; border-radius: 24px; background: #fff; color: #1a73e8; font-weight: 700; }
.google-stars { --rating:5; display:inline-block; direction:ltr; font:22px/1 Arial,sans-serif; letter-spacing:1px; background:linear-gradient(90deg,#fbbc04 calc(var(--rating) / 5 * 100%),#dadce0 0); -webkit-background-clip:text; background-clip:text; color:transparent; }
.google-rating-inline { display:flex; align-items:center; gap:8px; width:max-content; padding:8px 12px; border-radius:8px; background:rgba(255,255,255,.94); color:#202124 !important; box-shadow:0 2px 7px rgba(0,0,0,.15); }
.google-rating-inline small,.google-rating-fact small { color:#5f6368; font-size:12px; }
.google-rating-inline .google-g,.google-rating-fact .google-g { color:#4285f4; font:700 22px Arial,sans-serif; font-style:normal; }
.google-rating-fact { display:flex !important; flex-direction:column; align-items:center; justify-content:center; gap:6px; }
@media (max-width: 760px) { .google-review-grid { grid-template-columns: 1fr; } .google-review { min-height: 0; } }
.visit {
  display: grid;
  grid-template-columns: 1.1fr 0.78fr 0.78fr;
  gap: clamp(18px, 2.5vw, 36px);
  align-items: stretch;
  background: var(--lime);
}
.visit-copy > p:not(.eyebrow) {
  font-size: 19px;
  margin: 25px 0 30px;
}
.hours {
  background: #fff;
  padding: 40px;
  height: 100%;
}
.hours h3 {
  font-family: var(--head);
  font-size: 24px;
  margin-bottom: 20px;
}
.hours dl div {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.visit-map {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 18, 0.55);
  background: #ddd;
}
.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(1.05);
}
.visit-map-label {
  position: absolute;
  z-index: 2;
  inset-inline-start: 18px;
  inset-block-start: 18px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--ink);
  color: #fff;
  padding: 14px 16px;
  font-size: 11px;
}
.visit-map-label > span { color: var(--lime); font-weight: 700; }
.visit-map-label a { border-inline-start: 1px solid #3b403d; padding-inline-start: 18px; }
.footer {
  min-height: 130px;
  background: #090b0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px max(22px, calc((100vw - var(--max)) / 2));
  font-size: 11px;
}
.footer p {
  color: #767c78;
}
.mobile-bar {
  display: none;
}
.image-viewer {
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  background: #0b0d0c;
  color: #fff;
}
.image-viewer::backdrop { background: rgba(4, 5, 5, .9); backdrop-filter: blur(8px); }
.image-viewer img { width: 100%; max-height: calc(100svh - 100px); object-fit: contain; }
.image-viewer p { padding: 14px 18px; font-size: 12px; color: #aeb3af; }
.image-viewer-close {
  position: absolute; z-index: 2; inset-inline-end: 12px; inset-block-start: 12px;
  width: 44px; height: 44px; border: 0; background: var(--lime); color: var(--ink);
  font-size: 28px; cursor: pointer;
}
.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}
.reveal-ready [data-reveal].seen {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s,
    transform 0.6s;
}
@keyframes kenburns {
  to {
    transform: scale(1.08) translateX(-1%);
  }
}
@keyframes river-loop { to { transform: translateX(-50%); } }
a:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .nav nav {
    display: none;
  }
  .proof-card {
    display: none;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(8, 10, 9, 0.9),
      rgba(8, 10, 9, 0.15) 78%
    );
  }
  .truth-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-head {
    display: block;
  }
  .section-head.compact > p {
    margin-top: 20px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid article {
    border-inline-start: 0;
    border-top: 1px solid var(--line);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 260px 260px;
  }
  .shot.tall {
    grid-row: auto;
  }
  .review-stage,
  .visit {
    grid-template-columns: 1fr;
  }
  .review-stage { min-height: 0; }
  .review-score { min-height: 190px; border-inline-end: 0; border-bottom: 1px solid rgba(16,19,18,.25); position: relative; }
  .review-score strong { margin-top: 24px; font-size: 66px; }
  .review-score b { position: absolute; inset-inline-end: 24px; inset-block-end: 18px; font-size: 90px; }
  .review-nav { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; }
  .review-nav button { flex: 0 0 160px; scroll-snap-align: start; }
  .visit {
    gap: 40px;
  }
  .visit-map { min-height: 360px; height: 360px; }
  .visit-map iframe { height: 360px; }
}
@media (max-width: 600px) {
  body {
    padding-bottom: 62px;
  }
  .demo-note {
    font-size: 9px;
  }
  .nav {
    height: 64px;
    padding-inline: 16px;
  }
  .call-chip {
    padding: 0 11px;
  }
  .call-chip svg {
    display: none;
  }
  .hero {
    min-height: calc(100svh - 92px);
  }
  .hero-copy {
    margin-block: 55px 38px;
  }
  .hero h1 {
    font-size: 52px;
  }
  .lead {
    font-size: 17px;
  }
  .hero-actions .button {
    width: 100%;
  }
  .truth-strip strong {
    font-size: 20px;
  }
  .truth-strip div {
    padding: 19px 14px;
  }
  .section {
    padding: 76px 20px;
  }
  .section-head {
    margin-bottom: 42px;
  }
  .section h2 {
    font-size: 46px;
  }
  .gallery-grid {
    grid-template-rows: 350px 220px 220px;
  }
  .review-feature {
    padding: 28px 22px;
  }
  .review-feature blockquote {
    font-size: 25px;
  }
  .review-feature footer {
    display: grid;
    gap: 4px;
  }
  .visit {
    padding-bottom: 80px;
  }
  .visit-map-label {
    inset-inline: 10px;
    inset-block-start: 10px;
    justify-content: space-between;
    gap: 10px;
  }
  .visit-map-label > span { display: none; }
  .visit-map-label a { border-inline-start: 0; padding-inline-start: 0; }
  .hours {
    padding: 26px 20px;
  }
  .footer {
    display: grid;
    gap: 18px;
    text-align: center;
    justify-items: center;
  }
  .mobile-bar {
    display: block;
    position: fixed;
    z-index: 30;
    inset-inline: 0;
    inset-block-end: 0;
    background: var(--blue);
    color: #fff;
  }
  .mobile-bar a {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .type-river-track { animation-play-state: paused; }
}

/* Existing-site quality normalization: touch, media stability and motion safety. */
img{height:auto}
footer a,.footer a,.menu-link,.review-more,.maps-reviews,.brand,.logo{min-height:44px}
footer a,.footer a,.menu-link,.review-more,.maps-reviews{display:inline-flex;align-items:center}
:focus-visible{outline:3px solid currentColor;outline-offset:4px}
@media (prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}

/* Shared quality gate only: a seven-step scale; visual composition remains site-specific. */
body{font-size:16px}
body *{font-size:inherit}
h1{font-size:clamp(48px,7vw,96px)}
h2{font-size:clamp(34px,5vw,64px)}
h3{font-size:24px}
small,time,figcaption,.eyebrow,.kicker,.demo,.preview,.demo-note{font-size:14px}
.stars,.review-stars,.google-stars{font-size:18px}
.proof-score strong,.rating-number,.score strong,.metric strong,.stat strong{font-size:48px}
.friends-frame a,.visit-map-label a,.map a,.logo,.brand-wordmark{min-width:44px;min-height:44px;display:inline-flex;align-items:center;justify-content:center}

/* Enforced seven-step computed type scale. */
body{font-size:16px!important}
body *{font-size:inherit!important}
h1{font-size:clamp(48px,7vw,96px)!important}
h2{font-size:clamp(34px,5vw,64px)!important}
h3{font-size:24px!important}
small,time,figcaption,.eyebrow,.kicker,.demo,.preview,.demo-note{font-size:14px!important}
.stars,.review-stars,.google-stars{font-size:18px!important}
.proof-score strong,.rating-number,.score strong,.metric strong,.stat strong{font-size:48px!important}
.wordmark,.wordmark img{min-height:44px}.wordmark{display:inline-flex;align-items:center}
