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

:root {
  --bg: #1c1b18;
  --bg2: #2a2822;
  --accent: #a8916e;
  --accent-soft: rgba(168, 145, 110, 0.35);
  --text: #f5f1ea;
  --text-muted: rgba(245, 241, 234, 0.62);
  --ff-head: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Jost", system-ui, sans-serif;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, var(--accent-soft), transparent 70%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg2) 45%, var(--bg) 100%);
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: drift 18s ease-in-out infinite alternate;
}

.bg-glow--1 {
  width: 55vw;
  height: 55vw;
  max-width: 520px;
  max-height: 520px;
  top: -12%;
  right: -8%;
  background: var(--accent);
}

.bg-glow--2 {
  width: 45vw;
  height: 45vw;
  max-width: 420px;
  max-height: 420px;
  bottom: -15%;
  left: -10%;
  background: var(--accent);
  animation-delay: -9s;
  opacity: 0.25;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(3%, 4%) scale(1.08);
  }
}

.soon {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 28px;
}

.soon-eyebrow {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeUp 0.9s ease both;
}

.soon-title {
  font-family: var(--ff-head);
  font-size: clamp(42px, 11vw, 76px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  animation: fadeUp 0.9s ease 0.1s both;
}

.soon-location {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease 0.2s both;
}

.soon-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease 0.25s both;
}

.soon-lead {
  max-width: 420px;
  font-size: clamp(15px, 2.5vw, 17px);
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  animation: fadeUp 0.9s ease 0.3s both;
}

.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.04);
  animation: fadeUp 0.9s ease 0.4s both;
}

.soon-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.soon-footer {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: lowercase;
  color: var(--text-muted);
  animation: fadeUp 0.9s ease 0.5s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-glow,
  .soon-badge::before {
    animation: none;
  }

  .soon-eyebrow,
  .soon-title,
  .soon-location,
  .soon-rule,
  .soon-lead,
  .soon-badge,
  .soon-footer {
    animation: none;
  }
}
