* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --cream: #f5ead7;
  --dark: #17231d;
  --glass: rgba(22, 31, 26, 0.46);
  --glass-border: rgba(255, 255, 255, 0.30);
}

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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    linear-gradient(rgba(12, 20, 16, 0.38), rgba(12, 20, 16, 0.70)),
    url("images/resort.jpg") center / cover no-repeat;
}

.page {
  min-height: 100vh;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: min(94vw, 820px);
  padding: clamp(34px, 6vw, 64px) clamp(24px, 5vw, 52px);
  text-align: center;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  box-shadow: 0 32px 95px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  animation: cardIn 950ms ease both;
}

.logo-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
}

.logo-mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  color: var(--cream);
}

.eyebrow {
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.88;
}

h1 {
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 7.8vw, 82px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.domain {
  display: inline-block;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.52);
  animation: gentleFloat 3.2s ease-in-out infinite;
}

.message {
  max-width: 660px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.94);
}

.message p {
  margin-bottom: 10px;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.48;
}

.message strong {
  display: inline-block;
  min-width: 34px;
  margin-right: 8px;
  font-size: 13px;
  letter-spacing: 0.10em;
  color: var(--cream);
  opacity: 0.90;
}

.loader {
  width: min(260px, 72vw);
  height: 3px;
  margin: 0 auto 26px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.loader span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--cream);
  animation: load 8s linear forwards;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  color: var(--dark);
  background: var(--cream);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.20);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
}

.small {
  max-width: 620px;
  margin: 20px auto 0;
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.76;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes load {
  to {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 18px;
  }

  .card {
    border-radius: 24px;
  }

  .logo-mark {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .logo-mark span {
    font-size: 35px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  .message p {
    margin-bottom: 9px;
  }

  .button {
    width: 100%;
    max-width: 320px;
  }
}
