:root {
  --burgundy: #3f0711;
  --burgundy-dark: #130204;
  --white: #fffaf2;
  --muted-white: rgba(255, 250, 242, 0.86);
  --gold: #c89a3a;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  background: var(--burgundy-dark);
}

.launch-page {
  min-height: 100vh;
  position: relative;
  display: grid;
  overflow: hidden;
  isolation: isolate;
}

.launch-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(14, 1, 4, 0.10), rgba(14, 1, 4, 0.18)), url("../assets/cover-jewelry.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -2;
}

.launch-page::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 18%, rgba(70, 6, 17, 0.05), rgba(10, 1, 3, 0.22) 84%);
  z-index: -1;
  pointer-events: none;
}

.hero {
  min-height: 100vh;
  width: 100%;
  padding: clamp(42px, 6vh, 72px) 22px clamp(34px, 6vh, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  animation: pageFade 900ms ease both;
}

.brand-wrap {
  width: min(68vw, 560px);
  margin-bottom: 20px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.tagline {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: 0.03em;
  color: var(--muted-white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.image-wrap { display: none; }

.waitlist-card {
  width: min(100%, 420px);
  display: grid;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 40vh;
}

input {
  width: 100%;
  height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(200, 154, 58, 0.78);
  border-radius: 0;
  background: rgba(32, 4, 9, 0.46);
  color: var(--white);
  font-size: 14px;
  outline: none;
  backdrop-filter: blur(2px);
}

input::placeholder { color: rgba(255, 250, 242, 0.68); }
input:focus { border-color: var(--white); }

button {
  justify-self: center;
  min-width: 210px;
  height: 44px;
  padding: 0 24px;
  border: 0;
  background: var(--white);
  color: #1b0d0d;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, opacity 180ms ease;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

button:hover { transform: translateY(-1px); opacity: 0.94; }

.form-message {
  min-height: 18px;
  margin: 0;
  color: var(--muted-white);
  font-size: 12px;
}

.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;
}

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

@media (max-width: 640px) {
  .launch-page::before { background-position: center top; }
  .hero { padding: 32px 16px 28px; }
  .brand-wrap { width: min(86vw, 420px); margin-bottom: 14px; }
  .tagline { font-size: clamp(20px, 6vw, 28px); }
  .waitlist-card { width: min(100%, 340px); gap: 10px; padding-top: 44vh; }
  input { height: 44px; font-size: 13px; }
  button { min-width: 190px; height: 42px; font-size: 13px; }
}
