@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600;700&family=Parisienne&display=swap');

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: #26323f;
  background: #fffdfb;
}
.hero {
  min-height: 230px;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  gap: 20px;
  padding: 30px 38px 24px;
  border-bottom: 3px solid #f4cbd2;
  text-align: center;
}
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 12px; color: #c6788a; font-weight: 700; }
h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .92;
  margin: 4px 0 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
h1 span {
  display: block;
  font-family: Parisienne, cursive;
  text-transform: none;
  font-size: 1.18em;
  color: #e799aa;
  letter-spacing: 0;
  font-weight: 400;
}
.sub { color:#667; max-width: 620px; margin: 0 auto; line-height: 1.5; }
.corner-floral {
  height: 170px;
  opacity: .95;
  background:
    radial-gradient(ellipse at 45% 45%, #f1b0bd 0 13%, transparent 14%),
    radial-gradient(ellipse at 60% 40%, #f6cbd2 0 16%, transparent 17%),
    radial-gradient(ellipse at 38% 60%, #e99aaa 0 14%, transparent 15%),
    radial-gradient(ellipse at 70% 70%, #b8c7ae 0 9%, transparent 10%),
    radial-gradient(ellipse at 24% 24%, #aab8c5 0 8%, transparent 9%);
  filter: blur(.1px);
}
.corner-floral.right { transform: scaleX(-1); }

.app {
  display: grid;
  grid-template-columns: 430px minmax(500px, 1fr);
  gap: 40px;
  padding: 36px;
  max-width: 1320px;
  margin: 0 auto;
}
.panel {
  background: white;
  border: 1px solid #f1d7dc;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(67, 46, 50, .08);
}
.step {
  display: inline-block;
  background: #e9a5b3;
  color: white;
  padding: 8px 14px;
  border-radius: 7px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
}
h2 {
  font-family: Parisienne, cursive;
  color: #344254;
  font-size: 36px;
  margin: 8px 0 16px;
  font-weight: 400;
}
.personRow {
  display: grid;
  grid-template-columns: 1fr 125px 30px;
  gap: 8px;
  align-items: center;
  margin: 8px 0;
}
input, select {
  width: 100%;
  border: 1px solid #dccfd2;
  border-radius: 7px;
  padding: 12px;
  font-size: 15px;
  background: white;
}
label { display: block; margin: 14px 0 6px; font-weight: 600; font-size: 14px; color: #556; }
.removeBtn {
  border: 0;
  background: transparent;
  font-size: 24px;
  color:#8b6b72;
  cursor:pointer;
}
button {
  border: 1px solid #df9aaa;
  background: white;
  color:#b55e74;
  border-radius: 8px;
  padding: 12px 16px;
  font-weight: 700;
  cursor:pointer;
}
.primary {
  width: 100%;
  margin-top: 20px;
  background: linear-gradient(90deg,#df7f99,#e7a6b6);
  color:white;
  border:0;
  font-size: 16px;
  padding: 16px;
}
.outline { margin: 12px 0 8px; width: 100%; }
.previewWrap { text-align: center; }
.script {
  font-family: Parisienne, cursive;
  color: #d98095;
  font-size: 32px;
  margin: 0 0 10px;
}
.artboard {
  background: white;
  width: min(100%, 640px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  box-shadow: 0 18px 50px rgba(38,50,63,.14);
  border: 1px solid #eee;
}
.artboard svg { width: 100%; height: 100%; display:block; }
.downloadBox {
  width: min(100%, 640px);
  margin: 22px auto;
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 10px;
  align-items: center;
  text-align: left;
  border: 1px solid #f0cbd2;
  background: #fff7f8;
  padding: 16px;
  border-radius: 12px;
}
.downloadBox p { margin: 4px 0 0; color:#667; font-size: 13px;}
.guide {
  max-width: 1320px;
  margin: 10px auto 50px;
  padding: 0 36px;
  text-align: center;
}
.guide h2 { color:#d98095; }
#flowerGuide {
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  border:1px solid #eed9dd;
  background:white;
}
.guideItem {
  padding: 16px 10px;
  border-right:1px solid #eed9dd;
  border-bottom:1px solid #eed9dd;
}
.guideItem svg { width: 70px; height: 70px; }
.guideMonth { color:#d98095; text-transform: uppercase; font-size:12px; font-weight:700; }
.guideName { font-size: 13px; }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .corner-floral { display:none; }
  .app { grid-template-columns: 1fr; padding: 20px; }
  .downloadBox { grid-template-columns: 1fr; }
  #flowerGuide { grid-template-columns: repeat(2, 1fr); }
}