/* ================================================
   Surrendered Birth — Shared Stylesheet
   Inspired by Steadfast Birth Services aesthetic
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Pinyon+Script&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

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

/* ── Base ── */
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #2c2c2c;
  background: #ffffff;
  line-height: 1.8;
  font-size: 15px;
}

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

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

/* ── Navigation ── */
header {
  padding: 28px 48px 0;
  text-align: center;
  border-bottom: 1px solid #e8e5e0;
}

.site-logo {
  font-family: 'Pinyon Script', cursive;
  font-size: 3.6rem;
  line-height: 1.1;
  color: #2c2c2c;
  display: inline-block;
  margin-bottom: 18px;
}

nav {
  padding-bottom: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 44px;
  padding: 14px 0;
}

.nav-links li a {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #2c2c2c;
  padding-bottom: 3px;
  transition: border-bottom 0.15s;
}

.nav-links li a:hover,
.nav-links li a.active {
  border-bottom: 1.5px solid #2c2c2c;
}

/* ── Page title ── */
.page-title {
  text-align: center;
  padding: 52px 20px 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #e8e5e0;
  margin-bottom: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 42px;
  background: #2c2c2c;
  color: #ffffff;
  border-radius: 32px;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #444444;
}

.btn-outline {
  background: transparent;
  color: #2c2c2c;
  border: 1.5px solid #2c2c2c;
}

.btn-outline:hover {
  background: #2c2c2c;
  color: #fff;
}

/* ── Main content wrapper ── */
.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Section spacing ── */
.section {
  padding: 60px 0;
}

/* ── Footer ── */
footer {
  background: #f7f5f2;
  margin-top: 80px;
  padding: 56px 48px 32px;
  border-top: 1px solid #e8e5e0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.footer-col p,
.footer-col a {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.7;
}

.footer-col a:hover {
  color: #2c2c2c;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 6px;
}

.footer-socials a {
  font-size: 1.1rem;
  color: #555;
  transition: color 0.15s;
}

.footer-socials a:hover {
  color: #2c2c2c;
}

.footer-quote {
  text-align: center;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid #e0dcd6;
  font-style: italic;
  font-size: 0.78rem;
  color: #888;
  line-height: 1.7;
}

/* ── Hero (Home page) ── */
.hero {
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
  background: #faf8f5;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-script {
  font-family: 'Pinyon Script', cursive;
  font-size: 5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #2c2c2c;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #555;
  margin-bottom: 36px;
  text-transform: uppercase;
}

/* ── About layout ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
  padding: 60px 0 80px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.85;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #ede9e3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.certifications {
  margin-top: 28px;
}

.certifications h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.certifications ul {
  list-style: disc;
  padding-left: 20px;
}

.certifications ul li {
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.about-cta {
  text-align: center;
  padding: 40px 0 60px;
}

/* ── Services ── */
.services-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  padding-top: 50px;
  font-size: 0.95rem;
  color: #555;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 80px;
}

.service-card {
  border: 1px solid #e8e5e0;
  padding: 36px 32px;
  text-align: center;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.service-card .price {
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 18px;
}

.service-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.75;
}

.service-card ul {
  text-align: left;
  list-style: disc;
  padding-left: 20px;
  margin-top: 14px;
}

.service-card ul li {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 6px;
  line-height: 1.5;
}

.services-note {
  text-align: center;
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  padding-bottom: 60px;
}

/* ── Reviews ── */
.reviews-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  padding-top: 50px;
  font-size: 0.95rem;
  color: #555;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 80px;
}

.review-card {
  background: #faf8f5;
  padding: 32px 28px;
  border-left: 3px solid #d4c8bc;
}

.review-card .quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.0rem;
  font-style: italic;
  line-height: 1.75;
  color: #444;
  margin-bottom: 18px;
}

.review-card .reviewer {
  font-size: 0.82rem;
  color: #888;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Contact section (in footer or standalone) ── */
.contact-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* ── Dividers ── */
.divider {
  border: none;
  border-top: 1px solid #e8e5e0;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-logo { font-size: 2.5rem; }
  .nav-links { gap: 24px; }
  .hero-script { font-size: 3rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo,
  .photo-placeholder {
    max-width: 340px;
    margin: 0 auto;
  }

  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  header { padding: 20px 24px 0; }
  .container { padding: 0 24px; }
  footer { padding: 48px 24px 28px; }
}
