/* ═══════════════════════════════════════
   UMINO · פעימות 1–2 · THE FIRST TABLE
   פלטה: Deep Ocean #071F26 · Ivory #F3EFE7 · Sand #D8CBB9
          Bronze #C8A65E (זהב הלוגו) · Rust #6E4127 · Sea Glass #789C97 · Charcoal #121414
   ═══════════════════════════════════════ */

:root {
  --ocean: #071F26;
  --ivory: #F3EFE7;
  --sand: #D8CBB9;
  --bronze: #C8A65E;   /* זהב הלוגו — נדגם מ-LOGO UMINO NEW */
  --rust:   #6E4127;   /* חלודת הלוגו — טון חם עמוק, בשימוש מדוד */
  --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-item[aria-current="page"] {
  color: var(--bronze);
  box-shadow: 0 2px 0 -1px currentColor;
}

.nav-item:focus-visible,
.menu-links a:focus-visible,
.site-header a[aria-label]:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}

.menu-links a[aria-current="page"] { 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-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }

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

.hero-slide.is-active .hero-media { 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;
  transition: top 1.5s ease-in-out, opacity .8s ease-in-out;
}

/* בשקופית שאין בה קו ים אמיתי — הקו נעלם ולא ממציא אופק */
.horizon.is-off { opacity: 0; }

.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 h2 { text-wrap: balance; max-width: 15ch; }

.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); }

/* שני נתונים בלבד — שתי עמודות שוות במקום שארית של גריד בן ארבעה */
.cap-list--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 560px;
}

.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%;
  height: auto;
  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; }

/* שני מסלולים — זה לצד זה בדסקטופ, סימטרי, בלי שארית של גריד בן שלושה */
.biz-ladder--duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  max-width: none;
}

/* כל מסלול סגור בקווים משלו — שני הטורים סימטריים */
.biz-ladder--duo li,
.biz-ladder--duo li:last-child { border-bottom: 1px solid rgba(18,20,20,.24); }

/* מיקרו־קופי מתחת לכפתורים — שקט, על רקע בהיר */
.biz-note {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(18, 20, 20, .6);
  margin: 18px 0 0;
  max-width: 640px;
}

/* 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(--ocean); }
.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; }
  .hero-slide, .horizon { transition: 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; }
  }
}

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

/* יעדי מגע בניווט העליון ברוחבי טאבלט — 44px ללא שינוי ויזואלי.
   הפריטים חסרי רקע/מסגרת, ולכן הגדלת התיבה אינה נראית: הטקסט נשאר ממורכז
   באותו גובה הדר של 84px. בדסקטופ (1025px+) לא משתנה דבר. */
@media (max-width: 1024px) {

  .site-header { padding: 0 32px; }
  .main-nav { gap: 22px; align-items: center; }
  .btn-header { white-space: nowrap; }

  .nav-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    min-width: 44px;   /* משפיע רק על "הגעה" (35px); שאר הפריטים רחבים מ-83px */
  }

  /* הקו התחתון של העמוד הפעיל מוצמד לטקסט ולא לתחתית תיבת ה-44px */
  .nav-item[aria-current="page"] { box-shadow: none; }
  .nav-item[aria-current="page"]::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: 10px;
    height: 1px;
    background: currentColor;
  }
}

@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; }
  /* במובייל — זה מתחת לזה, בלי קו כפול בין המסלולים */
  .biz-ladder--duo { grid-template-columns: 1fr; }
  .biz-ladder--duo li { border-bottom: 0; }
  .biz-ladder--duo li:last-child { border-bottom: 1px solid rgba(18,20,20,.24); }
  .biz-note { font-size: 14px; margin-top: 16px; }
  .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; }
}

.platters-facts {
  list-style: none;
  margin: 30px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(18, 20, 20, .16);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.platters-facts li { font-size: 16px; color: var(--charcoal); }

.platters-facts span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(18, 20, 20, .55);
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .platters-facts { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
}

.events-includes {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(243, 239, 231, .88);
  margin: 34px 0 0;
  max-width: 560px;
}

@media (max-width: 767px) {
  .events-includes { font-size: 16px; margin-top: 28px; }
}

/* מיקרו־קופי מתחת לכפתורים — שקט, לא מתחרה בכותרת */
.events-note {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(243, 239, 231, .6);
  margin: 18px 0 0;
  max-width: 520px;
}

@media (max-width: 767px) {
  .events-note { font-size: 14px; margin-top: 16px; }
}

.platters-range {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(18, 20, 20, .78);
  margin: 26px 0 0;
}

.platters-range span { font-weight: 600; color: var(--charcoal); }

@media (max-width: 767px) {
  .platters-range { font-size: 15px; margin-top: 20px; }
}

.form-privacy {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(18, 20, 20, .55);
  margin: 16px 0 0;
}

.form-privacy a { color: #80613D; text-decoration: underline; text-underline-offset: 3px; }

.form-note.is-ready {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(178, 138, 92, .4);
  color: #80613D;
  font-size: 14.5px;
}

.form-note.is-ready a { color: #80613D; text-decoration: underline; text-underline-offset: 3px; }


/* Honeypot · מוסתר ויזואלית בלי לגרור את הכרטיס */
.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  max-height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  line-height: 1 !important;
  font-size: 1px !important;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap; border: 0;
}
.form-card { overflow-x: hidden; }


/* ═══════ טעימה מהמגשים — קומפוזיציה א־סימטרית ═══════ */
.pl-taste{
  list-style:none;margin:0 0 22px;padding:0;
  display:grid;gap:18px;
  grid-template-columns:1fr;
}
.pl-taste a{
  display:block;text-decoration:none;color:inherit;height:100%;
  border-radius:4px;overflow:hidden;background:rgba(0,0,0,.03);
  transition:transform .45s cubic-bezier(.22,.61,.36,1);
}
.pl-taste img{
  display:block;width:100%;height:auto;aspect-ratio:1/1;object-fit:cover;
  transition:transform .6s cubic-bezier(.22,.61,.36,1);
}
.pl-taste__name{
  display:block;margin:12px 14px 2px;
  font-size:.98rem;letter-spacing:.01em;line-height:1.35;
}
.pl-taste__meta{
  display:block;margin:0 14px 14px;
  font-size:.86rem;letter-spacing:.06em;color:var(--bronze);
}
@media (hover:hover){
  .pl-taste a:hover{transform:translateY(-3px);}
  .pl-taste a:hover img{transform:scale(1.02);}
}
.pl-taste a:focus-visible{outline:2px solid var(--bronze);outline-offset:3px;}

/* דסקטופ — מגש מרכזי דומיננטי, שניים משניים לצדו */
@media (min-width:901px){
  .pl-taste{
    grid-template-columns:2fr 1fr;
    grid-template-rows:296px 296px;   /* גובה קצוב — הקומפוזיציה לא מאריכה את העמוד */
    gap:20px;
  }
  .pl-taste li{display:flex;min-height:0;}
  .pl-taste a{display:flex;flex-direction:column;width:100%;min-height:0;}
  .pl-taste picture{flex:1;min-height:0;display:block;}
  .pl-taste img{height:100%;aspect-ratio:auto;}
  .pl-taste__main{grid-row:1 / span 2;}
  .pl-taste__main .pl-taste__name{font-size:1.16rem;margin-top:14px;}
}

/* מובייל — קרוסלה ידנית עם scroll-snap, ללא הפעלה אוטומטית */
@media (max-width:900px){
  .pl-taste{
    display:flex;gap:14px;
    overflow-x:auto;overflow-y:hidden;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    scroll-padding-inline:22px;
    padding-bottom:6px;
    margin-inline:-22px;
    padding-inline:22px;
    scrollbar-width:none;
  }
  .pl-taste::-webkit-scrollbar{display:none;}
  .pl-taste li{
    flex:0 0 76%;max-width:300px;
    scroll-snap-align:start;
  }
  .pl-taste__main .pl-taste__name{font-size:1rem;}
}

.platters-trust{
  margin:0 0 22px;
  font-size:.84rem;letter-spacing:.04em;line-height:1.7;
  opacity:.72;
}

@media (prefers-reduced-motion:reduce){
  .pl-taste a,.pl-taste img{transition:none;}
  .pl-taste a:hover{transform:none;}
  .pl-taste a:hover img{transform:none;}
}

/* ═══════ צמצום מרווחים אנכיים בעמוד הבית (section-inner/closing = עמוד בית בלבד) ═══════ */
.section-inner{padding:88px 60px;}
.closing-content{padding:74px 24px;gap:26px;}
.kitchen-wide{margin-top:42px;}
.platters-inner{padding:46px 60px 54px;}
@media (max-width:900px){
  .section-inner{padding:50px 22px;}
  .closing-content{padding:56px 22px;gap:22px;}
  .kitchen-wide{margin-top:26px;}
  .platters-inner{padding:34px 22px 38px;}
}

/* קיצור נוסף — הבאנר הרחב של המטבח ושורות הקומפוזיציה */
.kitchen-wide img{aspect-ratio:16/9;object-fit:cover;}
@media (min-width:901px){
  .pl-taste{grid-template-rows:262px 262px;}
}
@media (max-width:900px){
  .kitchen-wide img{aspect-ratio:4/3;}
}

/* טאבלט 768–900 — גריד עמודה אחת (סוגר גלילה אופקית ברוחבי ביניים) */
@media (max-width: 900px) {
  .events-grid { grid-template-columns: 1fr; gap: 36px; }
  .events-media { order: -1; }
  .biz-grid { grid-template-columns: 1fr; gap: 32px; }
  .biz-media { max-width: 560px; }
}

/* ═══════ „מעל הים. מעבר לסושי" — קומפוזיציה קומפקטית בגובה מסך ═══════ */
.kitchen-editorial{display:grid;grid-template-columns:1fr 2.2fr;gap:30px;align-items:end;}
.kitchen-editorial .kitchen-head{padding-bottom:4px;}
.kitchen-editorial .section-sub{margin:18px 0 26px;}
.kitchen-editorial .section-ctas{margin:0;}
.kitchen-editorial .kitchen-wide{margin:0;}
.kitchen-editorial .kitchen-wide img{aspect-ratio:16/9;object-fit:cover;width:100%;height:auto;}
.kitchen-grid{margin-top:16px;gap:18px;}
.kitchen-grid img{aspect-ratio:4/3;object-fit:cover;width:100%;height:auto;}
.kitchen-grid figcaption{margin-top:10px;padding-top:8px;font-size:15px;}

@media (max-width:900px){
  .kitchen-editorial{grid-template-columns:1fr;gap:24px;align-items:start;}
  .kitchen-editorial .kitchen-wide img{aspect-ratio:4/3;}
  .kitchen-grid{margin-top:18px;}
}

/* ═══════ חתימת העמוד — לולאת שקיעה ═══════ */
.closing video.closing-media{object-position:50% 50%;}
.closing-still{position:absolute;inset:0;display:none;}
/* ללא וידאו / תנועה מופחתת — סטיל במקום */
@media (prefers-reduced-motion:reduce){
  .closing video.closing-media{display:none;}
  .closing-still{display:block;}
}

/* הצעיף מעל לולאת השקיעה — ניטרלי־כהה במקום כחול, כדי שהזהב יישרד */
.closing:has(video.closing-media) .closing-scrim{
  background:linear-gradient(to top, rgba(8,12,14,.80), rgba(8,12,14,.34));
}

/* ═══════════════════════════════════════════════════════════
   יעדי מגע ≥44px במסכי מגע.
   רק padding/layout — גודל הפונט, הצבע והמשקל לא משתנים,
   והדסקטופ לא מושפע כלל.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* עמודות הפוטר: pitch 39px (29 גובה + 10 gap) → 44px */
  .footer-col { gap: 0; }
  .footer-head { margin-bottom: 10px; }
  .footer-col a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  /* טלפון ואימייל בפוטר — inline בתוך פסקה, לכן inline-flex */
  .footer-tel {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* קישור הלוגו בהדר (84×30 בתוך הדר של 72px) */
  .site-header a[aria-label] {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* שורת הקישורים המשפטיים בתחתית הפוטר */
  .footer-legal a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* קישורי פעולה עצמאיים בתוך טקסט (טלפון, וואטסאפ, משלוח) */
  .ct-reserve__tel a,
  .ct-close__link a,
  .kb-close__link a,
  .ev-close__link a,
  .pl-close__link a,
  .ct-val a,
  .ct-act a,
  .loc-table a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

/* ═══════════════════════════════════════════════════════════
   טקסט גוף ותיאורי מוצר — מינימום 16px במסכי מגע.
   תוויות, metadata ומיקרו-קופי משפטי נשארים כפי שהם בכוונה.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-sub,        /* תת-כותרת ההירו */
  .form-sub,        /* פסקת הפתיחה בטפסים */
  .pl-card__note,   /* תיאור מוצר בכרטיסי המגשים */
  .sp-note {        /* פסקת הקיבולת ב-/spaces */
    font-size: 16px;
  }
}

/* ═══ „UMINO אצלכם" — CTA לכל מסלול ═══
   שני User Jobs שונים, ולכן שני CTA. עיצוב עורכי: קישור עם
   קו תחתון, לא כפתור מלא — כדי לא להתחרות ב-CTA הראשי של העמוד. */
.biz-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-top: 14px;
  padding: 0;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--rust);
  background: none;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: color .3s ease;
}
.biz-cta span { font-size: 13px; }
@media (hover: hover) { .biz-cta:hover { color: var(--bronze); } }
.biz-cta:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; }
.biz-ladder--duo li > div > p { margin-bottom: 0; }
@media (prefers-reduced-motion: reduce) { .biz-cta { transition: none; } }
