* { box-sizing: border-box; }

:root {
  --black: #070606;
  --soft-black: #0d0a0b;
  --rose: #d99aaa;
  --rose-light: #f2d8dd;
  --champagne: #e9d8d0;
  --muted: #a99b9d;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(120, 48, 67, .13), transparent 34%),
    linear-gradient(135deg, #080707 0%, #050505 55%, #0c0809 100%);
  color: var(--champagne);
  font-family: "Montserrat", Arial, sans-serif;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 42vw;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(230, 175, 188, .32);
  filter: blur(.2px);
  pointer-events: none;
  opacity: .75;
}

body::before {
  top: 5vh;
  left: -15vw;
  transform: rotate(-34deg);
  box-shadow: 0 0 28px rgba(221, 137, 157, .22);
}

body::after {
  bottom: 6vh;
  right: -16vw;
  transform: rotate(-34deg);
  box-shadow: 0 0 30px rgba(221, 137, 157, .2);
}

.page {
  min-height: 100vh;
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: 7vh 0 4vh;
  position: relative;
  z-index: 2;
}

.brand { animation: rise 1s ease both; }

.monogram {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(70px, 9vw, 112px);
  line-height: .7;
  font-weight: 500;
  letter-spacing: -.08em;
  background: linear-gradient(120deg, #f5e3df, #d88e9f 50%, #f4e0db);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  position: relative;
}

.monogram span {
  font-family: "Allura", cursive;
  font-size: .72em;
  margin: 0 -.06em;
}

.wordmark {
  margin-top: 30px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3.2vw, 43px);
  font-weight: 500;
  letter-spacing: .22em;
  padding-left: .22em;
}

.wordmark i {
  color: var(--rose);
  font-family: "Allura", cursive;
  font-size: 1.15em;
  font-style: normal;
  letter-spacing: 0;
}

.descriptor {
  margin-top: 13px;
  font-size: 9px;
  letter-spacing: .38em;
  padding-left: .38em;
  color: #b9a9ac;
}

.descriptor b {
  color: var(--rose);
  font-weight: 400;
  margin: 0 .7em;
}

.hero {
  margin-top: 3vh;
  animation: rise 1.2s .15s ease both;
}

.hairline {
  width: 130px;
  height: 1px;
  margin: 0 auto 32px;
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
}

.step {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 5vw, 62px);
  letter-spacing: .25em;
  padding-left: .25em;
  font-weight: 300;
}

.script {
  font-family: "Allura", cursive;
  font-size: clamp(66px, 10vw, 125px);
  line-height: .7;
  color: var(--rose);
  text-shadow: 0 0 28px rgba(217, 154, 170, .16);
  margin-top: 4px;
}

.coming {
  margin-top: 34px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(18px, 2vw, 25px);
  letter-spacing: .52em;
  padding-left: .52em;
}

.intro {
  margin: 14px auto 28px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.signup {
  width: min(520px, 92vw);
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.signup input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(231, 192, 201, .35);
  color: #f2e7e5;
  padding: 15px 17px;
  outline: none;
  font: 300 11px "Montserrat", sans-serif;
  letter-spacing: .05em;
}

.signup input::placeholder { color: #82777a; }

.signup input:focus { border-color: rgba(231, 192, 201, .75); }

.signup button {
  border: 1px solid var(--rose);
  background: transparent;
  color: var(--rose-light);
  padding: 0 20px;
  font: 400 9px "Montserrat", sans-serif;
  letter-spacing: .2em;
  white-space: nowrap;
  cursor: pointer;
  transition: .25s ease;
}

.signup button:hover {
  background: var(--rose);
  color: #12090c;
}

.signup button span { margin-left: 8px; font-size: 14px; }

.message {
  min-height: 16px;
  margin: 10px 0 0;
  color: var(--rose-light);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #665e60;
  font-size: 8px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
}

.footer-brand {
  color: #8d7f82;
}

.footer-sep {
  color: rgba(231, 192, 201, .45);
}


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

@media (max-width: 640px) {
  .page { padding: 5vh 0 3vh; }
  .descriptor { letter-spacing: .22em; }
  .descriptor b { margin: 0 .25em; }
  .wordmark { letter-spacing: .14em; padding-left: .14em; }
  .signup { flex-direction: column; }
  .signup input, .signup button { height: 48px; }
  .signup button { padding: 0 18px; }
  .intro { letter-spacing: .14em; }
  footer {
    max-width: 92vw;
    margin: 0 auto;
    line-height: 1.8;
    letter-spacing: .16em;
  }
}
