/* ═══════════════════════════════════════
   UMINO · פעימות 1–2 · THE FIRST TABLE
   פלטה: Deep Ocean #071F26 · Ivory #F3EFE7 · Sand #D8CBB9
          Bronze #B28A5C · Sea Glass #789C97 · Charcoal #121414
   ═══════════════════════════════════════ */

:root {
  --ocean: #071F26;
  --ivory: #F3EFE7;
  --sand: #D8CBB9;
  --bronze: #B28A5C;
  --seaglass: #789C97;
  --charcoal: #121414;
  --heb: "IBM Plex Sans Hebrew", system-ui, sans-serif;
  --lat: "IBM Plex Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ocean);
  color: var(--ivory);
  font-family: var(--heb);
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; }

a { text-decoration: none; }

/* ─── Header ─── */

.site-header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 60px;
  height: 84px;
  background: transparent;
  transition: background-color .35s ease, box-shadow .35s ease;
}

.site-header.is-solid {
  background: var(--ocean);
  box-shadow: 0 1px 0 rgba(243, 239, 231, .12);
}

.logo { height: 26px; width: auto; }

.main-nav { display: flex; gap: 28px; }

.nav-item {
  font-size: 15px;
  font-weight: 600;
  color: rgba(243, 239, 231, .92);
  text-decoration: none;
  transition: color .18s ease;
}

.nav-item:hover { color: var(--bronze); }

.nav-latin {
  font-family: var(--lat);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .1em;
}

.nav-soon { opacity: .55; cursor: default; }

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heb);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 0;
}

.btn-primary {
  background: var(--bronze);
  color: var(--charcoal);
  padding: 20px 44px;
  transition: filter .16s ease;
}

.btn-primary:hover { filter: brightness(1.07); }

.btn-outline {
  border: 1px solid rgba(243, 239, 231, .7);
  color: var(--ivory);
  padding: 19px 38px;
  transition: background-color .16s ease;
}

.btn-outline:hover { background: rgba(243, 239, 231, .1); }

.btn-header { font-size: 15px; padding: 13px 26px; }

.btn:focus-visible,
.hour-tab:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}

/* ─── Hero ─── */

.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: clip;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  animation: umFade .4s ease-out both;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(7,31,38,.96) 0%, rgba(7,31,38,.92) 18%, rgba(7,31,38,.86) 32%,
    rgba(7,31,38,.80) 42%, rgba(7,31,38,.68) 50%, rgba(7,31,38,.42) 60%,
    rgba(7,31,38,.16) 68%, rgba(7,31,38,0) 76%);
}

.hero-scrim-top {
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 190px;
  background: linear-gradient(to bottom,
    rgba(7,31,38,.72) 0%, rgba(7,31,38,.55) 40%, rgba(7,31,38,0) 100%);
}

/* קו האופק — מתיישר לקו הים בנכס (ראו media queries) */

.horizon {
  position: absolute;
  top: 21.7%; /* מעודכן ב-JS לפי קו הים בנכס */
  right: 0;
  width: 46%;
  height: 6px;
  pointer-events: none;
}

.horizon-line {
  position: absolute;
  top: 2.5px; right: 0; left: 6px;
  height: 1px;
  background: var(--bronze);
  transform-origin: right center;
  animation: umLine .7s ease-out both;
}

.horizon-dot {
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--bronze);
  animation: umDot .26s ease-out .7s both;
}

.hero-content {
  position: absolute;
  right: 60px;
  bottom: 48px;
  max-width: 760px;
  z-index: 3;
  animation: umRise .5s ease-out .15s both;
}

.eyebrow {
  font-family: var(--lat);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .26em;
  color: var(--sand);
  margin: 0;
  line-height: 1;
}

.hero h1 {
  font-weight: 600;
  font-size: clamp(48px, 5.3vw, 76px);
  line-height: 1.02;
  letter-spacing: -.01em;
  margin: 20px 0 0;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(243, 239, 231, .85);
  margin: 18px 0 0;
  max-width: 600px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.facts {
  margin: 26px 0 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(243, 239, 231, .75);
}

.facts-short { display: none; }

/* ─── THE UMINO HOUR ─── */

.hour {
  background: var(--ivory);
  color: var(--charcoal);
  transition: background-color .6s ease, color .6s ease;
}

.hour[data-chapter="1"] { background: var(--sand); }

.hour[data-chapter="2"] { background: var(--ocean); color: var(--ivory); }

.hour-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 76px 60px 72px;
}

.hour h2 {
  font-weight: 600;
  font-size: clamp(36px, 3.9vw, 56px);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin: 0;
}

.hour-intro {
  font-size: 19px;
  line-height: 1.6;
  margin: 22px 0 0;
  max-width: 620px;
  color: rgba(18, 20, 20, .72);
  transition: color .6s ease;
}

.hour[data-chapter="2"] .hour-intro,
.hour[data-chapter="2"] .hour-line { color: rgba(243, 239, 231, .72); }

.hour-tabs {
  display: flex;
  gap: 30px;
  margin-top: 34px;
}

.hour-tab {
  appearance: none;
  background: none;
  border: 0;
  padding: 6px 2px;
  font-family: var(--heb);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: .02em;
  color: inherit;
  cursor: pointer;
  opacity: .55;
  transition: opacity .22s ease;
}

.hour-tab:hover { opacity: .8; }

.hour-tab[aria-selected="true"] { opacity: 1; }

.hour-stage {
  position: relative;
  width: 100%;
  height: min(560px, 62vh);
  margin-top: 44px;
  overflow: clip;
  background: var(--ocean);
  touch-action: pan-y;
}

.hour-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
  opacity: 0;
  transition: opacity .45s ease;
}

.hour-frame.is-active { opacity: 1; }

/* וידאו אנכי בבמה רחבה: מיקוד הרצועה הנראית על הנושא —
   שעת זהב: סועדים + קו האופק · לילה: השולחנות והאורחים.
   פתרון קבע: צילום רוחבי ייעודי (בבריף הצלם). */
.hour-frame[data-frame="1"] { object-position: 50% 55%; }
.hour-frame[data-frame="2"] { object-position: 50% 70%; }

.hour-line {
  font-size: 17.5px;
  line-height: 1.5;
  margin: 26px 0 0;
  color: rgba(18, 20, 20, .72);
  transition: color .6s ease;
}

/* ─── סקשנים 3–8 ─── */

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 110px 60px;
}

.kitchen h2, .paths h2, .events h2, .business h2, .location h2 {
  font-weight: 600;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin: 0;
}

.section-sub {
  font-size: 19px;
  line-height: 1.6;
  margin: 20px 0 0;
  max-width: 620px;
}

.section-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 20px 44px;
  transition: filter .16s ease;
}

.btn-dark:hover { filter: brightness(1.25); }

/* 3 · המטבח והבר */

.kitchen { background: var(--ivory); color: var(--charcoal); }

.kitchen .section-sub { color: rgba(18,20,20,.72); }

.kitchen-wide {
  position: relative;
  margin: 52px 0 0;
  overflow: clip;
}

.kitchen-wide img { width: 100%; height: auto; }

.kitchen-wide figcaption {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--ivory);
  font-size: 22px;
  font-weight: 600;
  text-shadow: 0 1px 14px rgba(7,31,38,.55);
}

.kitchen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 22px;
}

.kitchen-grid figure { margin: 0; }

.kitchen-grid img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

.kitchen-grid figcaption {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(18,20,20,.18);
  font-size: 16px;
  font-weight: 500;
}

/* 4 · מסלולי אירוח */

.paths { background: var(--sand); color: var(--charcoal); }

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.path-card { background: var(--ivory); display: flex; flex-direction: column; }

.path-card--main { border-top: 3px solid var(--bronze); }

.path-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.path-type-face {
  aspect-ratio: 4 / 3;
  background: var(--ocean);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.path-type-num {
  font-family: var(--lat);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .12em;
  color: var(--bronze);
}

.path-type-word {
  font-family: var(--lat);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .26em;
  color: var(--sand);
}

.path-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }

.path-body h3 { font-size: 22px; font-weight: 600; margin: 0; }

.path-body p { font-size: 16px; line-height: 1.6; color: rgba(18,20,20,.72); margin: 8px 0 18px; flex: 1; }

.path-link {
  align-self: flex-start;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 4px;
}

.path-link:hover { color: #5f4728; border-color: #5f4728; }

/* 5 · אירועים */

.events { background: var(--ocean); color: var(--ivory); }

.events .section-sub { color: rgba(243,239,231,.82); }

.events-grid {
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 64px;
  align-items: center;
}

.events-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.events-media figure { margin: 0; overflow: clip; }

.events-media__lead img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 50%;
}

.events-media__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.events-media__pair img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.events-media__pair img:first-child { object-position: 50% 40%; }
.events-media__pair img:last-child { object-position: 50% 50%; }

/* ─── חשיפה עדינה בכניסה לתצוגה + hover שקט ─── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}

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

.events-media figure,
.biz-media figure,
.kitchen-grid figure,
.kitchen-wide { overflow: clip; }

.events-media img,
.biz-media img,
.kitchen-grid img,
.kitchen-wide img {
  transition: transform 1.1s cubic-bezier(.22,.61,.36,1);
}

@media (hover: hover) and (pointer: fine) {
  .events-media figure:hover img,
  .biz-media figure:hover img,
  .kitchen-grid figure:hover img,
  .kitchen-wide:hover img { transform: scale(1.035); }
}

.cap-list {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 44px;
  margin: 44px 0 0;
}

.cap-list dt {
  font-family: var(--lat);
  font-size: 54px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--bronze);
}

.cap-list dd { margin: 10px 0 0; font-size: 15px; color: rgba(243,239,231,.78); }

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  padding: 22px 0;
  margin: 36px 0 0;
  border-top: 1px solid rgba(243,239,231,.22);
  border-bottom: 1px solid rgba(243,239,231,.22);
  font-size: 16px;
  font-weight: 600;
}

/* 6 · UMINO FOR BUSINESS */

.business { background: var(--sand); color: var(--charcoal); }

.biz-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 64px;
  align-items: center;
}

.biz-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.biz-media figure { margin: 0; overflow: clip; }

.biz-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.biz-media--platter img { aspect-ratio: 1 / 1; }

.biz-media figure:last-child img { object-position: 50% 38%; }

.business .section-sub { color: rgba(18,20,20,.75); }

.biz-ladder {
  list-style: none;
  padding: 0;
  margin: 44px 0 0;
  max-width: 720px;
}

.biz-ladder li {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid rgba(18,20,20,.24);
}

.biz-ladder li:last-child { border-bottom: 1px solid rgba(18,20,20,.24); }

.biz-num {
  font-family: var(--lat);
  font-size: 14px;
  font-weight: 500;
  color: #6b5433;
  min-width: 30px;
}

.biz-ladder h3 { font-size: 21px; font-weight: 600; margin: 0; }

.biz-ladder p { font-size: 16px; line-height: 1.6; color: rgba(18,20,20,.72); margin: 6px 0 0; }

/* 7 · הגעה */

.location { background: var(--ivory); color: var(--charcoal); }

.loc-table {
  margin: 44px 0 0;
  max-width: 560px;
}

.loc-table > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid rgba(18,20,20,.18);
  font-size: 17px;
}

.loc-table > div:last-child { border-bottom: 1px solid rgba(18,20,20,.18); }

.loc-table dt { color: #5C6264; }

.loc-table dd { margin: 0; font-weight: 600; }

/* 8 · סיום */

.closing {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
  background: var(--ocean);
}

.closing-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 82%;
}

.closing-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,31,38,.88), rgba(7,31,38,.45));
}

.closing-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 90px 24px;
  text-align: center;
}

.closing-rule { width: 110px; height: 1px; background: var(--bronze); }

.closing h2 {
  font-weight: 600;
  font-size: clamp(36px, 4.2vw, 60px);
  letter-spacing: -.01em;
  margin: 0;
  color: var(--ivory);
}

/* דוק מובייל */

.dock {
  display: none;
  position: fixed;
  bottom: 0; right: 0; left: 0;
  z-index: 45;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px calc(8px + env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom));
  background: rgba(7,31,38,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(243,239,231,.16);
  transform: translateY(105%);
  transition: transform .3s ease;
}

.dock.is-visible { transform: translateY(0); }

.dock-main, .dock-item {
  appearance: none;
  border: 0;
  font-family: var(--heb);
  font-size: 12px;
  font-weight: 600;
  min-height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  cursor: pointer;
  background: transparent;
}

.dock-main {
  background: var(--bronze);
  color: var(--charcoal);
}

.dock-item { color: rgba(243,239,231,.88); }

.dock-ico { width: 21px; height: 21px; display: block; }

.dock-ico svg {
  width: 100%; height: 100%;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── מפת מותג · הגעה ─── */

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

.brand-map {
  position: relative;
  width: 100%;
  aspect-ratio: 700 / 440;
  background: var(--sand);
  overflow: clip;
}

.brand-map > span { position: absolute; }

.map-sea   { inset: 0; background: var(--seaglass); clip-path: polygon(0 0, 47% 0, 38% 100%, 0 100%); }
.map-beach { inset: 0; background: #EFE8DA; clip-path: polygon(47% 0, 51% 0, 42% 100%, 38% 100%); }
.map-prom  { inset: 0; background: rgba(243,239,231,.7); clip-path: polygon(51% 0, 53.6% 0, 44.6% 100%, 42% 100%); }
.map-road  { inset: 0; background: rgba(18,20,20,.42); }
.map-road-a { clip-path: polygon(51% 0, 51.3% 0, 42.3% 100%, 42% 100%); }
.map-road-b { clip-path: polygon(53.3% 0, 53.6% 0, 44.6% 100%, 44.3% 100%); }
.map-marker { left: 46%; top: calc(47% - 6px); width: 12px; height: 12px; background: var(--bronze); }

.map-label-name  { left: calc(46% + 26px); top: calc(47% - 17px); font-size: 15px; font-weight: 600; }
.map-label-floor { left: calc(46% + 26px); top: calc(47% + 7px); font-size: 13px; color: rgba(18,20,20,.62); }
.map-label-sea   { left: 26px; bottom: 22px; font-size: 13px; letter-spacing: .1em; color: var(--ivory); }
.map-label-city  { right: 26px; top: 22px; font-size: 13px; letter-spacing: .08em; color: rgba(18,20,20,.55); }
.map-label-street{ left: 55%; top: 20px; font-size: 12px; letter-spacing: .06em; color: rgba(18,20,20,.5); }

/* ─── טפסים ותפריט מובייל ─── */

.form-overlay[hidden], .menu-overlay[hidden] { display: none; }

.form-overlay, .menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(7, 31, 38, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.form-card, .menu-card {
  position: relative;
  width: min(520px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: var(--ivory);
  color: var(--charcoal);
  padding: 34px 34px 30px;
  box-shadow: 0 24px 70px rgba(7, 31, 38, .4); /* צל פונקציונלי — Overlay בלבד */
}

.form-close {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  font-size: 20px;
  color: #5C6264;
  cursor: pointer;
}

.form-card h3 { font-size: 26px; font-weight: 600; margin: 0 0 6px; }

.form-sub { font-size: 15px; color: #4b5153; margin: 0 0 22px; }

.form-card form { display: flex; flex-direction: column; gap: 16px; }

.form-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #5C6264;
}

.form-card input, .form-card select {
  border: 0;
  border-bottom: 1px solid rgba(18, 20, 20, .35);
  background: transparent;
  font-family: var(--heb);
  font-size: 16px;
  padding: 10px 0;
  color: var(--charcoal);
}

.form-card input:focus-visible, .form-card select:focus-visible {
  outline: none;
  border-bottom-color: var(--bronze);
}

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

.form-submit { margin-top: 8px; width: 100%; }

.form-note { font-size: 13.5px; color: #80613D; margin: 10px 0 0; }

.menu-card { background: var(--ocean); color: var(--ivory); }

.menu-links { display: flex; flex-direction: column; padding-top: 20px; }

.menu-links a {
  color: var(--ivory);
  font-size: 22px;
  font-weight: 600;
  text-decoration: none;
  padding: 13px 0;
}

.menu-links .menu-reserve { color: var(--bronze); margin-top: 6px; }

.menu-facts { font-size: 13.5px; color: rgba(243, 239, 231, .65); line-height: 1.8; margin: 22px 0 0; }

.hamburger {
  display: none;
  border: 0;
  background: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}

.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ivory); }

.btn-outline-dark {
  border: 1px solid rgba(18, 20, 20, .55);
  color: var(--charcoal);
  padding: 19px 34px;
  transition: background-color .16s ease;
}

.btn-outline-dark:hover { background: rgba(18, 20, 20, .06); }

body.is-locked { overflow: hidden; }

/* ─── Footer ─── */

.site-footer {
  background: var(--charcoal);
  color: rgba(243, 239, 231, .72);
  padding: 64px 60px 32px;
  font-size: 15px;
  line-height: 1.9;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(243, 239, 231, .14);
}

.footer-logo { height: 24px; width: auto; margin-bottom: 18px; }

.site-footer p { margin: 0; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-head {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ivory);
  margin-bottom: 4px;
}

.footer-col a { color: rgba(243, 239, 231, .72); text-decoration: none; font-size: 15px; }

.footer-col a:hover { color: var(--ivory); }

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-size: 12.5px;
  color: rgba(243, 239, 231, .45);
}

.footer-legal a { color: rgba(243, 239, 231, .55); text-decoration: none; margin-inline-start: 18px; }

/* ─── אנימציות ─── */

@keyframes umFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes umLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes umDot  { from { opacity: 0; } to { opacity: 1; } }
@keyframes umRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media, .horizon-line, .horizon-dot, .hero-content { animation: none; }
  .hour, .hour-intro, .hour-line, .hour-frame, .hour-tab,
  .site-header { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .events-media img, .biz-media img, .kitchen-grid img, .kitchen-wide img { transition: none; }
  @media (hover: hover) and (pointer: fine) {
    .events-media figure:hover img, .biz-media figure:hover img,
    .kitchen-grid figure:hover img, .kitchen-wide:hover img { transform: none; }
  }
}

/* ─── מובייל ─── */

@media (max-width: 767px) {

  .site-header { padding: 0 20px; height: 72px; }
  .logo { height: 30px; }
  .main-nav { display: none; }
  .btn-header { font-size: 14px; padding: 11px 18px; }

  .horizon { top: 12.7%; width: 100%; } /* מעודכן ב-JS */
  .horizon-line { left: 6px; }

  .hero { min-height: 560px; }

  .hero-content { right: 20px; left: 20px; bottom: 28px; max-width: none; }

  .eyebrow { font-size: 11px; letter-spacing: .24em; }

  .hero h1 { font-size: 40px; line-height: 1.04; margin-top: 18px; }

  .hero-sub { font-size: 15px; line-height: 1.55; margin-top: 16px; }
  .hero-sub br { display: none; }

  .hero-ctas { flex-direction: column; align-items: stretch; gap: 0; margin-top: 26px; }

  .hero-ctas .btn-primary { height: 52px; padding: 0; width: 100%; }

  .hero-ctas .btn-outline {
    border: 0;
    padding: 0;
    height: 44px;
    justify-content: flex-start;
    margin-top: 14px;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
  }
  .hero-ctas .btn-outline:hover { background: none; }

  .facts { margin-top: 8px; font-size: 12.5px; letter-spacing: .06em; }
  .facts-full { display: none; }
  .facts-short { display: inline; }

  .hour-inner { padding: 44px 22px 40px; }

  .hour-intro { font-size: 15px; margin-top: 16px; }

  .hour-tabs { gap: 0; margin-top: 6px; order: 2; }

  .hour-tab {
    flex: 1;
    min-height: 48px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* במובייל: פריים → תוויות → משפט */
  .hour-inner { display: flex; flex-direction: column; }
  .hour h2 { order: 0; }
  .hour-intro { order: 1; }
  .hour-stage { order: 2; height: 430px; margin-top: 30px; }
  .hour-tabs { order: 3; margin-top: 12px; }
  .hour-line { order: 4; font-size: 15px; margin-top: 10px; }

  .hour-frame { object-position: 50% 42%; }
  .hour-frame[data-frame="1"] { object-position: 50% 48%; }
  .hour-frame[data-frame="2"] { object-position: 50% 60%; }

  .site-footer { padding: 44px 22px calc(30px + 78px); } /* מקום לדוק */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: span 2; }
  .footer-legal { flex-direction: column; gap: 8px; }
  .footer-legal a { margin-inline-start: 0; margin-inline-end: 18px; }

  .loc-grid { grid-template-columns: 1fr; gap: 30px; }
  .brand-map { aspect-ratio: 346 / 260; }

  .main-nav ~ .hamburger, .hamburger { display: flex; }
  .btn-header { display: none; }

  .form-overlay { align-items: flex-end; padding: 0; }
  .form-card {
    width: 100%;
    max-height: 88vh;
    padding: 28px 22px calc(24px + env(safe-area-inset-bottom));
  }
  .menu-overlay { align-items: stretch; padding: 0; }
  .menu-card { width: 100%; max-height: none; padding: 24px 22px calc(28px + env(safe-area-inset-bottom)); }

  .section-inner { padding: 60px 22px; }

  .kitchen-wide { margin-top: 32px; }
  .kitchen-wide figcaption { right: 18px; bottom: 16px; font-size: 18px; }

  .kitchen-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
  .kitchen-grid figcaption { font-size: 14px; }

  .paths-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 32px; }

  .events-grid { grid-template-columns: 1fr; gap: 36px; }
  .events-media { order: -1; }

  .biz-grid { grid-template-columns: 1fr; gap: 32px; }
  .cap-list { grid-template-columns: 1fr 1fr; gap: 28px 20px; margin-top: 34px; }
  .cap-list dt { font-size: 44px; }
  .trust-row { flex-direction: column; gap: 12px; }

  .section-ctas { flex-direction: column; align-items: stretch; }
  .section-ctas .btn { width: 100%; padding-inline: 0; height: 52px; }

  .closing { min-height: 400px; }

  .dock { display: grid; }
}

.footer-tel, .loc-table a { color: inherit; text-decoration: none; }
.footer-tel:hover, .loc-table a:hover { color: var(--bronze); }

/* ─── שורת המגשים ─── */

.platters {
  background: rgba(18, 20, 20, .05);
  border-top: 1px solid rgba(18, 20, 20, .12);
}

.platters-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 56px 60px 64px;
}

.platters-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .12em;
  margin: 0 0 28px;
  color: rgba(18, 20, 20, .6);
}

.platters-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.platters-row li { display: flex; flex-direction: column; }

.platters-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 14px;
}

.platter-name { font-size: 17px; font-weight: 600; }

.platter-meta { font-size: 14px; color: rgba(18, 20, 20, .6); margin-top: 2px; }

.platters-note {
  font-size: 14px;
  color: rgba(18, 20, 20, .6);
  margin: 26px 0 0;
}

@media (max-width: 767px) {
  .platters-inner { padding: 40px 22px 44px; }
  .platters-row {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 62%;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .platters-row::-webkit-scrollbar { display: none; }
  .platters-row li { scroll-snap-align: start; }
  .platters-title { margin-bottom: 18px; }
}

.closing picture { position: absolute; inset: 0; }

.form-actions { display: flex; gap: 12px; margin-top: 10px; }
.form-actions .btn { flex: 1; padding-inline: 0; min-height: 52px; }
.form-submit-alt { font-size: 15px; }

@media (max-width: 767px) {
  .form-actions { flex-direction: column; gap: 10px; }
}

/* ─── הירו: תנועת מצלמה איטית (Ken Burns) ─── */

@keyframes umDrift {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero-media {
  animation: umFade .4s ease-out both, umDrift 26s ease-out .4s both;
  transform-origin: 50% 42%;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media { animation: none; transform: none; }
}
