:root {
  --rose: #e8a5b8;
  --rose-deep: #d97e9a;
  --gold: #c98a4b;
  --gold-light: #f2d9b8;
  --ink: #3a2c2f;
  --ink-soft: #6b5a5e;
  --bg: #fdf8f5;
  --card: #ffffff;
  --ring: rgba(216, 126, 154, 0.25);
}

* { box-sizing: border-box; }

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fdf6f1 0%, #fbeee7 45%, #f7e3da 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

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

/* Background decor */
.bg-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle at 30% 30%, var(--rose), transparent 70%);
  top: -120px; left: -100px;
  animation: float1 14s ease-in-out infinite;
}

.orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle at 60% 40%, var(--gold-light), transparent 70%);
  bottom: -140px; right: -80px;
  animation: float2 16s ease-in-out infinite;
}

.orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle at 50% 50%, #fbc7d4, transparent 70%);
  top: 40%; right: 8%;
  animation: float1 12s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.06); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-25px, 25px) scale(1.05); }
}

.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 780px;
  padding: 48px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.logo-mark { display: flex; }

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ink);
}

.brand-name em {
  font-style: normal;
  color: var(--rose-deep);
  background: linear-gradient(90deg, var(--rose-deep), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero {
  background: var(--card);
  border-radius: 28px;
  padding: 48px 40px 40px;
  box-shadow: 0 20px 60px -20px rgba(150, 80, 100, 0.25), 0 2px 8px rgba(150, 80, 100, 0.06);
  max-width: 680px;
  width: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 14px;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--ink);
}

.lede {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 14px 10px;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff, #fdf1ec);
  border: 1px solid rgba(216, 126, 154, 0.18);
}

.cd-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
}

.cd-label {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Notify form */
.notify-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-form input[type="email"] {
  flex: 1 1 240px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(216, 126, 154, 0.3);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  outline: none;
  background: #fffaf8;
  color: var(--ink);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.notify-form input[type="email"]:focus {
  border-color: var(--rose-deep);
  box-shadow: 0 0 0 4px var(--ring);
}

.notify-form button {
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rose-deep), var(--gold));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 20px -6px rgba(201, 138, 75, 0.5);
}

.notify-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(201, 138, 75, 0.6);
}

.notify-form button:active {
  transform: translateY(0);
}

.form-msg {
  min-height: 20px;
  font-size: 13px;
  color: var(--rose-deep);
  margin: 12px 0 0;
  font-weight: 500;
}

.contact-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: #fbeee7;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: background 0.2s, color 0.2s;
}

.contact-pill:hover {
  background: var(--gold-light);
  color: var(--ink);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fbeee7;
  color: var(--rose-deep);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.social-icon:hover {
  background: var(--rose-deep);
  color: #fff;
  transform: translateY(-2px);
}

.footer {
  margin-top: 28px;
}

.footer p {
  font-size: 12.5px;
  color: var(--ink-soft);
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 560px) {
  .hero { padding: 36px 22px 30px; border-radius: 22px; }
  .cd-unit { min-width: 64px; padding: 10px 6px; }
  .cd-num { font-size: 26px; }
  .notify-form button { flex: 1 1 100%; }
}
