:root {
  --ink: #f3efe6;
  --muted: rgba(243, 239, 230, 0.72);
  --line: rgba(255, 255, 255, 0.22);
  --mist: rgba(230, 224, 202, 0.16);
  --glow: rgba(246, 240, 214, 0.28);
  --bg-top: #d9d3c3;
  --bg-mid: #8f9487;
  --bg-bottom: #40473f;
  --bg-deep: #1e241f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.34), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(236, 228, 198, 0.14), transparent 28%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 28%, var(--bg-bottom) 64%, var(--bg-deep) 100%);
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(24px);
}

body::before {
  width: 54vw;
  height: 18vw;
  left: -8vw;
  top: 12vh;
  background: rgba(116, 131, 111, 0.22);
}

body::after {
  width: 42vw;
  height: 14vw;
  right: -8vw;
  bottom: 10vh;
  background: rgba(214, 206, 179, 0.14);
}

.holding-page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  isolation: isolate;
}

.atmosphere {
  position: absolute;
  inset: 0;
}

.mist,
.glow,
.boundary-mark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mist {
  border-radius: 999px;
  background: var(--mist);
  filter: blur(30px);
}

.mist-one {
  width: min(540px, 72vw);
  height: 80px;
  bottom: 24vh;
  animation: drift 8s ease-in-out infinite alternate;
}

.mist-two {
  width: min(380px, 52vw);
  height: 56px;
  bottom: 18vh;
  opacity: 0.9;
  animation: drift 10s ease-in-out infinite alternate-reverse;
}

.glow {
  top: 18vh;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--glow) 0%, rgba(255, 255, 255, 0.08) 40%, rgba(255, 255, 255, 0) 72%);
  filter: blur(10px);
  animation: breathe 6s ease-in-out infinite alternate;
}

.boundary-mark {
  top: 22vh;
  width: min(180px, 32vw);
  height: auto;
  stroke: rgba(255, 255, 255, 0.44);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 7 10;
  opacity: 0.9;
}

.wordmark-block {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.wordmark-block h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.6rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.94;
  text-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.wordmark-block p {
  margin: 0;
  font: 500 clamp(0.78rem, 1.4vw, 0.95rem)/1.2 "Avenir Next", "SF Pro Display", sans-serif;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes breathe {
  from {
    transform: translateX(-50%) scale(0.94);
    opacity: 0.78;
  }
  to {
    transform: translateX(-50%) scale(1.08);
    opacity: 1;
  }
}

@keyframes drift {
  from {
    transform: translateX(calc(-50% - 12px)) translateY(-6px);
  }
  to {
    transform: translateX(calc(-50% + 12px)) translateY(8px);
  }
}
