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

:root {
  --pink: #E91E8C;
  --pink-light: #FDF0F7;
  --pink-glow: #F472B6;
  --cyan: #00B4D8;
  --cyan-dark: #0096B7;
  --cyan-light: #E8F8FC;
  --coral: #FF6B6B;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Quicksand', sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--pink);
}
.nav-logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  font-size: 0.88rem;
}
.nav-cta:hover { background: #D01A7E; transform: translateY(-1px); }

.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--gray-800); margin: 6px 0;
  border-radius: 2px; transition: 0.3s;
}

/* ===== SHARED PAGE STYLES ===== */
.page-top { padding-top: 100px; }
section { padding: 80px 0; }

.section-label {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  padding: 5px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 14px;
  color: var(--gray-900);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  font-weight: 500;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}
.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233,30,140,0.25);
}
.btn-primary:hover {
  background: #D01A7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(233,30,140,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--cyan-dark);
  border: 2px solid var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== QUOTE BANNER ===== */
.quote-banner {
  background: var(--pink-light);
  padding: 48px 0;
  text-align: center;
}
.quote-banner blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gray-800);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.quote-banner cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-weight: 700;
  color: var(--pink);
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 28px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; }
.footer-col h4 {
  font-family: 'Quicksand', sans-serif;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink-glow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-motto {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pink-glow);
  font-size: 0.9rem;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    gap: 16px;
  }
  .footer-inner { flex-direction: column; }
}
