:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.guest-landing {
  background-color: #19374a;
  background-image: url("https://sudsardegnastay.com/wp-content/uploads/2024/05/veduta-tuerredda.jpg");
  background-position: center 48%;
  background-size: cover;
  color: #fff;
  display: grid;
  isolation: isolate;
  min-height: 100svh;
  padding: 28px clamp(20px, 5vw, 72px);
  position: relative;
}

.guest-landing::before {
  background: rgba(15, 38, 53, 0.66);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.guest-landing-header,
.guest-landing-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.guest-landing-header {
  align-self: start;
}

.guest-landing-brand {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  text-decoration: none;
}

.guest-landing-header span,
.guest-landing-footer {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.guest-landing-content {
  align-self: center;
  max-width: 760px;
  padding: 56px 0;
}

.guest-landing-eyebrow {
  color: #f3c661;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.guest-landing h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.02;
  margin: 0;
  max-width: 680px;
}

.guest-landing-lead {
  font-size: clamp(19px, 2.4vw, 27px);
  line-height: 1.45;
  margin: 26px 0 12px;
  max-width: 730px;
}

.guest-landing-italian {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 30px;
  max-width: 640px;
}

.guest-landing-link {
  align-items: center;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  color: #173749;
  display: inline-flex;
  font-weight: 800;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

.guest-landing-link:hover {
  background: #f3c661;
  border-color: #f3c661;
}

.guest-landing-footer {
  align-self: end;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 18px;
}

.guest-landing-footer a {
  color: #fff;
}

@media (max-width: 640px) {
  .guest-landing {
    min-height: 100svh;
    padding: 22px 20px;
  }

  .guest-landing-header span {
    display: none;
  }

  .guest-landing-content {
    padding: 44px 0;
  }

  .guest-landing h1 {
    font-size: 48px;
  }

  .guest-landing-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
