/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --rose:    #e8637a;
  --rose-lt: #f9dde2;
  --rose-dk: #c94060;
  --gold:    #c9915a;
  --green:   #7aab8a;
  --cream:   #fdf6f0;
  --dark:    #2d1f28;
  --grey:    #7a6a72;

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Lato', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── Helpers ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  text-align: center;
  margin-bottom: .6rem;
  color: var(--dark);
}

.section-subtitle {
  text-align: center;
  color: var(--grey);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-sans);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,99,122,.3); }

.btn--primary {
  background: var(--rose);
  color: #fff;
}
.btn--primary:hover { background: var(--rose-dk); }

.btn--outline {
  border-color: var(--rose);
  color: var(--rose);
  background: transparent;
}
.btn--outline:hover { background: var(--rose); color: #fff; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(145deg, #fce8ed 0%, #fdf6f0 55%, #e8f4ec 100%);
  overflow: hidden;
}

.hero__content { position: relative; z-index: 2; padding: 2rem 1.5rem; }

.hero__eyebrow {
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.hero__title em {
  color: var(--rose);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--grey);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: var(--rose);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── Falling petals ── */
.petals { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.petal {
  position: absolute;
  top: -40px;
  border-radius: 50% 0 50% 0;
  opacity: .7;
  animation: fall linear infinite;
}

@keyframes fall {
  0%   { transform: translateY(0) rotate(0deg); opacity: .8; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* ── Values ── */
.values {
  padding: 6rem 1.5rem;
  background: #fff;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(232,99,122,.15); }

.value-card__icon { font-size: 2.4rem; display: block; margin-bottom: 1rem; }

.value-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--dark);
}

.value-card p { color: var(--grey); font-size: .95rem; line-height: 1.6; }

/* ── Quote ── */
.quote {
  padding: 6rem 1.5rem;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dk) 100%);
  text-align: center;
}

.quote blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-style: italic;
  color: #fff;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.quote cite {
  display: block;
  margin-top: 1.5rem;
  font-size: .9rem;
  font-style: normal;
  font-family: var(--ff-sans);
  letter-spacing: .1em;
  color: rgba(255,255,255,.7);
}

/* ── Gifts ── */
.gifts {
  padding: 6rem 1.5rem;
  background: var(--cream);
}

.gifts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.gift-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.gift-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(232,99,122,.18); }

.gift-card__img {
  height: 220px;
  background-size: cover;
  background-position: center;
}

/* Gradient placeholders for gift images */
.gift-card__img--1 {
  background: linear-gradient(135deg, #f9c5d1 0%, #e8637a 50%, #c94060 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.gift-card__img--1::after  { content: "🌹"; }
.gift-card__img--2 {
  background: linear-gradient(135deg, #fde8c8 0%, #c9915a 50%, #a06b3a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.gift-card__img--2::after  { content: "🎁"; }
.gift-card__img--3 {
  background: linear-gradient(135deg, #d4edd9 0%, #7aab8a 50%, #4a7a5a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.gift-card__img--3::after  { content: "🌿"; }

.gift-card__body { padding: 1.5rem; }

.gift-card__tag {
  display: inline-block;
  background: var(--rose-lt);
  color: var(--rose-dk);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}

.gift-card__body h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.gift-card__body p { color: var(--grey); font-size: .9rem; margin-bottom: 1.2rem; line-height: 1.6; }

/* ── CTA ── */
.cta {
  padding: 6rem 1.5rem;
  background: var(--dark);
  text-align: center;
  color: #fff;
}

.cta h2 {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: .8rem;
}

.cta p { color: rgba(255,255,255,.7); margin-bottom: 2.5rem; font-size: 1.05rem; }

.cta__form {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  max-width: 520px;
  margin: 0 auto 1rem;
}

.cta__form input {
  flex: 1 1 240px;
  padding: .85rem 1.4rem;
  border-radius: 50px;
  border: none;
  font-size: .95rem;
  font-family: var(--ff-sans);
  outline: none;
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  transition: border-color .2s;
}
.cta__form input::placeholder { color: rgba(255,255,255,.45); }
.cta__form input:focus { border-color: var(--rose); }

.cta__note {
  font-size: .9rem;
  color: var(--rose);
  min-height: 1.4em;
  margin-top: .5rem;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
  padding: 1.5rem;
  color: rgba(255,255,255,.4);
  font-size: .85rem;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .cta__form { flex-direction: column; align-items: stretch; }
  .cta__form input { text-align: center; }
}
