html,
body {
  margin: 0;
  padding: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #0f0c09;
}

.index-wrapper-container {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  background: #0f0c09;
}
.index-wrapper-container .index-wrapper-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(180deg, rgba(15, 12, 9, 0.38) 0%, rgba(15, 12, 9, 0.54) 45%, rgba(15, 12, 9, 0.82) 100%), radial-gradient(circle at center, rgba(255, 230, 185, 0.18) 0%, rgba(15, 12, 9, 0.72) 68%), url("https://api.simplebis.com/api/files?fileid=69f7310b9bcb3135cd05f177");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  filter: saturate(0.88) contrast(1.05) brightness(0.78);
}
.index-wrapper-container::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.04) 48%, rgba(0, 0, 0, 0.34));
}
.index-wrapper-container .index-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  width: 100vw;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.landing-card {
  width: min(92vw, 520px);
  padding: clamp(34px, 6vw, 56px) clamp(28px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.09));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.landing-logo {
  width: min(260px, 68vw);
  height: auto;
  margin-bottom: 26px;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 238, 210, 0.82);
}

h1 {
  margin: 0;
  max-width: 440px;
  font-size: clamp(31px, 5vw, 52px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: #fff8ef;
}

.intro {
  margin: 18px 0 34px;
  max-width: 390px;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 248, 239, 0.78);
}

.reservation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(135deg, #f4d8a3 0%, #c99349 100%);
  color: #1d1309;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.reservation-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.reservation-button:active {
  transform: translateY(0);
}

@media (max-width: 640px) {
  .index-wrapper-container .index-wrapper {
    padding: 20px;
  }
  .landing-card {
    border-radius: 26px;
  }
  .landing-logo {
    width: min(230px, 72vw);
  }
}