.contact-hero {
  position: relative;
  width: 100%;
  height: clamp(320px, 47.36vw, 647px);
  overflow: hidden;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58.8%;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: clamp(20px, 5.42vw, 74px);
}

.contact-hero__title {
  font-size: var(--fs-display-sm);
  line-height: 0.885;
  text-align: right;
  color: var(--paper);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.contact-intro {
  background-color: var(--leaf);
  padding-top: clamp(40px, 7.17vw, 98px);
  padding-bottom: clamp(48px, 9.15vw, 125px);
}

.contact-intro__icon {
  width: clamp(40px, 4.25vw, 58px);
  height: auto;
  margin-inline: auto;
}

.contact-intro__body {
  margin-top: clamp(20px, 3.73vw, 51px);
}

.contact-intro__body p {
  font-size: clamp(1rem, 1.98vw, 1.6875rem);
  line-height: 1.407;
  text-align: justify;
  color: var(--paper);
}

.contact-intro__body p + p {
  margin-top: clamp(16px, 2.42vw, 33px);
}

.reservation {
  position: relative;
  width: 100%;
  height: clamp(420px, 56.96vw, 778px);
  overflow: hidden;
}

.reservation__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 90%;
}

.reservation__card {
  position: absolute;
  left: 47.6%;
  top: 19.4%;
  transform: translateX(-50%);
  width: min(54.5%, 745px);
  aspect-ratio: 745 / 481;
  container-type: inline-size;
}

.reservation__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reservation__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding-top: 15.03cqw;
  color: var(--bark);
}

.reservation__title {
  font-size: max(0.75rem, 2.55cqw);
  font-weight: 700;
  line-height: 1.263;
  text-align: center;
}

.reservation__channels {
  display: flex;
  flex-direction: column;
  gap: 3.36cqw;
  margin-top: 6.71cqw;
}

.reservation__channels a {
  display: flex;
  align-items: center;
  gap: 2.68cqw;
  transition: opacity 0.3s var(--ease);
}
.reservation__channels a:hover {
  opacity: 0.68;
}

.reservation__channels svg {
  flex-shrink: 0;
  width: max(1.375rem, 5.91cqw);
  height: max(1.375rem, 5.91cqw);
  transition: transform 0.3s var(--ease);
}
.reservation__channels a:hover svg {
  transform: scale(1.1);
}

.reservation__channels span {
  font-size: max(0.688rem, 2.15cqw);
  font-weight: 500;
  line-height: 1;
}

.reservation__sign {
  margin-top: 3.89cqw;
  font-size: max(0.75rem, 2.55cqw);
  font-weight: 700;
  line-height: 1.263;
  text-align: center;
}

@media (min-width: 1024px) {
  .contact-hero__title {
    max-width: min(33vw, 451px);
  }
}

@media (max-width: 1023px) {
  .reservation__card {
    left: 50%;
    width: min(78%, 745px);
  }
}

@media (max-width: 639px) {
  .reservation {
    height: 82vw;
    min-height: 300px;
    max-height: 420px;
  }

  .reservation__card {
    width: 94%;
  }

  .contact-intro__body p {
    text-align: left;
  }
}
