:root {
  --blush: #f6e4e1;
  --rose: #e8b4ac;
  --rose-deep: #c98b83;
  --ink: #4a3b38;
  --cream: #fffaf6;
  --gold: #c9a15a;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 20% 20%, var(--blush), var(--cream) 55%);
  overflow: hidden;
}

.scene {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.blossoms {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.blossom {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  color: var(--rose);
  opacity: 0.35;
}

.blossom--one {
  top: 8%;
  left: 10%;
  transform: rotate(-15deg);
}

.blossom--two {
  bottom: 12%;
  right: 12%;
  width: 6rem;
  height: 6rem;
  transform: rotate(30deg);
  color: var(--gold);
  opacity: 0.25;
}

.blossom--three {
  top: 62%;
  left: 6%;
  width: 3rem;
  height: 3rem;
  transform: rotate(60deg);
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(30rem, calc(100vw - 3rem));
  min-width: 0;
  padding: 3.5rem 2.75rem;
  text-align: center;
  background: rgba(255, 250, 246, 0.7);
  border: 1px solid rgba(201, 161, 90, 0.35);
  border-radius: 1.25rem;
  box-shadow: 0 30px 60px -25px rgba(74, 59, 56, 0.35);
  backdrop-filter: blur(6px);
}

.mark {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--rose-deep);
  margin-bottom: 1.25rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: clamp(2.75rem, 7vw, 3.75rem);
  line-height: 1.05;
  color: var(--ink);
}

.tagline {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  opacity: 0.85;
}

.rule {
  width: 3rem;
  height: 1px;
  margin: 1.75rem auto;
  background: var(--gold);
  opacity: 0.6;
}

.note {
  margin: 0;
  font-size: 0.85rem;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
  opacity: 0.7;
}

@media (max-width: 420px) {
  .card {
    padding: 2.75rem 1.75rem;
  }
}
