@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Nunito:wght@300;400;500;600&display=swap');

:root {
  --cream: #FFF8F0;
  --warm-white: #FFFDF9;
  --blush: #F9C8C8;
  --rose: #E8A0A0;
  --dusty-pink: #D4848C;
  --peach: #F9DCC4;
  --apricot: #F4B183;
  --butter: #FDE8A0;
  --sage: #C2D4BC;
  --sage-dark: #8FA88A;
  --lavender: #D9C8E8;
  --lavender-dark: #A889C4;
  --brown: #7A5C50;
  --text: #4A3430;
  --text-light: #8A6A64;
  --border: rgba(212, 132, 140, 0.2);
  --shadow: 0 4px 24px rgba(122, 92, 80, 0.10);
  --shadow-hover: 0 8px 36px rgba(122, 92, 80, 0.18);
  --radius: 20px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
}

/* --- DECORATIVE BG BLOBS --- */
body::before {
  content: '';
  position: fixed;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,200,200,0.35) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -100px; left: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,212,188,0.3) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

/* --- NAV --- */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 240, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1.5px solid var(--border);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--dusty-pink);
  text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .petal { font-size: 20px; }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 15px; font-weight: 500;
  color: var(--text-light);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: width 0.25s;
}
.nav-links a:hover { color: var(--dusty-pink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--dusty-pink); font-weight: 600; }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--dusty-pink);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
  text-decoration: none;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--rose) !important; color: #fff !important; transform: translateY(-1px); }

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-primary { background: var(--dusty-pink); color: #fff; }
.btn-secondary { background: var(--peach); color: var(--brown); }
.btn-outline { background: transparent; border: 2px solid var(--dusty-pink); color: var(--dusty-pink); }

/* --- SECTION WRAPPER --- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 40px; position: relative; z-index: 1; }

section { padding: 80px 0; }

.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sage-dark);
  margin-bottom: 10px;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; }
h1 { font-size: clamp(36px, 5vw, 60px); line-height: 1.15; }
h2 { font-size: clamp(28px, 3.5vw, 42px); line-height: 1.25; }
h3 { font-size: 20px; }

/* --- FOOTER --- */
footer {
  background: var(--warm-white);
  border-top: 1.5px solid var(--border);
  padding: 48px 0 32px;
  text-align: center;
  position: relative; z-index: 1;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--dusty-pink);
  margin-bottom: 20px;
  display: block;
}
.footer-links { display: flex; justify-content: center; gap: 28px; margin-bottom: 24px; }
.footer-links a { text-decoration: none; color: var(--text-light); font-size: 14px; }
.footer-links a:hover { color: var(--dusty-pink); }
.footer-copy { font-size: 13px; color: var(--text-light); }

/* --- CARDS --- */
.card {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

/* --- PILL TAGS --- */
.pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 12px; font-weight: 600;
  background: var(--lavender);
  color: var(--lavender-dark);
}
.pill-peach { background: var(--peach); color: var(--brown); }
.pill-sage { background: var(--sage); color: var(--sage-dark); }
.pill-blush { background: var(--blush); color: var(--dusty-pink); }

/* --- FORM STYLES --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text-light); margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(232, 160, 160, 0.18);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- DECORATIVE DOODLES (CSS-only) --- */
.doodle-star {
  display: inline-block;
  width: 18px; height: 18px;
  background: var(--butter);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.sparkle {
  display: inline-block;
  font-size: 20px;
  animation: spin 6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- SCROLL ANIMATION --- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- HERO FLOATING SHAPES --- */
.float { animation: float 4s ease-in-out infinite; }
.float-delay { animation: float 4s ease-in-out 1.5s infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .container { padding: 0 20px; }
  section { padding: 56px 0; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
}
