:root {
  --bg-1: #fff5f0;
  --bg-2: #ffe8ee;
  --text: #3b1f2b;
  --muted: #70505f;
  --card: rgba(255, 255, 255, 0.82);
  --line: #efcddd;
  --accent: #d94a7a;
  --accent-hover: #bc2f60;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Quicksand", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, #ffe0e7 0%, transparent 36%),
    radial-gradient(circle at 88% 20%, #ffeec8 0%, transparent 28%),
    linear-gradient(155deg, var(--bg-1), var(--bg-2));
  position: relative;
  overflow-x: hidden;
}

.petal {
  position: fixed;
  border-radius: 999px;
  opacity: 0.45;
  filter: blur(1px);
  z-index: 0;
  animation: drift 7s ease-in-out infinite alternate;
}

.petal-1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -40px;
  background: rgba(233, 145, 175, 0.45);
}

.petal-2 {
  width: 130px;
  height: 130px;
  left: -40px;
  top: 28%;
  background: rgba(255, 208, 146, 0.55);
  animation-delay: 1s;
}

.petal-3 {
  width: 160px;
  height: 160px;
  left: 58%;
  bottom: -60px;
  background: rgba(255, 172, 198, 0.45);
  animation-delay: 2s;
}

@keyframes drift {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(-14px) rotate(8deg);
  }
}

.page {
  width: min(1024px, 92%);
  margin: 28px auto 42px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 35px rgba(85, 23, 45, 0.08);
}

.kicker {
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  margin: 0 0 10px;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

h1 span {
  color: var(--accent);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.lead,
p,
li {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.hero {
  text-align: center;
  padding: 34px 24px;
}

.btn {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  transition: background 180ms ease;
}

.btn:hover {
  background: var(--accent-hover);
}

.flowers {
  text-align: center;
}

.bouquet {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.templates > h2 {
  margin: 0 0 12px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.template h3 {
  margin-bottom: 8px;
}

.promises ul {
  margin: 8px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

@media (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
