/* =============================================
   ABUNDANT LIFE DOULA — Shared Stylesheet
   ============================================= */

/* --- CSS VARIABLES --- */
:root {
  --cream:       #f6f1e5;
  --gold:        #e0d7ae;
  --rose:        #c18181;
  --rose-light:  #d7adad;
  --sage:        #97abaf;
  --sage-light:  #d0dadc;
  --brown:       #413535;
  --brown-mid:   #5a4545;
  --off-white:   #e1ded6;
  --font-serif:  'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans:   'Jost', sans-serif;
  --nav-h:       70px;
  --max-w:       1100px;
  --transition:  0.4s ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.75; }
ul { list-style: none; }

/* --- UTILITIES --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 400;
  color: var(--brown);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--brown-mid);
  margin-bottom: 48px;
}

.body-text {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.8;
  color: var(--brown);
  margin-bottom: 28px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--rose);
  border: none;
  padding: 13px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition);
}
.btn:hover {
  background: var(--brown-mid);
  opacity: 1;
  box-shadow: 0 4px 20px rgba(193,129,129,0.3);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  background: transparent;
  border: 1.5px solid var(--rose);
  padding: 12px 26px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline:hover {
  background: var(--rose);
  color: var(--cream);
  opacity: 1;
}

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--cream);
  border-bottom: 1px solid var(--off-white);
  transition: box-shadow 0.3s;
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(65,53,53,0.1);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover { opacity: 1; }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--brown);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(65,53,53,0.55) 0%, rgba(65,53,53,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--cream);
  padding: 0 24px;
  max-width: 700px;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--cream);
}

.hero-body {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(246,241,229,0.9);
  margin-bottom: 36px;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero .hero-bg { transform: scale(1); }
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
}
.page-hero-content .label { color: var(--gold); margin-bottom: 10px; }

/* =============================================
   SCRIPTURE BANNER
   ============================================= */
.scripture-banner {
  background: var(--brown);
  padding: 60px 28px;
  text-align: center;
}
.scripture-banner blockquote {
  max-width: 600px;
  margin: 0 auto;
}
.scripture-banner p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--gold);
  line-height: 1.6;
}
.scripture-banner cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-light);
  font-style: normal;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section { padding: 100px 28px; }
.intro-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}
.intro-text { padding: 20px 0; }
.intro-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 20px;
  line-height: 1.1;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-it-works {
  background: var(--off-white);
  padding: 100px 28px;
  text-align: center;
}
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
  flex-wrap: wrap;
}
.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  padding: 40px 28px;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--rose-light);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.step p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.7;
}
.step-divider {
  width: 60px;
  height: 1px;
  background: var(--rose-light);
  flex-shrink: 0;
}
.steps-cta { margin-top: 8px; }

/* =============================================
   PHOTO STRIP
   ============================================= */
.photo-strip {
  display: flex;
  height: 320px;
}
.strip-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  transition: flex var(--transition);
  cursor: pointer;
}
.strip-img:hover { flex: 2.5; }

/* =============================================
   SERVICES PREVIEW
   ============================================= */
.services-preview { padding: 100px 28px; }
.service-imgs img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}
.service-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 20px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--brown);
  padding: 100px 28px;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 14px;
  line-height: 1.1;
}
.contact-text .hero-sub { color: var(--gold); margin-bottom: 0; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  background: rgba(246,241,229,0.08);
  border: 1px solid rgba(224,215,174,0.3);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 15px;
  padding: 14px 18px;
  border-radius: 3px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(246,241,229,0.45);
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .btn { align-self: flex-start; }
.form-thanks {
  display: none;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-top: 4px;
}
.form-thanks.show { display: block; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--brown);
  border-top: 1px solid rgba(224,215,174,0.15);
  padding: 60px 28px 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo img {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 17px;
  font-style: italic;
  color: var(--gold);
}
.footer-heading {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
footer ul li, footer p:not(.footer-heading):not(.footer-brand):not(.footer-copy) {
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(246,241,229,0.7);
  margin-bottom: 8px;
  line-height: 1.6;
}
footer ul li a, footer .footer-contact a {
  color: rgba(246,241,229,0.7);
  transition: color var(--transition);
}
footer ul li a:hover, footer .footer-contact a:hover {
  color: var(--gold);
  opacity: 1;
}
.footer-copy {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(246,241,229,0.35);
  border-top: 1px solid rgba(224,215,174,0.1);
  padding-top: 24px;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-bio { padding: 100px 28px; }
.about-bio .two-col { align-items: start; }
.about-bio-img img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: right 20%;
  border-radius: 2px;
}
.about-bio-text p { margin-bottom: 20px; }
.about-bio-text .label { margin-bottom: 8px; }

.pull-quote {
  background: var(--sage-light);
  padding: 80px 28px;
  text-align: center;
}
.pull-quote blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  color: var(--brown);
  max-width: 700px;
  margin: 0 auto 16px;
  line-height: 1.5;
}
.pull-quote cite {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-mid);
  font-style: normal;
}

.beliefs { padding: 100px 28px; background: var(--cream); }
.beliefs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}
.belief-card {
  padding: 40px;
  background: var(--off-white);
  border-left: 3px solid var(--rose);
  border-radius: 0 2px 2px 0;
}
.belief-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 14px;
}
.belief-card p {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--brown-mid);
  line-height: 1.8;
}

.here-to {
  background: var(--brown);
  padding: 100px 28px;
}
.here-to .section-title { color: var(--gold); text-align: center; }
.here-to-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin: 52px 0;
}
.here-card {
  background: rgba(246,241,229,0.05);
  padding: 44px 28px;
  text-align: center;
  transition: background var(--transition);
  border: 1px solid rgba(224,215,174,0.1);
}
.here-card:hover { background: rgba(193,129,129,0.15); }
.here-card h3 {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.here-card p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: rgba(246,241,229,0.7);
  line-height: 1.7;
}
.here-to-main-text {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}
.here-to-main-text p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: rgba(246,241,229,0.8);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-cta {
  padding: 100px 28px;
  background: var(--sage-light);
  text-align: center;
}
.about-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 54px);
  font-style: italic;
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 32px;
}

/* =============================================
   SERVICES / FAQ PAGE
   ============================================= */
.services-intro {
  background: var(--cream);
  padding: 80px 28px 60px;
  text-align: center;
}
.services-intro p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  color: var(--brown-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.services-intro .label { margin-bottom: 16px; }

.pricing {
  padding: 80px 28px 100px;
  background: var(--cream);
}
.pricing-header {
  text-align: center;
  margin-bottom: 20px;
}
.pricing-note {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--rose);
  font-size: 15px;
  margin-bottom: 60px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto 60px;
}
.pricing-card {
  background: var(--off-white);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: var(--brown);
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(65,53,53,0.2);
}
.card-header {
  padding: 36px 28px 28px;
  border-bottom: 1px solid rgba(65,53,53,0.1);
  text-align: center;
}
.pricing-card.featured .card-header {
  border-bottom-color: rgba(224,215,174,0.15);
}
.card-name {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.pricing-card.featured .card-name { color: var(--gold); }
.card-price {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--brown);
  line-height: 1;
}
.pricing-card.featured .card-price { color: var(--cream); }
.card-price span {
  font-size: 20px;
  vertical-align: super;
}
.card-body { padding: 28px; flex: 1; }
.card-body ul { list-style: none; }
.card-body ul li {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--brown-mid);
  padding: 9px 0;
  border-bottom: 1px solid rgba(65,53,53,0.07);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.card-body ul li::before {
  content: '—';
  color: var(--rose);
  flex-shrink: 0;
  margin-top: 1px;
}
.pricing-card.featured .card-body ul li { color: rgba(246,241,229,0.8); border-bottom-color: rgba(224,215,174,0.1); }
.pricing-card.featured .card-body ul li::before { color: var(--gold); }
.card-footer { padding: 0 28px 36px; text-align: center; }

/* Postpartum card */
.postpartum-section {
  padding: 0 28px 100px;
  background: var(--cream);
}
.postpartum-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--sage);
  border-radius: 3px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.postpartum-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 16px;
}
.postpartum-card .card-price { color: var(--cream); font-size: 42px; margin-bottom: 8px; }
.postpartum-card .per-unit {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(246,241,229,0.7);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.postpartum-card .card-min {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(246,241,229,0.6);
  font-style: italic;
}
.postpartum-card ul { list-style: none; }
.postpartum-card ul li {
  font-family: var(--font-serif);
  font-size: 15px;
  color: rgba(246,241,229,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(246,241,229,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}
.postpartum-card ul li::before { content: '✦'; color: var(--cream); font-size: 8px; flex-shrink: 0; }

/* Whats Included */
.whats-included {
  padding: 100px 28px;
  background: var(--off-white);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.included-item {
  text-align: center;
  padding: 36px 20px;
}
.included-item .icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.included-item h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}
.included-item p {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--brown-mid);
  line-height: 1.7;
}

.testimonial-strip {
  background: var(--rose);
  padding: 60px 28px;
  text-align: center;
}
.testimonial-strip blockquote p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  color: var(--cream);
}

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .two-col, .two-col.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 40px;
  }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; }
  .pricing-card.featured { transform: none; }
  .postpartum-card { grid-template-columns: 1fr; }
  .here-to-grid { grid-template-columns: 1fr 1fr; }
  .beliefs-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  :root { --nav-h: 58px; }
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 2px solid var(--off-white);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 28px;
    border-bottom: 1px solid var(--off-white);
  }
  .nav-links a::after { display: none; }
  .photo-strip { height: 200px; }
  .here-to-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .intro-bio-img img { height: 360px; }
  .steps { flex-direction: column; }
  .step-divider { width: 1px; height: 40px; }
  .included-grid { grid-template-columns: 1fr; }
}
