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

:root {
  --cream: #faf7f2;
  --gold: #c9a96e;
  --gold-light: #e8d5b0;
  --charcoal: #2c2c2c;
  --muted: #8a8178;
}

html, body {
  height: 100%;
}

body {
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201,169,110,0.06) 0%, transparent 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow: hidden;
  position: relative;
}

/* Falling petals */
.petals-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -30px;
  width: 10px;
  height: 14px;
  background: radial-gradient(ellipse at 40% 35%, rgba(255,255,255,0.9), rgba(201,169,110,0.25));
  border-radius: 50% 10% 50% 10%;
  opacity: 0;
  animation: fall linear infinite;
}

@keyframes fall {
  0%   { transform: translateY(0) rotate(0deg) scale(1);   opacity: 0; }
  5%   { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(110vh) rotate(540deg) scale(0.6); opacity: 0; }
}

/* Hero & card */
.hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 2rem;
}

.card {
  text-align: center;
  padding: 5rem 4rem;
  border: 1px solid var(--gold-light);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  max-width: 480px;
  width: 100%;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}

.save {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 2rem 0;
}

.line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.diamond {
  color: var(--gold);
  font-size: 0.45rem;
  opacity: 0.8;
}

.couple {
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.date {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 2.4rem;
}

.footnote {
  font-family: 'Montserrat', sans-serif;
  font-weight: 200;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 480px) {
  .card {
    padding: 3.5rem 2rem;
  }
  .line {
    width: 40px;
  }
}
