:root {
  --black: #030303;
  --white: #f7f7f7;
  --muted: rgba(247, 247, 247, 0.68);
  --soft: rgba(247, 247, 247, 0.14);
  --pink: #f32d98;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(243, 45, 152, 0.18), transparent 32rem),
    linear-gradient(180deg, #050505 0%, #000 58%, #050505 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.stage {
  min-height: calc(100svh - 72px);
  display: grid;
  place-items: center;
  padding: 24px 22px 12px;
}

.intro {
  width: min(920px, 100%);
  text-align: center;
  transform: translateY(-1.5vh);
}

.logo {
  display: block;
  width: min(760px, 94vw);
  margin: -72px auto -54px;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.72));
}

.kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(12px, 1.3vw, 15px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 4.7vw, 54px);
  font-weight: 800;
  line-height: 1;
}

.copy {
  max-width: 540px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
}

.booking {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 28px;
  padding: 0 20px;
  border: 1px solid rgba(247, 247, 247, 0.34);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.booking:hover,
.booking:focus-visible {
  border-color: rgba(243, 45, 152, 0.82);
  background: rgba(243, 45, 152, 0.12);
  transform: translateY(-1px);
}

.site-footer {
  min-height: 72px;
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 18px 22px;
  color: rgba(247, 247, 247, 0.48);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .stage {
    min-height: calc(100svh - 104px);
    padding-top: 24px;
  }

  .intro {
    transform: none;
  }

  .logo {
    width: 100%;
    margin: -42px auto -34px;
  }

  .kicker {
    font-size: 11px;
    letter-spacing: 0.13em;
  }

  h1 {
    font-size: clamp(34px, 11vw, 44px);
  }

  .site-footer {
    min-height: 88px;
  }
}
