:root {
  --ink: #25222c;
  --plum: #493651;
  --plum-light: #765b7d;
  --gold: #b89146;
  --paper: #f7f3ea;
}

* {
  box-sizing: border-box;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

.holding-page {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 40px 24px 76px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.94), transparent 38%),
    linear-gradient(145deg, #f3ede2 0%, #fbf8f1 48%, #efe8dc 100%);
}

.holding-page::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(184, 145, 70, 0.4);
  pointer-events: none;
}

.glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.18;
}

.glow-one {
  top: -220px;
  left: -160px;
  background: var(--plum-light);
}

.glow-two {
  right: -180px;
  bottom: -240px;
  background: var(--gold);
}

.coming-soon-card {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 56px 32px;
  text-align: center;
}

.crest {
  position: relative;
  width: 58px;
  height: 72px;
  margin: 0 auto 28px;
  border: 1px solid rgba(184, 145, 70, 0.6);
  border-radius: 50% 50% 46% 46%;
}

.cross-vertical,
.cross-horizontal {
  position: absolute;
  display: block;
  background: var(--plum);
  border-radius: 999px;
}

.cross-vertical {
  top: 17px;
  left: 27px;
  width: 3px;
  height: 38px;
}

.cross-horizontal {
  top: 28px;
  left: 17px;
  width: 23px;
  height: 3px;
}

.eyebrow,
.domain {
  margin: 0;
  color: var(--plum-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin: 18px auto 22px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 8vw, 5.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(300px, 70%);
  margin: 30px auto;
}

.rule span {
  width: 100%;
  height: 1px;
  background: rgba(184, 145, 70, 0.58);
}

.rule i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  background: var(--gold);
}

.coming-soon {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-style: italic;
}

.message {
  margin: 16px 0 0;
  color: #6d6870;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.domain {
  position: absolute;
  bottom: 46px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  color: rgba(73, 54, 81, 0.72);
  white-space: nowrap;
}

@media (max-width: 540px) {
  .holding-page {
    padding: 24px 20px 70px;
  }

  .holding-page::before {
    inset: 12px;
  }

  .coming-soon-card {
    padding: 34px 12px;
  }

  .eyebrow {
    line-height: 1.7;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .coming-soon-card {
    animation: arrive 700ms ease-out both;
  }

  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
