/* LECHAIM — Entry gate (order type → language → table) */

.entry-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  background-color: var(--color-parchment, #ebe4d8);
  background-image: radial-gradient(rgba(30, 51, 84, 0.045) 1px, transparent 1px);
  background-size: 18px 18px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.entry-gate[hidden] {
  display: none !important;
}

body.entry-pending {
  overflow: hidden;
}

body.entry-pending > *:not(#entry-gate):not(.entry-place-res-thanks) {
  visibility: hidden;
  pointer-events: none;
}

.entry-gate__chrome {
  position: absolute;
  top: max(0.75rem, env(safe-area-inset-top, 0px));
  right: max(0.85rem, env(safe-area-inset-right, 0px));
  left: auto;
  z-index: 30;
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.entry-gate__kosher-badge {
  height: 68px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.entry-gate__bh {
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy, #1e3354);
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  user-select: none;
  pointer-events: none;
}

.entry-gate__lang {
  position: static;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--color-cream-dark, #e5ddd0);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-navy, #1e3354);
  box-shadow: 0 2px 10px rgba(30, 51, 84, 0.08);
  direction: ltr;
}

.entry-gate__shell {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  display: grid;
  gap: 1.25rem;
  text-align: center;
  animation: entry-gate-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes entry-gate-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.entry-gate__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.entry-gate__logo {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.entry-gate__wordmark {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.entry-gate__hero {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.15rem;
}

.entry-gate__welcome {
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 1.50rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy, #1e3354);
}

.entry-gate__title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: clamp(1.45rem, 5.2vw, 1.9rem);
  font-weight: 600;
  color: var(--color-navy, #1e3354);
  line-height: 1.25;
}

.entry-gate__kosher {
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy, #1e3354);
}

.entry-gate__prompt {
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 0.95rem;
  color: var(--color-text-muted, #58677b);
  line-height: 1.45;
}

.entry-gate__prompt.is-table-prompt {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy, #1e3354);
}

.entry-gate__hint {
  margin: 0;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-navy, #1e3354);
  line-height: 1.5;
  text-align: center;
}

.entry-table-modal[hidden] {
  display: none !important;
}

.entry-table-modal {
  position: absolute;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top, 0px)) 1.25rem max(1rem, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
}

.entry-table-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(21, 38, 64, 0.58);
  cursor: pointer;
}

.entry-table-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  max-height: min(88vh, 36rem);
  overflow-y: auto;
  margin: 0;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 2px solid var(--color-gold, #c4a06a);
  box-shadow: 0 18px 48px rgba(21, 38, 64, 0.32);
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.entry-table-modal__find {
  margin: 0 0 1rem;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-navy, #1e3354);
  line-height: 1.4;
  overflow-wrap: normal;
  word-break: keep-all;
}

.entry-table-modal__hint {
  margin: 0 0 0.85rem;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--color-navy, #1e3354);
  line-height: 1.65;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.entry-table-modal__hint:last-of-type {
  margin-bottom: 0;
}

.entry-table-modal__how {
  margin: 1.15rem 0 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(196, 160, 106, 0.45);
  text-align: center;
}

.entry-table-modal__how-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-navy, #1e3354);
  line-height: 1.35;
}

.entry-table-modal__how-text {
  margin: 0;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-navy, #1e3354);
  line-height: 1.65;
  overflow-wrap: break-word;
}

.entry-table-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  width: 100%;
}

.entry-table-modal__actions .entry-gate__btn {
  width: 100%;
  min-height: 52px;
  padding-inline: 0.5rem;
}

.entry-table-modal__actions .entry-gate__btn-label,
.entry-table-modal__pick,
.entry-table-modal__browse {
  font-size: 0.92rem;
}

.entry-table-modal__browse {
  background: #fff;
  color: var(--color-navy, #1e3354);
  border: 2px solid var(--color-navy, #1e3354);
}

.entry-table-modal__browse:hover {
  background: var(--color-cream, #f3ede3);
  border-color: var(--color-navy, #1e3354);
}

@media (max-width: 380px) {
  .entry-table-modal__actions {
    grid-template-columns: 1fr;
  }
}

.entry-gate__step {
  display: grid;
  gap: 1.15rem;
  animation: entry-gate-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.entry-gate__step[hidden] {
  display: none !important;
}

.entry-gate__actions {
  display: grid;
  gap: 0.75rem;
}

.entry-gate__actions .entry-gate__btn {
  width: 100%;
  box-sizing: border-box;
}

.entry-gate__actions .entry-gate__btn[hidden] {
  display: none !important;
}

.entry-gate__actions a.entry-gate__btn {
  text-decoration: none;
  text-align: center;
}

.entry-gate__actions a.entry-gate__btn--primary {
  color: #fff;
}

.entry-gate__btn {
  appearance: none;
  border: 1px solid var(--color-cream-dark, #e5ddd0);
  background: var(--color-white, #fff);
  color: var(--color-navy, #1e3354);
  border-radius: 14px;
  min-height: 72px;
  padding: 0.9rem 1.1rem;
  display: grid;
  gap: 0.2rem;
  justify-items: center;
  align-content: center;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(30, 51, 84, 0.08);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

.entry-gate__btn:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold, #c4a06a);
  box-shadow: 0 6px 18px rgba(30, 51, 84, 0.12);
}

.entry-gate__btn:active {
  transform: translateY(0);
}

.entry-gate__btn:focus-visible {
  outline: 2px solid var(--color-gold, #c4a06a);
  outline-offset: 3px;
}

.entry-gate__btn-label {
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.entry-gate__btn--primary {
  background: var(--color-navy, #1e3354);
  color: #fff;
  border-color: var(--color-navy, #1e3354);
}

.entry-gate__btn--primary:hover {
  background: var(--color-navy-light, #2d4a73);
  border-color: var(--color-navy-light, #2d4a73);
}

/* Dine-in: white, stands out from the other navy actions */
.entry-gate__btn--dine-in {
  background: #fff;
  color: var(--color-navy, #1e3354);
  border: 2px solid var(--color-gold, #c4a06a);
  box-shadow: 0 8px 24px rgba(30, 51, 84, 0.16);
}

.entry-gate__btn--dine-in:hover {
  background: #fff;
  border-color: var(--color-gold-dark, #a8864f);
  box-shadow: 0 12px 28px rgba(30, 51, 84, 0.2);
}

.entry-gate__btn--delivery {
  background: linear-gradient(135deg, #1a5c3a 0%, #2d8a55 55%, #3fa66a 100%);
  color: #fff;
  border-color: rgba(180, 230, 200, 0.35);
  box-shadow: 0 8px 24px rgba(26, 92, 58, 0.28);
}

.entry-gate__btn--delivery:hover {
  background: linear-gradient(135deg, #154d31 0%, #267748 55%, #35965c 100%);
  border-color: rgba(200, 240, 215, 0.45);
  box-shadow: 0 12px 28px rgba(26, 92, 58, 0.36);
}

.entry-gate__btn--soon {
  opacity: 0.72;
}

.entry-gate__btn--soon:hover {
  transform: none;
  border-color: var(--color-cream-dark, #e5ddd0);
  box-shadow: 0 2px 10px rgba(30, 51, 84, 0.08);
}

#entry-shabbat-link.is-disabled,
.entry-gate__btn.is-disabled {
  opacity: 0.55;
  filter: grayscale(0.4);
  cursor: not-allowed;
  pointer-events: auto;
}

#entry-shabbat-link.is-disabled:hover,
.entry-gate__btn.is-disabled:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(30, 51, 84, 0.08);
  border-color: var(--color-cream-dark, #e5ddd0);
  filter: grayscale(0.4);
}

.entry-gate__notice {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(196, 160, 106, 0.16);
  border: 1px solid rgba(196, 160, 106, 0.35);
  color: var(--color-navy, #1e3354);
  font-size: 0.95rem;
  font-weight: 600;
  animation: entry-gate-in 0.3s ease both;
}

.entry-gate__notice[hidden] {
  display: none !important;
}

.entry-gate__back {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--color-text-muted, #58677b);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem;
  justify-self: center;
}

.entry-gate__back:hover {
  color: var(--color-navy, #1e3354);
}

.entry-gate__tables {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.entry-gate__table {
  appearance: none;
  border: 1px solid var(--color-cream-dark, #e5ddd0);
  background: var(--color-white, #fff);
  color: var(--color-navy, #1e3354);
  border-radius: 12px;
  min-height: 52px;
  font: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.15s ease;
}

.entry-gate__table:hover {
  border-color: var(--color-gold, #c4a06a);
  transform: translateY(-1px);
}

.entry-gate__table:focus-visible {
  outline: 2px solid var(--color-gold, #c4a06a);
  outline-offset: 2px;
}

.entry-gate__table.is-selected {
  background: var(--color-navy, #1e3354);
  border-color: var(--color-navy, #1e3354);
  color: #fff;
}

.entry-gate__table.is-occupied {
  background: linear-gradient(165deg, #3d9a5f 0%, #2f6f47 100%);
  border-color: #245a38;
  color: #fff;
  cursor: not-allowed;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  opacity: 1;
}

.entry-gate__table.is-occupied:hover {
  transform: none;
  border-color: #245a38;
}

.entry-gate__table.is-occupied.is-selected {
  background: linear-gradient(165deg, #3d9a5f 0%, #2f6f47 100%);
  border-color: #245a38;
  color: #fff;
}

@media (max-width: 360px) {
  .entry-gate__tables {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-gate__shell,
  .entry-gate__step,
  .entry-gate__notice,
  .entry-gate__btn,
  .entry-gate__table {
    animation: none;
    transition: none;
  }
}

/* Self Pickup form */
.entry-pickup {
  display: grid;
  gap: 0.85rem;
  text-align: start;
}

.entry-pickup__field,
.entry-pickup__time {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.entry-pickup__field[hidden],
.entry-pickup__time[hidden],
.entry-pickup__radio[hidden],
.entry-pickup__fulfillment[hidden],
#entry-fulfillment-delivery-row[hidden] {
  display: none !important;
}

.entry-pickup__label {
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-navy, #1e3354);
}

.entry-pickup__input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--color-cream-dark, #e5ddd0);
  border-radius: 12px;
  background: var(--color-white, #fff);
  color: var(--color-navy, #1e3354);
  font: inherit;
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  box-shadow: 0 2px 8px rgba(30, 51, 84, 0.06);
}

.entry-pickup__textarea {
  resize: vertical;
  min-height: 4rem;
}

.entry-pickup__select {
  margin-top: 0.15rem;
}

.entry-pickup__radio {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy, #1e3354);
  padding: 0.35rem 0;
  cursor: pointer;
}

.entry-pickup__radio input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--color-navy, #1e3354);
}

.entry-pickup__error {
  margin: 0;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  background: rgba(198, 40, 40, 0.1);
  border: 1px solid rgba(198, 40, 40, 0.35);
  color: #8b1e1e;
  font-size: 0.9rem;
  font-weight: 600;
}

.entry-pickup__error[hidden] {
  display: none !important;
}

.entry-pickup-closed {
  display: grid;
  gap: 1rem;
  text-align: center;
  padding: 0.5rem 0.25rem 0.25rem;
}

.entry-pickup-closed__title {
  margin: 0;
  font-family: var(--font-display, 'Frank Ruhl Libre', serif);
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 600;
  color: var(--color-navy, #1e3354);
  line-height: 1.3;
}

.entry-pickup-closed__text {
  margin: 0;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 1rem;
  color: var(--color-text-muted, #58677b);
  line-height: 1.5;
}

.entry-pickup-closed .entry-gate__btn {
  margin-top: 0.35rem;
}

.entry-pickup .entry-gate__btn {
  margin-top: 0.25rem;
}

/* ---- Place reservation request (entry gate) ---- */

.entry-place-res-thanks {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top, 0px)) 1.25rem max(1rem, env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  /* Cover viewport even when entry-gate content scrolls */
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  margin: 0;
}

.entry-place-res-thanks[hidden] {
  display: none !important;
}

.entry-place-res-thanks__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 38, 64, 0.72);
  cursor: pointer;
}

.entry-place-res-thanks__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  text-align: center;
  padding: 1.6rem 1.35rem 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 2px solid var(--color-gold, #c4a06a);
  box-shadow: 0 18px 48px rgba(21, 38, 64, 0.32);
  animation: entry-gate-in 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.entry-place-res-thanks__title {
  margin: 0;
  font-family: var(--font-display, 'Frank Ruhl Libre', serif);
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  font-weight: 600;
  color: var(--color-navy, #1e3354);
}

.entry-place-res-thanks__text {
  margin: 0;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-muted, #58677b);
}

.entry-place-res-thanks__panel .entry-gate__btn {
  width: 100%;
  margin-top: 0.35rem;
}

/* Lock entry-gate scroll while place-res modal is open */
.entry-gate.is-place-res-modal-open {
  overflow: hidden !important;
}

/* ---- Home-only chrome (hidden on classic secondary steps / shabbat) ---- */

.entry-gate__home-stage,
.entry-gate__foot {
  display: none;
}

.entry-gate__btn-hint,
.entry-gate__btn-chevron {
  display: none;
}

.entry-gate__btn-icon {
  display: none;
}

.entry-gate__btn-icon svg {
  display: block;
}

/* ========== HOME: full-bleed photo + soft fade + compact actions ========== */

.entry-gate.is-home {
  --entry-cream: #f8f3eb;
  --entry-navy: #17345d;
  --entry-gold: #c4a06a;
  display: block;
  place-items: unset;
  padding: 0;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--entry-cream);
  background-image: none;
}

.entry-gate.is-home .entry-gate__shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  box-sizing: border-box;
  animation: none;
  overflow: visible;
}

.entry-gate.is-home .entry-gate__home-land {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: clamp(0.5rem, 1.35vh, 1rem);
  padding:
    max(0.3rem, env(safe-area-inset-top, 0px))
    clamp(0.75rem, 3vw, 1.15rem)
    clamp(1.2rem, 3.5vh, 2rem);
  padding-bottom: max(clamp(1.2rem, 3.5vh, 2rem), env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}

.entry-gate.is-home .entry-gate__home-stage {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  /* Full-bleed behind the centered land column */
  width: 100vw;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.entry-gate.is-home .entry-gate__home-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.06);
  animation: entry-home-kenburns 18s ease-out forwards;
}

@keyframes entry-home-kenburns {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

.entry-gate.is-home .entry-gate__home-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.66) 0%,
    rgba(10, 22, 40, 0.46) 35%,
    rgba(10, 22, 40, 0.55) 55%,
    rgba(10, 22, 40, 0.28) 70%
  );
}

.entry-gate.is-home .entry-gate__home-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(62%, 36rem);
  background: linear-gradient(
    to bottom,
    rgba(248, 243, 235, 0) 0%,
    rgba(248, 243, 235, 0.28) 22%,
    rgba(248, 243, 235, 0.72) 48%,
    rgba(248, 243, 235, 0.94) 72%,
    var(--entry-cream) 88%,
    var(--entry-cream) 100%
  );
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 32%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 32%, #000 100%);
}

/* Solid cream seam — hides any dark photo edge above About */
.entry-gate.is-home .entry-gate__home-stage::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4.5rem;
  background: var(--entry-cream);
  pointer-events: none;
  z-index: 2;
}

.entry-gate.is-home .entry-gate__chrome {
  position: fixed;
  top: max(0.55rem, env(safe-area-inset-top, 0px));
  inset-inline-end: max(0.75rem, env(safe-area-inset-right, 0px));
  inset-inline-start: auto;
  z-index: 10001;
  width: fit-content;
  margin: 0;
}

.entry-gate.is-home .entry-gate__kosher-badge {
  display: none;
}

.entry-gate.is-home .entry-gate__lang {
  padding: 0.14rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  gap: 0;
}

.entry-gate.is-home .entry-gate__lang .lang-toggle__option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.5;
}

.entry-gate.is-home .entry-gate__lang .lang-toggle__option--active {
  background: var(--entry-navy);
  color: #fff;
  opacity: 1;
}

.entry-gate.is-home .entry-gate__lang .lang-toggle__sep {
  display: none;
}

.entry-gate.is-home .entry-gate__classic {
  display: none;
}

/* Secondary steps: keep classic brand; hide home hero copy */
.entry-gate:not(.is-home) .entry-gate__hero {
  display: none;
}

.entry-gate.is-home .entry-gate__hero {
  position: relative;
  z-index: 2;
  margin: 0;
  margin-bottom: auto;
  padding-top: clamp(3.2rem, 9vh, 6rem);
  gap: 0.15rem;
  color: #fff;
  background: none;
  border: 0;
  box-shadow: none;
  flex-shrink: 0;
  text-align: center;
}

.entry-gate.is-home .entry-gate__welcome,
.entry-gate.is-home .entry-gate__title,
.entry-gate.is-home .entry-gate__kosher {
  color: #fff;
  /* Soft blue halo around the letters */
  -webkit-text-stroke: 0.35px rgba(23, 52, 93, 0.35);
  paint-order: stroke fill;
  text-shadow:
    0 0 2px rgba(23, 52, 93, 0.9),
    0 0 10px rgba(23, 52, 93, 0.85),
    0 0 22px rgba(30, 70, 120, 0.75),
    0 0 36px rgba(23, 52, 93, 0.55),
    0 1px 2px rgba(10, 22, 40, 0.45);
  filter: drop-shadow(0 0 8px rgba(23, 52, 93, 0.7));
}

.entry-gate.is-home .entry-gate__welcome {
  margin: 0;
  font-size: clamp(1.05rem, 2.6vh, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
}

.entry-gate.is-home .entry-gate__title {
  margin: 0;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: clamp(1.2rem, 3.4vh, 2.15rem);
  font-weight: 800;
  line-height: 1.12;
}

.entry-gate.is-home .entry-gate__kosher {
  margin: 0.3rem auto 0;
  padding-top: 0.35rem;
  width: fit-content;
  border-top: 1.5px solid rgba(255, 255, 255, 0.55);
  font-size: clamp(1.05rem, 2.5vh, 1.45rem);
  font-weight: 700;
  filter: drop-shadow(0 0 10px rgba(23, 52, 93, 0.8));
}

.entry-gate.is-home .entry-gate__step {
  position: relative;
  z-index: 2;
  gap: 0;
  animation: none;
  flex-shrink: 0;
  min-height: 0;
}

.entry-gate.is-home .entry-gate__actions {
  gap: clamp(0.42rem, 1.25vh, 0.75rem);
  margin-bottom: clamp(0.25rem, 1.2vh, 0.7rem);
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn {
  min-height: clamp(44px, 6.6vh, 58px);
  padding: 0.38rem 0.75rem;
  border-radius: 12px;
  border: 0;
  background: var(--entry-navy);
  color: #fff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  justify-items: stretch;
  text-align: start;
  box-shadow: 0 5px 14px rgba(23, 52, 93, 0.16);
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn[hidden] {
  display: none !important;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn:hover {
  transform: translateY(-1px);
  border-color: transparent;
  background: #1f4273;
  box-shadow: 0 8px 22px rgba(23, 52, 93, 0.22);
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--primary {
  background: var(--entry-navy);
  color: #fff;
  border-color: transparent;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--primary:hover {
  background: #1f4273;
  color: #fff;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--dine-in {
  background: #f7efe4;
  color: var(--entry-navy);
  border: 1.5px solid rgba(196, 160, 106, 0.75);
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--dine-in:hover {
  background: #fff;
  border-color: var(--entry-gold);
  color: var(--entry-navy);
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--butcher {
  background: linear-gradient(135deg, #8b1e1e 0%, #b32626 55%, #c43a2f 100%);
  color: #fff;
  border: 1.5px solid rgba(255, 210, 180, 0.28);
  box-shadow: 0 6px 18px rgba(139, 30, 30, 0.32);
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--butcher:hover {
  background: linear-gradient(135deg, #7a1818 0%, #a31f1f 55%, #b83228 100%);
  color: #fff;
  border-color: rgba(255, 220, 190, 0.4);
  box-shadow: 0 9px 24px rgba(139, 30, 30, 0.4);
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--butcher .entry-gate__btn-icon,
.entry-gate.is-home .entry-gate__actions .entry-gate__btn--butcher .entry-gate__btn-chevron {
  color: #f0c9a0;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--butcher .entry-gate__btn-hint {
  opacity: 0.9;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--delivery {
  background: linear-gradient(135deg, #1a5c3a 0%, #2d8a55 52%, #45b574 100%);
  color: #fff;
  border: 1.5px solid rgba(190, 235, 210, 0.3);
  box-shadow: 0 6px 18px rgba(26, 92, 58, 0.3);
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--delivery:hover {
  background: linear-gradient(135deg, #154d31 0%, #267748 52%, #3aa464 100%);
  color: #fff;
  border-color: rgba(210, 245, 220, 0.42);
  box-shadow: 0 9px 24px rgba(26, 92, 58, 0.4);
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--delivery .entry-gate__btn-icon,
.entry-gate.is-home .entry-gate__actions .entry-gate__btn--delivery .entry-gate__btn-chevron {
  color: #c8f0d6;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--delivery .entry-gate__btn-hint {
  opacity: 0.92;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn-icon {
  display: grid;
  place-items: center;
  width: 1.35rem;
  color: var(--entry-gold);
  flex-shrink: 0;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn-icon svg {
  width: 18px;
  height: 18px;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn--dine-in .entry-gate__btn-icon {
  color: #a8864f;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn-text {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn-label {
  font-size: clamp(0.84rem, 1.9vh, 1.05rem);
  font-weight: 700;
  line-height: 1.12;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn-hint {
  display: block;
  margin: 0;
  font-size: clamp(0.62rem, 1.35vh, 0.78rem);
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.82;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__btn-chevron {
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  border-inline-end: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
  margin-inline-end: 0.15rem;
}

[dir="rtl"] .entry-gate.is-home .entry-gate__actions .entry-gate__btn-chevron,
.entry-gate.is-home .entry-gate__shell[dir="rtl"] .entry-gate__actions .entry-gate__btn-chevron {
  transform: rotate(-135deg);
}

.entry-gate.is-home .entry-gate__actions a.entry-gate__btn {
  text-align: start;
}

.entry-gate.is-home .entry-gate__scroll-hint {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0.15rem auto 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--entry-navy);
  box-shadow: 0 4px 14px rgba(23, 52, 93, 0.12);
  cursor: pointer;
}

.entry-gate.is-home .entry-gate__scroll-hint:focus-visible {
  outline: 2px solid var(--entry-gold);
  outline-offset: 3px;
}

.entry-gate.is-home .entry-gate__scroll-hint-icon {
  display: block;
}

.entry-gate.is-home .entry-gate__scroll-hint.is-inview .entry-gate__scroll-hint-icon {
  animation: entry-scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes entry-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* Hide home-only blocks on secondary steps */
.entry-gate__home-land,
.entry-gate__about,
.entry-gate__kashrut,
.entry-gate__scroll-hint {
  display: none;
}

.entry-gate.is-home .entry-gate__home-land {
  display: flex;
}

.entry-gate.is-home .entry-gate__about,
.entry-gate.is-home .entry-gate__kashrut {
  display: grid;
}

.entry-gate.is-home .entry-gate__scroll-hint {
  display: grid;
}

.entry-gate.is-home .entry-gate__about {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  margin: -1px 0 0;
  min-height: clamp(36rem, 92vh, 52rem);
  padding: clamp(4.5rem, 11vw, 7rem) clamp(1.15rem, 4vw, 2rem);
  gap: 0;
  background: var(--entry-cream);
  box-sizing: border-box;
  text-align: center;
  overflow: hidden;
  border: 0;
  box-shadow: none;
}

.entry-gate.is-home .entry-gate__about-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.entry-gate.is-home .entry-gate__about-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 60% at 50% 48%, rgba(248, 243, 235, 0.68) 0%, rgba(248, 243, 235, 0.32) 48%, rgba(248, 243, 235, 0.62) 100%);
  pointer-events: none;
}

.entry-gate.is-home .entry-gate__about-float {
  position: absolute;
  z-index: 1;
  display: block;
  width: clamp(9.5rem, 32vw, 16rem);
  height: clamp(9.5rem, 32vw, 16rem);
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.58;
  filter: saturate(0.9) brightness(1.02);
  box-shadow: 0 12px 30px rgba(23, 52, 93, 0.1);
  will-change: transform, opacity;
}

.entry-gate.is-home .entry-gate__about-float--a {
  top: 4%;
  inset-inline-start: -10%;
  width: clamp(10rem, 34vw, 17rem);
  height: clamp(10rem, 34vw, 17rem);
  border-radius: 58% 42% 48% 52% / 48% 55% 45% 52%;
}

.entry-gate.is-home .entry-gate__about-float--b {
  top: 38%;
  bottom: auto;
  inset-inline-end: -12%;
  width: clamp(10.5rem, 36vw, 18rem);
  height: clamp(10.5rem, 36vw, 18rem);
  border-radius: 42% 58% 52% 48% / 55% 42% 58% 45%;
}

.entry-gate.is-home .entry-gate__about-float--c {
  top: 58%;
  left: 50%;
  right: auto;
  bottom: auto;
  inset-inline: auto;
  width: clamp(10rem, 34vw, 17rem);
  height: clamp(10rem, 34vw, 17rem);
  border-radius: 50% 46% 54% 50% / 46% 54% 46% 54%;
  z-index: 1;
}

.entry-gate.is-home .entry-gate__about-float--d {
  top: auto;
  bottom: 6%;
  inset-inline-start: -12%;
  width: clamp(9.5rem, 32vw, 16rem);
  height: clamp(9.5rem, 32vw, 16rem);
  border-radius: 48% 52% 45% 55% / 52% 48% 55% 45%;
}

.entry-gate.is-home .entry-gate__about-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 38rem);
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.entry-gate.is-home .entry-gate__about-title {
  margin: 0 0 1rem;
  font-family: var(--font-display, 'Frank Ruhl Libre', 'Playfair Display', serif);
  font-size: clamp(1.65rem, 4.5vw, 2.25rem);
  font-weight: 700;
  color: var(--entry-navy);
  line-height: 1.2;
  text-align: center;
  text-shadow:
    0 0 12px rgba(248, 243, 235, 0.95),
    0 0 28px rgba(248, 243, 235, 0.9);
}

.entry-gate.is-home .entry-gate__about-text {
  margin: 0 auto 0.85rem;
  max-width: 34rem;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--entry-navy);
  text-align: center;
  text-shadow:
    0 0 10px rgba(248, 243, 235, 1),
    0 0 22px rgba(248, 243, 235, 0.95);
}

.entry-gate.is-home .entry-gate__about-text:last-child {
  margin-bottom: 0;
}

/* Side-entry reveals — only while waiting for scroll (not when .is-inview) */
.entry-gate.is-home .entry-gate__about-float.entry-gate__reveal {
  transition:
    opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 1.45s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

/* from-start = enter from inline-start (left in LTR, right in RTL) */
.entry-gate.is-home .entry-gate__about-float.entry-gate__reveal--from-start:not(.is-inview) {
  opacity: 0;
  transform: translate3d(-90vw, 12%, 0) scale(0.72) rotate(-22deg);
}

.entry-gate.is-home .entry-gate__shell[dir="rtl"] .entry-gate__about-float.entry-gate__reveal--from-start:not(.is-inview),
[dir="rtl"] .entry-gate.is-home .entry-gate__about-float.entry-gate__reveal--from-start:not(.is-inview) {
  transform: translate3d(90vw, 12%, 0) scale(0.72) rotate(-22deg);
}

/* from-end = enter from inline-end (right in LTR, left in RTL) */
.entry-gate.is-home .entry-gate__about-float.entry-gate__reveal--from-end:not(.is-inview) {
  opacity: 0;
  transform: translate3d(90vw, 6%, 0) scale(0.72) rotate(22deg);
}

.entry-gate.is-home .entry-gate__shell[dir="rtl"] .entry-gate__about-float.entry-gate__reveal--from-end:not(.is-inview),
[dir="rtl"] .entry-gate.is-home .entry-gate__about-float.entry-gate__reveal--from-end:not(.is-inview) {
  transform: translate3d(-90vw, 6%, 0) scale(0.72) rotate(22deg);
}

/* Float C: anchored at center (left/top 50%), slides in from the side */
.entry-gate.is-home .entry-gate__about-float--c.entry-gate__reveal--from-start:not(.is-inview) {
  opacity: 0;
  transform: translate3d(calc(-50% - 95vw), -50%, 0) scale(0.7) rotate(18deg);
}

.entry-gate.is-home .entry-gate__shell[dir="rtl"] .entry-gate__about-float--c.entry-gate__reveal--from-start:not(.is-inview),
[dir="rtl"] .entry-gate.is-home .entry-gate__about-float--c.entry-gate__reveal--from-start:not(.is-inview) {
  transform: translate3d(calc(-50% + 95vw), -50%, 0) scale(0.7) rotate(18deg);
}

.entry-gate.is-home .entry-gate__kashrut {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: clamp(22rem, 55vh, 32rem);
  padding: clamp(3rem, 7vw, 4.5rem) clamp(1.15rem, 4vw, 2rem);
  background: var(--entry-cream);
  box-sizing: border-box;
  overflow: hidden;
}

.entry-gate.is-home .entry-gate__kashrut-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.entry-gate.is-home .entry-gate__kashrut-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 55% 50% at 50% 48%, rgba(248, 243, 235, 0.88) 0%, rgba(248, 243, 235, 0.45) 42%, rgba(248, 243, 235, 0.15) 72%, transparent 100%);
  pointer-events: none;
}

.entry-gate.is-home .entry-gate__kashrut-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: clamp(12rem, 46vw, 20rem);
  height: clamp(12rem, 46vw, 20rem);
  object-fit: contain;
  opacity: 0.4;
  filter: drop-shadow(0 12px 28px rgba(23, 52, 93, 0.1));
  will-change: transform, opacity;
}

.entry-gate.is-home .entry-gate__kashrut-badge.entry-gate__reveal {
  transition:
    opacity 1.25s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 1.45s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.entry-gate.is-home .entry-gate__kashrut-badge.entry-gate__reveal--from-end:not(.is-inview) {
  opacity: 0;
  transform: translate3d(calc(-50% + 90vw), -50%, 0) scale(0.72) rotate(-12deg);
}

.entry-gate.is-home .entry-gate__shell[dir="rtl"] .entry-gate__kashrut-badge.entry-gate__reveal--from-end:not(.is-inview),
[dir="rtl"] .entry-gate.is-home .entry-gate__kashrut-badge.entry-gate__reveal--from-end:not(.is-inview) {
  transform: translate3d(calc(-50% - 90vw), -50%, 0) scale(0.72) rotate(-12deg);
}

.entry-gate.is-home .entry-gate__kashrut-badge.entry-gate__reveal.is-inview {
  opacity: 0.4;
  transform: translate3d(-50%, -50%, 0) rotate(0deg) scale(1);
}

.entry-gate.is-home .entry-gate__kashrut-card {
  position: relative;
  z-index: 3;
  background: none;
  border-radius: 0;
  max-width: 40rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem) 0.75rem;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.entry-gate.is-home .entry-gate__kashrut-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display, 'Frank Ruhl Libre', 'Playfair Display', serif);
  font-size: clamp(1.45rem, 3.5vw, 1.95rem);
  font-weight: 700;
  color: var(--entry-navy);
  text-align: center;
  text-shadow:
    0 0 8px rgba(248, 243, 235, 1),
    0 0 18px rgba(248, 243, 235, 1),
    0 0 36px rgba(248, 243, 235, 0.95),
    0 1px 0 rgba(248, 243, 235, 0.9);
}

.entry-gate.is-home .entry-gate__kashrut-text {
  margin: 0 auto 0.75rem;
  max-width: 36rem;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: clamp(0.98rem, 2.2vw, 1.08rem);
  font-weight: 600;
  line-height: 1.7;
  color: var(--entry-navy);
  text-align: center;
  text-shadow:
    0 0 8px rgba(248, 243, 235, 1),
    0 0 16px rgba(248, 243, 235, 1),
    0 0 32px rgba(248, 243, 235, 0.98),
    0 1px 0 rgba(248, 243, 235, 0.95);
}

.entry-gate.is-home .entry-gate__kashrut-text:last-of-type {
  margin-bottom: 1rem;
}

.entry-gate.is-home .entry-gate__kashrut-cert {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.35rem auto 0;
  padding: 0.7rem 1.35rem;
  border: 1.5px solid var(--entry-navy);
  border-radius: 999px;
  background: rgba(248, 243, 235, 0.92);
  color: var(--entry-navy);
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow:
    0 0 12px rgba(248, 243, 235, 0.95),
    0 6px 18px rgba(23, 52, 93, 0.12);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.entry-gate.is-home .entry-gate__kashrut-cert:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 0 12px rgba(248, 243, 235, 1),
    0 10px 22px rgba(23, 52, 93, 0.16);
}

.entry-gate.is-home .entry-gate__kashrut-cert:focus-visible {
  outline: 2px solid var(--entry-gold);
  outline-offset: 3px;
}

.entry-kosher-lightbox[hidden] {
  display: none !important;
}

.entry-kosher-lightbox {
  position: fixed;
  inset: 0;
  z-index: 11050;
  display: grid;
  place-items: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
}

.entry-kosher-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(15, 28, 48, 0.72);
  cursor: pointer;
}

.entry-kosher-lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(34rem, 100%);
  max-height: min(92vh, 920px);
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.65rem;
  padding: 0.85rem 0.85rem 1rem;
  border-radius: 16px;
  background: #f8f3eb;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.entry-kosher-lightbox__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.entry-kosher-lightbox__title {
  margin: 0;
  font-family: var(--font-display, 'Frank Ruhl Libre', 'Playfair Display', serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--entry-navy, #17345d);
}

.entry-kosher-lightbox__close {
  flex: 0 0 auto;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 52, 93, 0.08);
  color: var(--entry-navy, #17345d);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.entry-kosher-lightbox__close:hover {
  background: rgba(23, 52, 93, 0.14);
}

.entry-kosher-lightbox__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(92vh - 5.5rem);
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.entry-gate.is-home .entry-gate__foot {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  margin: 0;
  padding: 1.5rem 1rem max(1.75rem, env(safe-area-inset-bottom, 0px));
  text-align: center;
  background: var(--entry-navy);
  color: #fff;
  justify-items: center;
}

.entry-gate.is-home .entry-gate__foot-brand {
  margin: 0;
  font-family: var(--font-display, 'Frank Ruhl Libre', 'Playfair Display', serif);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--entry-gold);
}

.entry-gate.is-home .entry-gate__foot-tag {
  margin: 0;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: clamp(0.8rem, 1.8vw, 0.92rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.entry-gate.is-home .entry-gate__foot-follow {
  margin: 0.55rem 0 0;
  font-family: var(--font-body, 'Heebo', sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

.entry-gate.is-home .entry-gate__foot-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.15rem;
}

.entry-gate.is-home .entry-gate__foot-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.entry-gate.is-home .entry-gate__foot-link:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.entry-gate.is-home .entry-gate__foot-link:focus-visible {
  outline: 2px solid var(--entry-gold);
  outline-offset: 2px;
}

.entry-gate.is-home .entry-gate__foot-link--whatsapp:hover {
  background: rgba(37, 211, 102, 0.35);
}

.entry-gate.is-home .entry-gate__foot-link--instagram:hover {
  background: rgba(225, 48, 108, 0.35);
}

.entry-gate.is-home .entry-gate__foot-link--facebook:hover {
  background: rgba(24, 119, 242, 0.35);
}

.entry-gate.is-home .entry-gate__foot-link--maps:hover {
  background: rgba(196, 160, 106, 0.4);
}

/* Scroll reveal — transform + opacity only */
.entry-gate.is-home .entry-gate__reveal {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay);
  will-change: opacity, transform;
}

.entry-gate.is-home .entry-gate__reveal--up {
  transform: translateY(34px);
}

.entry-gate.is-home .entry-gate__reveal--fade {
  transform: translateY(14px);
}

.entry-gate.is-home .entry-gate__reveal--x {
  transform: translateX(-44px);
}

.entry-gate.is-home .entry-gate__shell[dir="rtl"] .entry-gate__reveal--x,
[dir="rtl"] .entry-gate.is-home .entry-gate__reveal--x {
  transform: translateX(44px);
}

.entry-gate.is-home .entry-gate__reveal--scale {
  transform: scale(0.92);
}

.entry-gate.is-home .entry-gate__reveal.is-inview {
  opacity: 1;
  transform: none;
}

.entry-gate.is-home .entry-gate__actions .entry-gate__reveal.is-inview:hover {
  transform: translateY(-2px);
}

.entry-gate.is-home .entry-gate__about-float.entry-gate__reveal.is-inview {
  opacity: 0.58;
}

.entry-gate.is-home .entry-gate__about-float--a.entry-gate__reveal.is-inview {
  opacity: 0.62;
  transform: rotate(-8deg) translate3d(0, 0, 0) scale(1);
}

.entry-gate.is-home .entry-gate__about-float--b.entry-gate__reveal.is-inview {
  opacity: 0.58;
  transform: rotate(10deg) translate3d(0, 0, 0) scale(1);
}

.entry-gate.is-home .entry-gate__about-float--c.entry-gate__reveal.is-inview {
  opacity: 0.5;
  transform: translate3d(-50%, -50%, 0) rotate(4deg) scale(1);
}

.entry-gate.is-home .entry-gate__about-float--d.entry-gate__reveal.is-inview {
  opacity: 0.55;
  transform: rotate(-6deg) translate3d(0, 0, 0) scale(1);
}

/* Desktop: photo fills the viewport; content sits over the soft fade */
@media (min-width: 768px) {
  .entry-gate.is-home .entry-gate__home-photo {
    object-position: center 35%;
  }

  .entry-gate.is-home .entry-gate__home-fade {
    height: min(58%, 38rem);
  }

  .entry-gate.is-home .entry-gate__home-land {
    max-width: 460px;
    padding-top: 5.5rem;
    padding-bottom: 1.75rem;
    gap: 0.85rem;
  }

  .entry-gate.is-home .entry-gate__hero {
    margin-bottom: 0.5rem;
    padding-top: clamp(4.5rem, 12vh, 7rem);
  }

  .entry-gate.is-home .entry-gate__title {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
  }

  .entry-gate.is-home .entry-gate__actions {
    gap: 0.55rem;
  }

  .entry-gate.is-home .entry-gate__actions .entry-gate__btn {
    min-height: 64px;
    border-radius: 16px;
    padding: 0.7rem 1.1rem;
  }

  .entry-gate.is-home .entry-gate__actions .entry-gate__btn-icon {
    width: 1.7rem;
  }

  .entry-gate.is-home .entry-gate__actions .entry-gate__btn-icon svg {
    width: 22px;
    height: 22px;
  }

  .entry-gate.is-home .entry-gate__actions .entry-gate__btn-hint {
    font-size: 0.78rem;
  }

  .entry-gate.is-home .entry-gate__about {
    min-height: clamp(40rem, 95vh, 56rem);
    padding-block: 6.5rem;
  }

  .entry-gate.is-home .entry-gate__actions .entry-gate__btn-hint {
    font-size: 0.78rem;
  }
}

/* Mobile: image above text */
@media (max-width: 767px) {
  .entry-gate.is-home .entry-gate__actions .entry-gate__btn-hint {
    display: block;
  }

  .entry-gate.is-home .entry-gate__about {
    min-height: clamp(34rem, 88vh, 46rem);
  }
}

@media (max-height: 740px) {
  .entry-gate.is-home .entry-gate__hero {
    padding-top: clamp(2.4rem, 7vh, 3.8rem);
  }

  .entry-gate.is-home .entry-gate__home-land {
    padding-bottom: max(1.2rem, env(safe-area-inset-bottom, 0px));
  }

  .entry-gate.is-home .entry-gate__actions {
    gap: 0.4rem;
    margin-bottom: 0.35rem;
  }

  .entry-gate.is-home .entry-gate__actions .entry-gate__btn {
    min-height: 0;
    padding: 0.32rem 0.65rem;
  }

  .entry-gate.is-home .entry-gate__actions .entry-gate__btn-label {
    font-size: 0.86rem;
  }

  .entry-gate.is-home .entry-gate__actions .entry-gate__btn-hint {
    font-size: 0.62rem;
  }
}

@media (max-height: 640px) {
  .entry-gate.is-home .entry-gate__hero {
    padding-top: clamp(1.8rem, 5.5vh, 2.8rem);
  }

  .entry-gate.is-home .entry-gate__welcome {
    font-size: 0.95rem;
  }

  .entry-gate.is-home .entry-gate__title {
    font-size: 1.1rem;
  }

  .entry-gate.is-home .entry-gate__kosher {
    margin-top: 0.2rem;
    padding-top: 0.25rem;
    font-size: 0.95rem;
  }

  .entry-gate.is-home .entry-gate__actions .entry-gate__btn {
    padding: 0.22rem 0.55rem;
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-gate.is-home .entry-gate__home-photo,
  .entry-gate.is-home .entry-gate__scroll-hint.is-inview .entry-gate__scroll-hint-icon {
    animation: none;
  }

  .entry-gate.is-home .entry-gate__home-photo {
    transform: none;
  }

  .entry-gate.is-home .entry-gate__reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .entry-gate.is-home .entry-gate__about-float--a.is-inview,
  .entry-gate.is-home .entry-gate__about-float--a {
    transform: rotate(-8deg);
  }

  .entry-gate.is-home .entry-gate__about-float--b.is-inview,
  .entry-gate.is-home .entry-gate__about-float--b {
    transform: rotate(10deg);
  }

  .entry-gate.is-home .entry-gate__about-float--c.is-inview,
  .entry-gate.is-home .entry-gate__about-float--c {
    opacity: 0.5;
    transform: translate3d(-50%, -50%, 0) rotate(4deg);
  }

  .entry-gate.is-home .entry-gate__about-float--d.is-inview,
  .entry-gate.is-home .entry-gate__about-float--d {
    opacity: 0.55;
    transform: rotate(-6deg);
  }

  .entry-gate.is-home .entry-gate__kashrut-badge.is-inview,
  .entry-gate.is-home .entry-gate__kashrut-badge {
    opacity: 0.4;
    transform: translate3d(-50%, -50%, 0);
  }
}
