:root {
  --pink: #F2A7C3;
  --pink-dark: #E07AA0;
  --mint: #5DCAA5;
  --mint-dark: #3da886;
  --cream: #FDF8F5;
  --warm-white: #FFFCFA;
  --charcoal: #2C2826;
  --mid: #7A6E6A;
  --light-border: #EEE5E0;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,248,245,0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-border);
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-logo img { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.nav-wordmark { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--charcoal); line-height: 1.2; }
.nav-wordmark span { color: var(--mint-dark); display: block; font-size: 0.68rem; font-family: 'DM Sans', sans-serif; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.875rem; color: var(--mid); text-decoration: none; font-weight: 500; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-links a.active { border-bottom: 2px solid var(--pink); padding-bottom: 2px; }
.nav-cta { background: var(--pink); color: white; border: none; padding: 0.55rem 1.3rem; border-radius: 100px; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-block; }
.nav-cta:hover { background: var(--pink-dark); transform: translateY(-1px); }

/* PAGE HEADER */
.page-header { background: var(--cream); border-bottom: 1px solid var(--light-border); padding: 3.5rem 2rem 3rem; text-align: center; }
.page-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-dark); font-weight: 500; margin-bottom: 0.75rem; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--charcoal); line-height: 1.2; }
.page-header p { color: var(--mid); font-size: 1rem; margin-top: 0.75rem; font-weight: 300; max-width: 520px; margin-left: auto; margin-right: auto; }

/* SECTION */
section { padding: 5rem 2rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink-dark); font-weight: 500; margin-bottom: 0.75rem; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--charcoal); line-height: 1.2; }
.section-header p { color: var(--mid); font-size: 1rem; margin-top: 0.75rem; font-weight: 300; }

/* BUTTONS */
.btn-primary { background: var(--pink); color: white; padding: 0.85rem 2rem; border-radius: 100px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: background 0.2s, transform 0.15s; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; display: inline-block; }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--charcoal); padding: 0.85rem 2rem; border-radius: 100px; font-size: 0.95rem; font-weight: 500; text-decoration: none; transition: all 0.2s; border: 1.5px solid var(--light-border); cursor: pointer; font-family: 'DM Sans', sans-serif; display: inline-block; }
.btn-outline:hover { border-color: var(--charcoal); transform: translateY(-2px); }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, #F9E0EB 0%, #E8F9F3 100%); border-top: 1px solid var(--light-border); border-bottom: 1px solid var(--light-border); padding: 4rem 2rem; text-align: center; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.cta-banner p { color: var(--mid); font-size: 1rem; margin-bottom: 2rem; font-weight: 300; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--charcoal); color: #B0A8A4; text-align: center; padding: 2.5rem 2rem; font-size: 0.82rem; font-weight: 300; }
footer .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: white; margin-bottom: 0.5rem; }
footer a { color: var(--pink); text-decoration: none; }
footer .footer-links { display: flex; justify-content: center; gap: 2rem; margin: 1rem 0; flex-wrap: wrap; }
footer .footer-links a { color: #B0A8A4; font-size: 0.8rem; }
footer .footer-links a:hover { color: white; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.6s ease both; }

/* RESPONSIVE NAV */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  section { padding: 3rem 1.25rem; }
}
