/* Premium-but-warm, calm maternal design language */
:root{
  --bg: #FBF6F1;
  --surface: #FFFFFF;
  --text: #2B2420;
  /* Slightly deeper than before for body copy on warm backgrounds (readability) */
  --muted: #554A45;
  --border: rgba(43,36,32,.12);
  --accent: #2F6F6B;    /* calming teal */
  --accent-soft: rgba(47,111,107,.12);
  --accent2: #C9787A;   /* soft blush */
  --shadow: 0 14px 40px rgba(43,36,32,.10);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --focus: 0 0 0 4px rgba(47,111,107,.25);
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  background: radial-gradient(1200px 600px at 20% 0%, rgba(47,111,107,.07), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(201,120,122,.07), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
}

a{
  color: inherit;
  text-decoration: none;
}

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

.skip-link{
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--surface);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transform: translateY(-150%);
  transition: transform .15s ease;
  z-index: 1000;
}
.skip-link:focus{
  transform: translateY(0);
  outline: none;
  box-shadow: var(--focus);
}

.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only{
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 650;
  letter-spacing: .01em;
  cursor: pointer;
  user-select: none;
}

.btn:focus{
  outline: none;
  box-shadow: var(--focus);
}

.btn-primary{
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover{
  filter: brightness(1.03);
}

.btn-secondary{
  background: rgba(255,255,255,.72);
  border-color: var(--border);
}
.btn-secondary:hover{
  background: rgba(255,255,255,.92);
}

.btn-link{
  padding: 0;
  border: none;
  background: transparent;
  font-weight: 650;
  color: var(--accent);
  border-radius: 6px;
}
.btn-link:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.66);
  font-weight: 600;
  color: var(--muted);
}

header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,246,241,.72);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43,36,32,.08);
}

.site-header{
  padding: 14px 0;
}

.header-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 300px;
}

/* Larger logo for prominence; object-fit keeps artwork uncropped */
.brand-mark{
  width: 76px;
  height: 76px;
  min-width: 76px;
  min-height: 76px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
  /* Reduce subpixel blur when scaled in some browsers */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.brand-name{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
.brand-tag{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 14px;
}
.nav a{
  padding: 10px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover{
  background: rgba(255,255,255,.65);
  color: var(--text);
}
.nav a[aria-current="page"]{
  background: var(--accent-soft);
  color: var(--accent);
}

.header-cta{
  display: flex;
  align-items: center;
  gap: 10px;
}

main{
  padding-bottom: 48px;
}

.page-hero{
  padding: 40px 0 32px;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: center;
}

/* Hero titles: serif display font (matches pages that use .container.hero or any .page-hero h1) */
.hero h1,
.page-hero h1{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.2vw, 56px);
  margin: 10px 0 14px;
  letter-spacing: .01em;
}

.lede{
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.62;
  margin: 0 0 22px;
  max-width: 54ch;
  font-weight: 500;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions--secondary{
  margin-top: 10px;
  gap: 10px 16px;
}

.hero-path-note{
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--muted);
  max-width: 54ch;
}

/* Primary pathway CTA: slightly larger tap target without changing brand color */
.btn-cta-emphasis{
  padding: 14px 22px;
  font-size: 1.05rem;
}

/* Numbered “how to get started” / pricing process steps */
.process-steps{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.process-step{
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(43,36,32,.10);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(43,36,32,.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
}

.process-step__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.process-step h3{
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  color: var(--text);
}

.process-step p{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 400;
  flex: 1 1 auto;
}

.process-step .process-step__actions{
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.get-started-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 8px;
}

.pricing-fee-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.pricing-fee-card{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-fee-card .pricing-fee-card__price{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  line-height: 1.1;
}

.pricing-fee-card h3{
  margin: 0;
  font-size: 18px;
}

.pricing-fee-card p{
  margin: 0;
  line-height: 1.62;
  font-weight: 400;
  flex: 1 1 auto;
}

.pricing-section-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.reassurance-block{
  border-radius: var(--radius);
  border: 1px solid rgba(43,36,32,.10);
  background: rgba(255,255,255,.72);
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(43,36,32,.06);
  max-width: 72ch;
  margin: 0 auto;
}

.reassurance-block p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
}

.reassurance-block p:last-child{
  margin-bottom: 0;
}

.hero-media{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(43,36,32,.10);
  background: rgba(255,255,255,.65);
  box-shadow: 0 10px 30px rgba(43,36,32,.08);
}
.hero-media:before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251,246,241,.0), rgba(251,246,241,.18));
  pointer-events: none;
}
.hero-media img,
.hero-media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media video{
  display: block;
  min-height: 260px;
  aspect-ratio: 4 / 3;
}
.hero-media .media-label{
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(43,36,32,.10);
  color: var(--muted);
  font-weight: 650;
}

section{
  padding: 34px 0;
}

.section-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.section-title{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0;
}
.section-subtitle{
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}

/* FAQ page question styling */
.faq-q{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
  line-height: 1.38;
}
.container .section-title + .faq-q{
  margin-top: 14px;
}
.faq-a + .faq-q{
  margin-top: 26px;
}
.faq-a{
  margin-bottom: 0;
}

.cards-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.card{
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(43,36,32,.10);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(43,36,32,.06);
}

.card h3{
  margin: 10px 0 10px;
  font-size: 18px;
  line-height: 1.3;
}
.card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
}

.callout{
  border-radius: var(--radius);
  border: 1px solid rgba(43,36,32,.10);
  background: rgba(255,255,255,.70);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43,36,32,.06);
}
.callout-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.callout-content{
  padding: 22px 20px;
}
.callout-content p{
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.65;
  font-weight: 400;
}
.callout-media{
  position: relative;
  min-height: 220px;
}
.callout-media img,
.callout-media video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
}

.provider-grid{
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: start;
}
.provider-media{
  border-radius: var(--radius);
  border: 1px solid rgba(43,36,32,.10);
  overflow: hidden;
  background: rgba(255,255,255,.72);
  padding: 16px;
  min-height: 280px;
  display: grid;
  place-items: center;
}
.provider-media--photo{
  padding: 12px;
  min-height: 0;
  place-items: stretch;
}
.provider-photo{
  width: 100%;
  max-height: min(520px, 70vh);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(43,36,32,.12);
}
video.provider-photo{
  height: auto;
  background: rgba(43,36,32,.06);
}
.provider-photo-placeholder{
  width: 100%;
  height: 100%;
  min-height: 240px;
  border-radius: 16px;
  border: 1px dashed rgba(47,111,107,.35);
  background: linear-gradient(180deg, rgba(47,111,107,.10), rgba(201,120,122,.07));
  display: grid;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
}
.provider-photo-placeholder strong{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 20px;
  display: block;
  margin-bottom: 8px;
}
.provider-copy h2,
.provider-copy h3{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 36px;
  margin: 6px 0 10px;
}
.provider-copy .muted{
  color: var(--muted);
  margin: 0 0 14px;
  line-height: 1.65;
  font-weight: 400;
}
.provider-cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

/* Contact */
#contact-form,
#consultation-form-section,
#consultation-request-form{
  scroll-margin-top: 96px;
}
.contact-steps-section{
  padding: 8px 0 6px;
}
.label-required{
  font-weight: 500;
  color: var(--muted);
  font-size: 12px;
}
select{
  width: 100%;
  border: 1px solid rgba(43,36,32,.16);
  background: rgba(255,255,255,.92);
  border-radius: 12px;
  padding: 12px 12px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
}
select:focus{
  outline: none;
  box-shadow: var(--focus);
  border-color: rgba(47,111,107,.45);
}
.contact-context-panel{
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(47,111,107,.28);
  background: rgba(47,111,107,.08);
  margin-bottom: 4px;
}
.contact-context-panel--soft{
  border-color: rgba(201,120,122,.35);
  background: rgba(201,120,122,.10);
}
.contact-context-panel__text{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
}
.urgency-note{
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px dashed rgba(201,120,122,.45);
  background: rgba(255,255,255,.75);
  font-size: 14px;
  margin-bottom: 4px;
}
.urgency-note strong{
  color: var(--text);
}
.form-error-banner{
  grid-column: 1 / -1;
  margin: 0 0 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(201,120,122,.14);
  border: 1px solid rgba(201,120,122,.4);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}
.consultation-success{
  padding: 8px 4px 20px;
  outline: none;
}
.consultation-success__title{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--accent);
}
.consultation-success__text{
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
}
.contact-backup-email{
  max-width: 62ch;
}

#pricing-options{
  scroll-margin-top: 96px;
}
.form-card{
  padding: 18px;
}
form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label{
  display: block;
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
  margin: 0 0 6px;
}
input, textarea{
  width: 100%;
  border: 1px solid rgba(43,36,32,.16);
  background: rgba(255,255,255,.92);
  border-radius: 12px;
  padding: 12px 12px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
}
textarea{
  resize: vertical;
  min-height: 130px;
  grid-column: 1 / -1;
}
input:focus, textarea:focus{
  outline: none;
  box-shadow: var(--focus);
  border-color: rgba(47,111,107,.45);
}
.form-actions{
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.form-status{
  color: var(--muted);
  font-weight: 650;
}

/* Footer */
footer{
  border-top: 1px solid rgba(43,36,32,.10);
  padding: 22px 0 34px;
  background: rgba(251,246,241,.65);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}
.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand img{
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.footer-copy p{
  margin: 10px 0 0;
  color: var(--muted);
}
.footer-links{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
}
.footer-links a{
  color: var(--muted);
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 12px;
}
.footer-links a:hover{
  background: rgba(255,255,255,.75);
  color: var(--text);
}

/* Responsive polish */
@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .cards-grid{
    grid-template-columns: 1fr;
  }
  .callout-grid{
    grid-template-columns: 1fr;
  }
  .provider-grid{
    grid-template-columns: 1fr;
  }
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .footer-links{
    justify-content: flex-start;
  }
  .brand{
    min-width: unset;
  }
}

@media (max-width: 720px){
  form{
    grid-template-columns: 1fr;
  }
  textarea{
    grid-column: auto;
  }
  .callout-media{
    min-height: 200px;
  }
  .provider-cta-row{
    margin-top: 12px;
  }
}

/* Blog / long-form articles */
.blog-index-intro{
  max-width: 62ch;
  margin: 0 auto 28px;
}
.blog-card-list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.blog-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-card h2{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.blog-card h2 a{
  color: var(--text);
}
.blog-card h2 a:hover{
  color: var(--accent);
}
.blog-card-meta{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin: 0;
}
.article-shell{
  padding: 28px 0 56px;
}
.article-header{
  max-width: 68ch;
  margin: 0 auto 28px;
  padding: 0 20px;
}
.article-header .chip a{
  color: var(--muted);
  font-weight: 650;
}
.article-header .chip a:hover{
  color: var(--accent);
}
.article-header h1{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  margin: 12px 0 10px;
}
.article-meta{
  margin: 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.article-body{
  max-width: 68ch;
  margin: 0 auto;
  padding: 0 20px;
}
.article-body h2{
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 700;
  margin: 36px 0 14px;
  line-height: 1.22;
}
.article-body h3{
  font-size: 17px;
  font-weight: 700;
  margin: 26px 0 10px;
  color: var(--text);
  line-height: 1.35;
}
.article-body p,
.article-body li{
  color: var(--muted);
  font-weight: 400;
}
.article-body p{
  margin: 0 0 1.1em;
  line-height: 1.7;
}
.article-body ul{
  margin: 0 0 18px 1.15em;
  padding: 0;
}
.article-body ol{
  margin: 0 0 18px 1.15em;
  padding: 0;
}
.article-body li{
  margin-bottom: 10px;
  line-height: 1.65;
}
.article-body ul.article-checklist{
  list-style: none;
  margin: 0 0 20px;
  padding: 16px 18px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.article-body ul.article-checklist li{
  position: relative;
  padding-left: 1.65em;
  margin-bottom: 10px;
}
.article-body ul.article-checklist li:last-child{
  margin-bottom: 0;
}
.article-body ul.article-checklist li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(47,111,107,.45);
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
}
.article-body strong{
  color: var(--text);
}
.article-disclaimer{
  font-size: 14px;
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(47,111,107,.2);
  color: var(--text);
  margin-bottom: 24px;
}
.article-cta{
  margin: 36px 0 8px;
  padding: 20px 20px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.article-cta p{
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.65;
}
.article-related{
  max-width: 68ch;
  margin: 32px auto 0;
  padding: 0 20px;
}
.article-related h2{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}
.article-related ul{
  margin: 0;
  padding: 0;
  list-style: none;
}
.article-related li{
  margin-bottom: 10px;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 520px){
  .nav{
    display: none;
  }
  .brand-mark{
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
  }
  .footer-brand img{
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
  }
}

