/* Import modern + cozy fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Nunito:wght@400;600;700&display=swap');

:root {
  --sage: #9DAF8C;
  --sage-deep: #7E9271;
  --peach: #F2B8A0;
  --peach-soft: #FDE7DD;
  --brown: #6B4B3A;
  --cream: #FAF5EF;
  --text-dark: #3F2D26;
  --text-soft: #7a5a3a;
  --shadow-soft: 0 14px 35px rgba(0, 0, 0, 0.06);
  --radius-card: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

/* Layout */

.container {
  width: 90%;
  max-width: 1120px;
  margin: 0 auto;
}

/* Header */

.site-header {
  background: #fff;
  border-bottom: 1px solid #e3d8cf;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-img {
  height: 52px;
  width: auto;
}

.logo-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 0;
  color: var(--brown);
}

.logo-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
  padding: 0.2rem 0.3rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 0;
  height: 2px;
  background: var(--sage);
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--sage);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(157, 175, 140, 0.35);
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3.75rem;
  background: radial-gradient(circle at top left, #fef4eb 0, var(--cream) 40%, #fdf1e9 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(0);
  opacity: 0.35;
}

.hero::before {
  width: 260px;
  height: 260px;
  background: var(--peach-soft);
  top: -40px;
  right: -60px;
}

.hero::after {
  width: 220px;
  height: 220px;
  background: #e1ebd9;
  bottom: -60px;
  left: -40px;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 2.25rem;
  align-items: center;
  z-index: 1;
}

.hero-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 0.8rem;
  color: var(--brown);
}

.hero-text p {
  font-size: 1.02rem;
  max-width: 34rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.6rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  background: rgba(157, 175, 140, 0.12);
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage-deep);
}

.hero-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.7rem 1.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.95rem;
}

/* Buttons */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brown), #8a5a3e);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  margin-top: 1.1rem;
  box-shadow: 0 14px 30px rgba(107, 75, 58, 0.45);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(107, 75, 58, 0.5);
}

/* Sections */

.section {
  padding: 3.25rem 0;
}

.section.light {
  background: #fff;
}

.section.soft {
  background: #fdf6f1;
}

.section h2 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
  color: var(--brown);
}

/* Grids & Cards */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.card ul {
  padding-left: 1.1rem;
}

.step {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 1.5rem 1.3rem 1.4rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.03);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

/* About */

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.2fr);
  gap: 2.25rem;
  align-items: center;
}

.about-text ul {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
}

.about-badge {
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 1.7rem 1.4rem;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.07);
}

.badge-img {
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 0.75rem;
}

/* Pricing */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.price {
  font-size: 1.9rem;
  color: var(--brown);
  margin: 0.4rem 0 0.5rem;
  font-family: "Playfair Display", serif;
}

/* Contact */

.contact {
  background: linear-gradient(135deg, #fdf1e9, var(--cream));
}

.contact-inner {
  text-align: center;
}

.contact-card {
  background: #fff;
  border-radius: 24px;
  margin: 1.7rem auto 0;
  padding: 1.9rem 1.6rem;
  max-width: 560px;
  box-shadow: var(--shadow-soft);
}

.contact-note {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--text-soft);
}

/* FAQ */

#faq h3 {
  font-size: 1.06rem;
  margin-bottom: 0.3rem;
}

#faq p {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

/* Meet Your Lactation Consultant (if added) */

.meet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: center;
}

.meet-card {
  background: #fff;
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.meet-tag {
  font-size: 0.85rem;
  color: var(--sage-deep);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Footer */

.site-footer {
  background: #fff;
  border-top: 1px solid #e3d8cf;
  padding: 1.2rem 0 1.6rem;
}

.footer-inner {
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.footer-small {
  margin-top: 0.3rem;
  opacity: 0.85;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-inner,
  .grid-3,
  .pricing-grid,
  .about-inner,
  .meet-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 0.35rem 0.9rem;
  }
}

@media (max-width: 600px) {
  .hero-text h2 {
    font-size: 1.7rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .card,
  .step,
  .about-badge,
  .contact-card,
  .meet-card {
    padding: 1.4rem 1.2rem;
  }
}
/* Blog page */

.blog-hero {
  background: #fff;
  padding-top: 2.8rem;
}

.blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.8fr);
  gap: 2rem;
  align-items: center;
}

.blog-hero-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--brown);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.blog-hero-subtitle {
  font-size: 1rem;
  color: var(--text-soft);
}

.meet-author {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  background: #fff;
  border-radius: 22px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.author-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.meet-author h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  color: var(--brown);
}

/* Blog grid */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 0.75rem;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem 1.3rem 1.3rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-deep);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--brown);
}

.blog-excerpt {
  font-size: 0.93rem;
  margin: 0 0 0.9rem;
}

.blog-read-more {
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--brown);
}

.blog-read-more:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .blog-hero-inner {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .meet-author {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .author-photo {
    margin: 0 auto;
  }
}
/* Individual blog posts */

.post-hero {
  background: #fff;
  padding-top: 2.8rem;
}

.post-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.post-hero-inner h1 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--brown);
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.post-meta {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1.6rem;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1rem;
}

.post-body h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  color: var(--brown);
}

.post-body ul {
  padding-left: 1.2rem;
}

.post-body p {
  margin-bottom: 1rem;
}

.post-cta {
  max-width: 720px;
  margin: 2.4rem auto 0;
  background: #fff;
  border-radius: 20px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
}

.post-cta p {
  margin-bottom: 0.9rem;
  font-size: 0.98rem;
}

.post-back-link {
  max-width: 720px;
  margin: 1.6rem auto 0;
  font-size: 0.9rem;
}

.post-back-link a {
  text-decoration: none;
  color: var(--brown);
}

.post-back-link a:hover {
  text-decoration: underline;
}