:root {
  --bg-1: #050505;
  --bg-2: #18070a;
  --bg-3: #3c0913;
  --bg-4: #6d1020;
  --text: #f7efe8;
  --muted: rgba(247, 239, 232, 0.72);
  --line: rgba(247, 239, 232, 0.14);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(109, 16, 32, 0.55), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(60, 9, 19, 0.7), transparent 30%),
    linear-gradient(180deg, var(--bg-4) 0%, var(--bg-3) 24%, var(--bg-2) 54%, var(--bg-1) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.coming-soon {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.coming-soon__content {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.coming-soon__eyebrow {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-family: "Lobster Two", cursive;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(3.5rem, 12vw, 7rem);
  line-height: 0.95;
}

.coming-soon__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.coming-soon__button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
}
