/* ============================================
   FK-ShPPSh — Premium Design System
   Exact visual match to provided art direction
   Soft pink / purple / white · Emotional · Trust
   ============================================ */

:root {
  /* Core palette — sampled & refined from original */
  --pink-accent: #E23C7A;
  --pink-soft: #F8D0E0;
  --pink-bg: #FDF5F8;
  --pink-card: #FFF9FB;
  --purple-deep: #51286A;
  --purple-mid: #7B3FA0;
  --purple-light: #C9A0D8;
  --text-dark: #2D1B3D;
  --text-muted: #6B5A75;
  --white: #FFFFFF;
  --off-white: #FEFCFF;

  /* Semantic */
  --success: #4CAF7A;
  --shadow-soft: 0 8px 32px rgba(81, 40, 106, 0.08);
  --shadow-card: 0 4px 24px rgba(226, 60, 122, 0.08);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== TYPOGRAPHY ========== */
.hero-title,
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-accent);
  margin-bottom: 12px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--pink-accent);
  color: white;
  box-shadow: 0 4px 16px rgba(226, 60, 122, 0.35);
}

.btn-primary:hover {
  background: #C8326A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 60, 122, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--purple-deep);
  border: 1.5px solid rgba(81, 40, 106, 0.25);
}

.btn-secondary:hover {
  background: rgba(81, 40, 106, 0.05);
  border-color: var(--purple-deep);
}

.btn-white {
  background: white;
  color: var(--pink-accent);
}

.btn-white:hover {
  background: var(--pink-bg);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
}

.btn-donate {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--pink-accent);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 14px rgba(226, 60, 122, 0.3);
}

.btn-donate:hover {
  background: #C8326A;
  transform: translateY(-1px);
}

/* ========== HEADER / NAV ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 245, 248, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 60, 122, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(81, 40, 106, 0.06);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-icon {
  width: 52px;
  height: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--purple-deep);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  position: relative;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--purple-deep);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--pink-accent);
  border-radius: 2px;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--purple-deep);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== HERO — EXACT MATCH ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  overflow: hidden;
  background: linear-gradient(160deg, #FDF5F8 0%, #F8E8F0 40%, #F5DCE8 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(255, 200, 220, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(232, 180, 210, 0.25) 0%, transparent 50%);
}

.hero-flowers {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 180, 200, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 60%, rgba(240, 160, 180, 0.12) 0%, transparent 35%);
  opacity: 0.9;
}

.hero-content {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 90px);
}

.hero-left {
  z-index: 2;
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-accent);
  margin-bottom: 20px;
}

.hero-eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero-title {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  color: var(--purple-deep);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Stats card — exact layout */
.stats-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 22px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.stat-item {
  text-align: center;
  padding: 4px 6px;
}

.stat-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 8px;
  color: var(--pink-accent);
  opacity: 0.85;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--pink-accent);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.68rem;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 500;
}

/* Hero right — image + quote */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 620px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 32px 32px 120px 32px;
  object-fit: cover;
  box-shadow: 
    0 20px 60px rgba(81, 40, 106, 0.15),
    0 0 0 1px rgba(255,255,255,0.3);
  transform: rotate(1.5deg);
}

.hero-quote {
  position: absolute;
  top: 8%;
  right: -5%;
  width: 180px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.quote-heart {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.quote-text {
  position: relative;
  font-family: 'Great Vibes', cursive;
  font-size: 1.55rem;
  color: var(--pink-accent);
  text-align: center;
  line-height: 1.35;
  transform: rotate(-8deg);
  text-shadow: 0 2px 8px rgba(255,255,255,0.8);
}

/* Wave */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ========== PILLARS (5 cards) ========== */
.pillars {
  background: var(--pink-bg);
  padding: 20px 0 80px;
  margin-top: -1px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.pillar-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 60, 122, 0.06);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(226, 60, 122, 0.12);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #FCE4EC, #F8BBD0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-accent);
  margin-bottom: 16px;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
}

.pillar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pillar-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.pillar-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(226, 60, 122, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-accent);
  transition: var(--transition);
}

.pillar-link:hover {
  background: var(--pink-accent);
  color: white;
  border-color: var(--pink-accent);
}

.pillar-link svg {
  width: 16px;
  height: 16px;
}

/* ========== MISSION ========== */
.mission {
  padding: 100px 0;
  background: white;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--purple-deep);
  margin-bottom: 24px;
}

.mission-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.75;
}

.mission-visual {
  display: flex;
  justify-content: center;
}

.mission-card {
  background: linear-gradient(145deg, var(--pink-bg), #F5E0EB);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.mission-stat {
  margin-bottom: 32px;
}

.mission-stat:last-child {
  margin-bottom: 0;
}

.big-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--pink-accent);
  line-height: 1;
}

.big-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ========== PROGRAMS ========== */
.programs {
  padding: 100px 0;
  background: var(--pink-bg);
}

.section-header.centered {
  text-align: center;
  margin-bottom: 56px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(81, 40, 106, 0.1);
}

.program-image {
  height: 180px;
  width: 100%;
}

.program-content {
  padding: 28px;
}

.program-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--purple-deep);
  margin-bottom: 12px;
  font-weight: 600;
}

.program-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.text-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink-accent);
}

.text-link:hover {
  color: var(--purple-deep);
}

/* ========== CTA DONATE ========== */
.cta-donate {
  padding: 100px 0;
  background: linear-gradient(135deg, #E23C7A 0%, #9B3A7A 50%, #51286A 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== NEWSLETTER ========== */
.newsletter {
  padding: 80px 0;
  background: white;
}

.newsletter-box {
  background: var(--pink-bg);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: var(--shadow-soft);
}

.newsletter-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--purple-deep);
  margin-bottom: 8px;
}

.newsletter-text p {
  color: var(--text-muted);
  font-size: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.newsletter-form input {
  padding: 14px 22px;
  border: 1.5px solid rgba(81, 40, 106, 0.15);
  border-radius: 50px;
  font-size: 0.95rem;
  min-width: 260px;
  background: white;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--pink-accent);
  box-shadow: 0 0 0 3px rgba(226, 60, 122, 0.15);
}

/* ========== FOOTER ========== */
.site-footer {
  background: var(--purple-deep);
  color: rgba(255,255,255,0.85);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-main {
  color: white;
}

.footer-brand .logo-sub {
  color: rgba(255,255,255,0.6);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: white;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--pink-soft);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.social-links a:hover {
  background: var(--pink-accent);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a:hover {
  opacity: 1;
  color: white;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-left {
    max-width: 100%;
  }
  .hero-ctas {
    justify-content: center;
  }
  .stats-card {
    max-width: 520px;
    margin: 0 auto;
  }
  .hero-right {
    justify-content: center;
    order: -1;
  }
  .hero-image-wrap {
    max-width: 480px;
  }
  .hero-quote {
    right: 0;
    top: 5%;
  }
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .newsletter-box {
    flex-direction: column;
    text-align: center;
    padding: 36px;
  }
}

@media (max-width: 700px) {
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .nav-container {
    padding: 12px 20px;
  }
}

@media (max-width: 480px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========== MICRO-INTERACTIONS & MOTION ========== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-left > * {
  animation: fadeUp 0.8s ease-out both;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.25s; }
.hero-subtitle { animation-delay: 0.4s; }
.hero-ctas { animation-delay: 0.55s; }
.stats-card { animation-delay: 0.7s; }

.hero-image {
  animation: fadeUp 1s ease-out 0.3s both;
}

.hero-quote {
  animation: fadeUp 1s ease-out 0.6s both;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
