@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;1,9..144,500&family=Work+Sans:wght@300;400;500;600&family=Sacramento&display=swap');

:root {
  --blush: #f6dde1;
  --blush-deep: #e39ba9;
  --rose: #D81E78;
  --rose-deep: #a8185f;
  --steel: #7EA8BE;
  --gold: #d9a441;
  --cream: #fbf6ee;
  --charcoal: #2b2523;
  --ink: #443a37;
  --white: #ffffff;
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  color: var(--charcoal);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Nav */
header.site-header {
  position: sticky;
  top: 0;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(43,37,35,0.08);
  z-index: 50;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--charcoal);
  letter-spacing: 0.2px;
}
.brand span { color: var(--rose); }
.brand-b-wrap { position: relative; display: inline-block; }
.brand-butterfly {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 50%;
  top: -20px;
  transform: translateX(-58%) rotate(18deg);
  pointer-events: none;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
nav.main-nav a {
  color: var(--charcoal);
  font-weight: 500;
  font-size: 0.95rem;
}
nav.main-nav a.active { color: var(--rose); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--charcoal); }

@media (max-width: 720px) {
  nav.main-nav { display: none; width: 100%; }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; gap: 4px; padding: 14px 0; }
  .nav-toggle { display: block; }
  .nav-inner { flex-wrap: wrap; }
}

/* Hero */
.hero {
  padding: 90px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}
.hero-butterfly { width: 150px; height: auto; margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); max-width: 780px; margin: 0 auto 0.3em; }
.hero .hero-tagline {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--rose);
  letter-spacing: 0.3px;
  margin: 0 0 0.6em;
}
.hero .lede { max-width: 620px; margin: 0 auto 30px; font-size: 1.15rem; color: var(--ink); }

.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-deep); text-decoration: none; }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); text-decoration: none; }

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Section */
section { padding: 70px 0; }
.section-tight { padding: 50px 0; }
.section-alt { background: var(--white); }
.section-charcoal { background: var(--charcoal); color: #e9e0dc; }
.section-charcoal h2, .section-charcoal h3 { color: var(--white); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 10px;
  display: block;
}

.center { text-align: center; }
.narrow { max-width: 680px; margin: 0 auto; }

/* Pillars / cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 800px) { .grid-3 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(43,37,35,0.06);
  border-top: 4px solid var(--rose);
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { margin: 0; color: var(--ink); font-size: 0.97rem; }
.card .card-title-lg {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.card-hope { border-top-color: var(--rose); }
.card-empathy { border-top-color: var(--steel); }
.card-advocacy { border-top-color: var(--charcoal); }

/* Story callout */
.why-heading {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 30px;
}
.story-callout {
  background: var(--white);
  border-left: 4px solid var(--rose);
  border-radius: var(--radius);
  padding: 34px 36px;
  margin-top: 10px;
}
.story-callout p { font-size: 1.05rem; }
.signature {
  font-family: 'Sacramento', cursive;
  font-style: normal;
  font-size: 2.2rem;
  margin-top: 16px;
  color: var(--rose);
}

/* Shop */
.badge {
  display: inline-block;
  background: var(--steel);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
@media (max-width: 800px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43,37,35,0.06);
}
.product-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1rem;
}
.product-card .p-body { padding: 18px 20px 22px; }
.product-card h3 { font-size: 1.02rem; margin-bottom: 4px; }
.product-card .price { color: var(--rose); font-weight: 600; font-size: 0.95rem; }
.coming-soon-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rose);
  letter-spacing: 0.5px;
}

/* Forms */
.form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(43,37,35,0.06);
  max-width: 560px;
  margin: 30px auto 0;
  border-top: 4px solid var(--steel);
}
.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); }
.form-row input, .form-row textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid #e3d8d2;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--steel);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.82rem; color: #8a7d78; margin-top: 14px; }

/* Advocacy list */
.tip-list { margin-top: 30px; display: grid; gap: 18px; }
.tip {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(43,37,35,0.05);
}
.tip .num {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--steel);
  min-width: 40px;
}
.tip h3 { font-size: 1.05rem; margin-bottom: 6px; }
.tip p { margin: 0; font-size: 0.95rem; }

/* Footer */
footer {
  background: var(--charcoal);
  color: #cabdb7;
  padding: 50px 0 30px;
  font-size: 0.9rem;
}
footer .foot-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
footer h4 { color: var(--white); font-family: 'Work Sans', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
footer a { color: #cabdb7; }
footer a:hover { color: var(--steel); }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.8rem; color: #9a8d88; }

/* Page hero (inner pages) */
.page-hero {
  padding: 60px 0 50px;
  text-align: center;
  background: linear-gradient(180deg, var(--blush) 0%, var(--cream) 100%);
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
.page-hero p { max-width: 600px; margin: 0 auto; color: var(--ink); font-size: 1.05rem; }
