.restin-facilities {
  --restin-accent: #000;
  --restin-ink: #000;
  --restin-muted: #000;
  padding: 120px 0 70px;
  background: #fff;
}

.restin-facilities__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, .84fr);
  gap: 56px;
  align-items: center;
}

.restin-facilities__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.restin-facilities__row + .restin-facilities__row {
  margin-top: 18px;
}

.restin-facility-card {
  min-height: 132px;
  border: 1px solid rgba(0, 0, 0, .24);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  text-align: center;
}

.restin-facility-card--dark {
  background: var(--restin-accent);
  border-color: var(--restin-accent);
  color: #fff;
}

.restin-facility-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.restin-facility-card p {
  margin: 12px 0 0;
  color: currentColor;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.restin-facilities__eyebrow {
  margin: 0 0 12px;
  color: var(--restin-accent);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: capitalize;
}

.restin-facilities__content h2 {
  margin: 0;
  color: var(--restin-ink);
  font-family: var(--font-secondary, "Playfair Display", serif);
  font-size: 64px;
  font-weight: 500;
  line-height: .98;
}

.restin-facilities__text {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--restin-muted);
  font-size: 17px;
  line-height: 1.75;
}

.restin-facilities__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 46px;
}

.restin-facilities__call {
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 22px;
  border-radius: 10px;
  background: var(--call-bg) center / 100% 100% no-repeat;
  color: var(--restin-ink);
}

.restin-facilities__call span {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--restin-accent);
  color: #fff;
  flex: 0 0 auto;
}

.restin-facilities__call svg {
  width: 18px;
  height: 18px;
}

.restin-facilities__call strong {
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.restin-facilities__button {
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 18px 34px;
  background: var(--button-bg) center / 100% 100% no-repeat;
  color: var(--restin-ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: background-color .25s ease, color .25s ease;
}

.restin-facilities__button:hover {
  background: var(--restin-accent);
  color: #fff;
}

.restin-amenities {
  padding: 0 0 100px;
  background: #fff;
}

.restin-amenities__stack {
  display: block;
}

.restin-amenities__item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
  transform-origin: center top;
  will-change: transform, opacity;
}

.restin-amenities__item + .restin-amenities__item {
  margin-top: 50px;
}

.restin-amenities__image {
  display: block;
  position: relative;
  height: clamp(360px, 39vw, 550px);
  overflow: hidden;
}

.restin-amenities__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.restin-amenities__image img:not(:first-child) {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transition: transform .4s ease;
}

.restin-amenities__item:hover .restin-amenities__image img:nth-child(2) {
  transform: scale(.9);
}

.restin-amenities__item:hover .restin-amenities__image img:nth-child(3) {
  transform: scale(.7);
}

.restin-amenities__item:hover .restin-amenities__image img:nth-child(4) {
  transform: scale(.5);
}

.restin-amenities__more {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  z-index: 2;
  border-radius: 10px;
  padding: 36px 20px;
  text-align: center;
  background: var(--more-bg) center / 100% 100% no-repeat;
}

.restin-amenities__more h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-secondary, "Playfair Display", serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}

.restin-amenities__more a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .restin-facilities {
    padding-top: 90px;
  }

  .restin-facilities__layout {
    gap: 42px;
  }

  .restin-facility-card {
    min-height: 124px;
    padding: 20px 14px;
  }

  .restin-facilities__content h2 {
    font-size: 52px;
  }
}

@media (max-width: 991px) {
  .restin-facilities__layout {
    grid-template-columns: 1fr;
  }

  .restin-facilities__content {
    order: -1;
  }
}

@media (max-width: 767px) {
  .restin-facilities {
    padding: 72px 0 50px;
  }

  .restin-facilities__row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .restin-facilities__row + .restin-facilities__row {
    margin-top: 18px;
  }

  .restin-facility-card {
    min-height: 142px;
  }

  .restin-facilities__content h2 {
    font-size: 40px;
    line-height: 1.04;
  }

  .restin-facilities__actions {
    align-items: stretch;
    margin-top: 34px;
  }

  .restin-facilities__call,
  .restin-facilities__button {
    width: 100%;
  }

  .restin-amenities {
    padding-bottom: 72px;
  }

  .restin-amenities__image,
  .restin-amenities__image img {
    height: auto;
    min-height: 220px;
  }

  .restin-amenities__more {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 22px 14px;
  }

  .restin-amenities__more h3 {
    font-size: 26px;
  }
}
