:root {
  --red: #a91b2e;
  --red-dark: #7c1122;
  --black: #1a1717;
  --cream: #fdf8f3;
  --white: #ffffff;
  --line: rgba(169, 27, 46, 0.35);
  --shadow: 0 20px 50px rgba(26, 23, 23, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 15% 10%, #fff 0%, var(--cream) 45%, #faf1e8 100%);
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  position: relative;
}

/* decorative background */
.bg-decor { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.ribbon {
  position: absolute;
  width: 160px;
  height: 160px;
  color: var(--red);
  opacity: 0.16;
}
.ribbon--tl { top: -30px; left: -30px; transform: rotate(-15deg); }
.ribbon--br { bottom: -30px; right: -30px; transform: rotate(165deg); }

.spark {
  position: absolute;
  color: var(--red);
  opacity: 0.35;
  font-size: 1.4rem;
}
.spark--1 { top: 8%; right: 12%; }
.spark--2 { top: 40%; left: 6%; font-size: 1rem; }
.spark--3 { bottom: 18%; right: 20%; font-size: 1.1rem; }

.page {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  text-align: center;
}

.hero { display: flex; justify-content: center; margin-bottom: 1rem; }

.logo {
  width: clamp(140px, 30vw, 220px);
  height: auto;
  border-radius: 50%;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease both;
}

.intro { animation: fadeUp 0.8s ease 0.1s both; }

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 4.2vw, 2.35rem);
  line-height: 1.3;
  margin: 1rem 0 1.2rem;
  color: var(--black);
}
.heart { display: inline-block; }

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 1.2rem auto;
  max-width: 340px;
}
.divider .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}
.divider .bow { font-size: 1.2rem; }
.divider--small { max-width: 220px; margin-top: 1.3rem; }
.heart-small { color: var(--red); font-size: 1.1rem; }

.lede {
  color: var(--red);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

.offerings {
  margin-top: 3rem;
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease 0.2s both;
}

.offerings h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin: 0 0 1.6rem;
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0.25rem;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  text-align: left;
  border-bottom: 1px dashed rgba(169, 27, 46, 0.25);
}
.offer-list li:last-child { border-bottom: none; }

.offer-list .emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.coming-soon {
  margin-top: 3.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

.script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  color: var(--red);
  margin: 0;
  line-height: 1;
}

.handle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 6px 16px rgba(26, 23, 23, 0.08);
  color: var(--black);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.handle:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(26, 23, 23, 0.13);
}

.handle-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--white);
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7);
}

.contact-line {
  margin: 2rem auto 0;
  max-width: 460px;
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  color: var(--black);
  font-weight: 400;
}

.contact-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-btn--ig {
  color: var(--white);
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 45%, #6228d7);
  box-shadow: 0 10px 22px rgba(238, 42, 123, 0.3);
}
.contact-btn--ig:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(238, 42, 123, 0.4);
}

.contact-btn--wa {
  color: var(--white);
  background: #25d366;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}
.contact-btn--wa:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
}

.site-footer {
  margin-top: 3.5rem;
  padding-bottom: 2rem;
  font-size: 0.8rem;
  color: rgba(26, 23, 23, 0.5);
}

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

@media (max-width: 480px) {
  .offerings { padding: 2rem 1.25rem; }
  .offer-list li { gap: 0.75rem; }
}
