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

html,
body {
  margin: 0;
  min-height: 100%;
}

html[dir='rtl'],
body.roots-home {
  direction: rtl;
  text-align: right;
}

body.roots-home {
  font-family: 'Noto Sans Hebrew', system-ui, sans-serif;
  color: #fff;
  background: #000;
  overscroll-behavior-y: none;
}

.roots-home__main {
  position: relative;
  min-height: calc(var(--vh, 1dvh) * 100);
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.roots-home__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.roots-home__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.1);
  transform-origin: center 36%;
}

.roots-home__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(102, 102, 102, 0.23) 0%,
    rgba(0, 0, 0, 0.84) 56.731%
  );
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.roots-home__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 24rem;
  min-height: calc(var(--vh, 1dvh) * 100);
  margin-inline: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.roots-home__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: min(13.25rem, 72vw);
  margin-bottom: clamp(2rem, 6vh, 3.5rem);
}

.roots-home__logo {
  display: block;
  width: 100%;
  height: auto;
}

.roots-home__tagline {
  display: block;
  width: 74%;
  height: auto;
}

.roots-home__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.375rem;
  width: 15.125rem;
  max-width: 88vw;
  margin: 0;
}

.roots-home__btn {
  --roots-home-btn-icon-box: 18px;
  --roots-home-btn-icon-gap: 16px;
  --roots-home-btn-icon-inset: 22px;
  --roots-home-btn-icon-reserve: calc(
    var(--roots-home-btn-icon-inset) + var(--roots-home-btn-icon-box) + var(--roots-home-btn-icon-gap)
  );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.375rem;
  padding: 0;
  border-radius: 1.3125rem;
  text-decoration: none;
  color: #110202;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  direction: ltr;
  overflow: hidden;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.roots-home__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.roots-home__btn:active {
  transform: translateY(0);
}

.roots-home__btn--menu {
  background: #f8d4bf;
}

.roots-home__btn--book {
  background: #a8dcde;
}

.roots-home__btn--call {
  background: #c1e3cd;
}

.roots-home__btn--review {
  background: #eeefbd;
}

.roots-home__btn-label {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding-inline: var(--roots-home-btn-icon-reserve);
  box-sizing: border-box;
  direction: rtl;
  text-align: center;
}

.roots-home__btn-icon {
  position: absolute;
  inset-inline-end: var(--roots-home-btn-icon-inset);
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  width: var(--roots-home-btn-icon-box);
  height: var(--roots-home-btn-icon-box);
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #110202;
  pointer-events: none;
}

.roots-home__btn-icon img,
.roots-home__btn-icon svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.roots-home__btn-icon--menu img,
.roots-home__btn-icon--menu svg {
  width: 1.0625rem;
  height: 1rem;
}

.roots-home__btn-icon--book img,
.roots-home__btn-icon--book svg {
  width: 0.8125rem;
  height: 1rem;
}

.roots-home__btn-icon--call img,
.roots-home__btn-icon--call svg {
  width: 1rem;
  height: 1rem;
}

.roots-home__btn-icon--review img,
.roots-home__btn-icon--review svg {
  width: 1rem;
  height: 0.9375rem;
}

.roots-home__social {
  display: flex;
  flex-direction: row;
  direction: ltr;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  width: 15.125rem;
  max-width: 88vw;
  margin-top: 66px;
}

.roots-home__social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  text-decoration: none;
  color: #fff;
}

.roots-home__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  box-sizing: border-box;
  overflow: visible;
  color: #fff;
}

.roots-home__social-icon svg {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: visible;
}

.roots-home__social-label {
  font-size: 0.625rem;
  line-height: 1.2;
  direction: rtl;
  text-align: center;
}

@media (max-width: 47.99rem) {
  .roots-home__bg-img {
    object-position: center 34%;
    transform: scale(1.4);
    transform-origin: 52% 85%;
  }
}

/* Landing only — no menu header/footer chrome */
body.roots-home .site-header,
body.roots-home .roots-bar-header,
body.roots-home .roots-bar-credit-footer,
body.roots-home #roots-bar-credit-footer {
  display: none !important;
}

body.roots-home .wp-site-blocks {
  max-width: none;
  padding: 0;
}

body.roots-home .wp-block-roots-bar-roots-home {
  display: block;
  margin: 0;
  width: 100%;
}
