/* =========================================
   Rosita Storee — Coming Soon
   ========================================= */

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

:root {
  --burgundy:  #471224;
  --rose:      #c07d80;
  --blush:     #f4cdca;
  --mist:      #c9d8e5;
  --cream:     #f3e7b1;
  --white:     #ffffff;
  --off-white: #faf9f8;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--off-white);
  color: var(--burgundy);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── Layout ───────────────────────────── */

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  gap: 0;
}

/* ── Logo ─────────────────────────────── */

.logo-wrap {
  margin-bottom: 3rem;
}

.logo {
  width: min(280px, 60vw);
  height: auto;
  display: block;
}

/* ── Divider ──────────────────────────── */

.divider {
  width: 40px;
  height: 1px;
  background-color: var(--rose);
  margin: 0 auto 2.5rem;
}

/* ── Heading ──────────────────────────── */

.heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

/* ── Subtext ──────────────────────────── */

.subtext {
  font-size: clamp(0.8rem, 2vw, 0.9rem);
  letter-spacing: 0.12em;
  color: var(--rose);
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 3rem;
}

/* ── Countdown ────────────────────────── */

.countdown {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.countdown-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
  min-width: 2ch;
}

.countdown-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

/* ── Email form ───────────────────────── */

.notify-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  opacity: 0.6;
  margin-bottom: 1rem;
}

.notify-form {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: min(400px, 90vw);
  border-bottom: 1px solid var(--rose);
  margin-bottom: 3.5rem;
}

.notify-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--burgundy);
  padding: 0.6rem 0;
}

.notify-form input[type="email"]::placeholder {
  color: var(--rose);
  opacity: 0.7;
}

.notify-form button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  padding: 0.6rem 0 0.6rem 1rem;
  transition: color 0.2s ease;
}

.notify-form button:hover {
  color: var(--burgundy);
}

.notify-success {
  display: none;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 3.5rem;
}

/* ── Social links ─────────────────────── */

.social-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  margin-bottom: 3rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--rose);
  transition: color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  color: var(--burgundy);
  transform: translateY(-1px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Footer ───────────────────────────── */

footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0.6;
}

/* ── Decorative bar ───────────────────── */

.color-bar {
  display: flex;
  width: 100%;
  height: 3px;
  position: fixed;
  top: 0;
  left: 0;
}

.color-bar span {
  flex: 1;
}

.color-bar span:nth-child(1) { background: var(--burgundy); }
.color-bar span:nth-child(2) { background: var(--rose); }
.color-bar span:nth-child(3) { background: var(--blush); }
.color-bar span:nth-child(4) { background: var(--mist); }
.color-bar span:nth-child(5) { background: var(--cream); }

/* ── Responsive ───────────────────────── */

@media (max-width: 480px) {
  .countdown {
    gap: 1.5rem;
  }

  .notify-form {
    flex-direction: column;
    border-bottom: none;
    gap: 0.75rem;
  }

  .notify-form input[type="email"] {
    border-bottom: 1px solid var(--rose);
    padding: 0.5rem 0;
  }

  .notify-form button {
    padding: 0.5rem 0;
    text-align: left;
  }
}
