:root {
  --ivory: #f4ebdd;
  --ivory-soft: rgba(244, 235, 221, 0.78);
  --ivory-mute: rgba(244, 235, 221, 0.55);
  --gold: #d4c4a8;
  --gold-deep: #cbb79a;
  --ink: #3f221f;
  --line: rgba(212, 196, 168, 0.55);
  --sans: "Jost", "Avenir Next", "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
}

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

html {
  min-height: 100%;
}

body {
  font-family: var(--sans);
  color: var(--ivory);
  background: #1a070b url("assets/bg-mobile.png") center / cover no-repeat;
  min-height: 100dvh;
}

img {
  display: block;
  max-width: 100%;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 58% 52% at 50% 46%,
      rgba(18, 4, 8, 0.08) 0%,
      rgba(18, 4, 8, 0.22) 70%,
      rgba(10, 2, 6, 0.38) 100%
    );
}

.top {
  position: relative;
  z-index: 2;
}

.cats {
  position: absolute;
  top: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ivory-soft);
}

.cats i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  display: block;
}

.stage {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 92px 22px 36px;
}

.brand {
  width: min(86vw, 430px);
  aspect-ratio: 1191 / 189;
  height: auto;
  margin-bottom: 18px;
  background: #f7efe2;
  -webkit-mask: url("assets/logo.png") center / contain no-repeat;
  mask: url("assets/logo.png") center / contain no-repeat;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.tagline,
.soon,
.foot,
.cats,
.notify button {
  font-family: var(--sans);
  text-transform: uppercase;
}

.tagline {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.46em;
  color: var(--ivory-soft);
  padding-left: 0.46em;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(210px, 58vw);
  margin: 22px 0 26px;
}

.rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line),
    transparent
  );
}

.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 196, 168, 0.08);
  flex: none;
}

.dot.solo {
  margin: 22px 0 16px;
  width: 4px;
  height: 4px;
}

.soon {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.52em;
  padding-left: 0.52em;
  color: var(--ivory);
  margin-bottom: 16px;
}

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(20px, 4.6vw, 26px);
  line-height: 1.35;
  color: var(--ivory);
  margin-bottom: 28px;
}

.notify {
  display: flex;
  align-items: stretch;
  width: min(92vw, 420px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 4px 4px 4px;
  background: rgba(20, 6, 10, 0.18);
  backdrop-filter: blur(6px);
}

.notify input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.02em;
  padding: 11px 18px 11px 22px;
}

.notify input::placeholder {
  color: var(--ivory-mute);
}

.notify button {
  border: 0;
  cursor: pointer;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.notify button:hover {
  background: var(--gold-deep);
}

.notify button:active {
  transform: scale(0.98);
}

.notify button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-msg {
  min-height: 1.2em;
  margin-top: 12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
}

.form-msg.error {
  color: #e8c4c4;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 18px;
  margin-top: 22px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ivory-soft);
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.contact a:hover {
  color: var(--ivory);
}

.icon-wrap {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
}

.icon-wrap svg {
  width: 22px;
  height: 22px;
}

.sep {
  width: 1px;
  height: 16px;
  background: var(--line);
}

.socials {
  display: flex;
  align-items: center;
  gap: 22px;
}

.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--ivory);
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.socials svg {
  width: 22px;
  height: 22px;
}

.foot {
  margin-top: 18px;
  font-size: 9px;
  letter-spacing: 0.38em;
  padding-left: 0.38em;
  color: var(--ivory-mute);
}

@media (prefers-reduced-motion: no-preference) {
  .stage > * {
    animation: rise 0.85s ease both;
  }

  .brand { animation-delay: 0.05s; }
  .tagline { animation-delay: 0.12s; }
  .ornament { animation-delay: 0.18s; }
  .soon { animation-delay: 0.24s; }
  .quote { animation-delay: 0.3s; }
  .notify { animation-delay: 0.38s; }
  .form-msg { animation-delay: 0.38s; }
  .contact { animation-delay: 0.46s; }
  .dot.solo { animation-delay: 0.5s; }
  .socials { animation-delay: 0.56s; }
  .foot { animation-delay: 0.62s; }
}

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

@media (min-width: 900px) {
  body {
    background-image: url("assets/bg-desktop.png");
  }

  .cats {
    top: 28px;
    right: 40px;
    flex-direction: row;
    gap: 12px;
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .cats i {
    width: 3px;
    height: 3px;
  }

  .stage {
    padding: 48px 24px 40px;
  }

  .brand {
    width: min(52vw, 540px);
    margin-bottom: 20px;
  }

  .tagline {
    font-size: 11px;
    letter-spacing: 0.5em;
  }

  .soon {
    font-size: 13px;
    letter-spacing: 0.56em;
  }

  .quote {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .notify {
    width: min(440px, 42vw);
  }

  .contact {
    margin-top: 26px;
    font-size: 13px;
    gap: 18px 22px;
  }
}

@media (max-width: 380px) {
  .contact {
    flex-direction: column;
    gap: 10px;
  }

  .sep {
    display: none;
  }

  .notify input {
    padding-left: 16px;
    font-size: 12px;
  }

  .notify button {
    padding: 11px 14px;
    letter-spacing: 0.12em;
  }
}
