:root {
  --green-50: #EAF3DE;
  --green-100: #C0DD97;
  --green-200: #97C459;
  --green-400: #6b7f55;
  --green-600: #6b7f55;
  --green-800: #27500A;
  --green-900: #173404;
  --sage: #6b7f55;
  --sage-light: #d6dccc;
  --cream-light: #faf9f5;
  --cream: #faf9f5;
  --warm-white: #f6ede9;
  --text-dark: #1e2a14;
  --text-mid: #3d5228;
  --text-body: #2c3a20;
  --text-muted: #6a7f55;
  --border: #c8dba8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--cream-light);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.2;
}

a { color: var(--green-600); text-decoration: none; }
a:hover { color: var(--green-400); }

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

/* ── UTILITY ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section--alt { background: var(--warm-white); }

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.btn--primary {
  background: var(--green-600);
  color: #fff;
}
.btn--primary:hover { background: var(--green-800); color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--green-600);
  border: 1.5px solid var(--green-400);
}
.btn--outline:hover { background: var(--green-50); color: var(--green-800); }

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 0.75rem;
  display: block;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: 0.02em;
  text-align: center;
}

.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -3px;
}

.nav-logo img {
  height: 100px;
  width: auto;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .nav-logo img {
    height: 60px;
    margin-bottom: 6px;
  }
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--green-600); }
.nav-links .nav-cta a {
  color: var(--green-600);
  border-bottom: 1.5px solid var(--green-400);
  padding-bottom: 1px;
}

/* mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.2rem;
  }
  .nav-links.open { display: flex; }
}

/* ── HERO ── */
.hero {
  padding: 6rem 0 5rem;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero h1 em {
  font-style: italic;
  color: var(--green-600);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 460px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* hero image placeholder */
.hero-image {
  background: var(--green-50);
  border-radius: 4px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-placeholder {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
}

.hero-image-placeholder p {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  font-style: italic;
  color: var(--green-400);
}

@media (max-width: 768px) {
  .hero { padding-top: 2.5rem; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { aspect-ratio: 16/9; }
}

/* ── TRUST BAR ── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  background: var(--warm-white);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green-600);
}

.trust-item span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── ABOUT / WHO WE ARE ── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  background: var(--sage-light);
  aspect-ratio: 3/4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
}

.about-text blockquote {
  border-left: 3px solid var(--green-200);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
}

.about-team-mini {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: start;
  margin: 1.5rem 0;
}

.about-team-mini-img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  display: block;
}

/* ── ABOUT DOULAS ── */
.about-doulas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid var(--border);
}

.about-doula {
  display: flex;
  gap: 1.5rem;
  align-items: start;
}

.about-doula-img {
  width: 220px;
  flex-shrink: 0;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  display: block;
}

.about-doula-text h3 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}

.doula-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-400);
  margin-bottom: 0.85rem;
  display: block;
}

.about-doula-text p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.about-doula-text p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .about-doulas { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .about-doula { flex-direction: column; }
  .about-doula-img { width: 100%; aspect-ratio: 1/1; }
}

/* ── VALUES / ALIGNMENT ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}

.value-card {
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  transition: border-color 0.2s;
}

.value-card:hover { border-color: var(--sage); }

.value-icon {
  width: 40px;
  height: 40px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: 0 6px 28px rgba(60, 90, 30, 0.1); }

.service-card-image {
  height: 180px;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  border-bottom: 1px solid var(--border);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body { padding: 1.5rem; }

.service-card-body h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.service-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.service-card-body a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600);
  border-bottom: 1px solid var(--green-200);
  padding-bottom: 1px;
}

/* ── CONTRACTOR CALLOUT ── */
.contractor-callout {
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: var(--sage-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

/* ── SOCIAL FEED ── */
.social-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.social-embed-placeholder {
  background: var(--warm-white);
  border: 1.5px dashed var(--border);
  border-radius: 4px;
  padding: 3.5rem 2rem;
  text-align: center;
  color: var(--text-muted);
}

.social-embed-placeholder strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--green-600);
  margin-bottom: 0.5rem;
}

.social-embed-placeholder p {
  font-size: 0.85rem;
  line-height: 1.65;
}

.social-embed-placeholder code {
  display: block;
  margin-top: 1rem;
  font-size: 0.78rem;
  background: var(--green-50);
  color: var(--text-mid);
  border-radius: 2px;
  padding: 0.5rem 1rem;
  font-family: monospace;
  border: 1px solid var(--green-100);
  text-align: left;
}

/* ── CONNECT / CTA ── */
.connect-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.connect-text h2 { margin-bottom: 1rem; }
.connect-text p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.8; }

.connect-email-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--green-50);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.connect-email-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.connect-email-box a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--green-800);
  font-style: italic;
}

.connect-form {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2.5rem;
}

.connect-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-body);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
}

.form-group textarea { resize: vertical; min-height: 110px; }

@media (max-width: 768px) {
  .connect-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── FOOTER ── */
footer {
  background: var(--green-900);
  color: var(--green-50);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--green-50);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--green-100);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-100);
  border-bottom: 1px solid var(--green-800);
  padding-bottom: 1px;
  transition: color 0.15s;
}

.footer-social a:hover { color: var(--green-50); }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-200);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--green-100);
  transition: color 0.15s;
}

.footer-col ul a:hover { color: var(--green-50); }

.footer-bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--green-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--green-200);
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .about-team-mini {
    grid-template-columns: 1fr;
  }
  .about-team-mini-img {
    width: 100%;
    height: 240px;
  }
  .contractor-callout {
    grid-template-columns: 1fr;
  }
  .contractor-callout-btn .btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}

/* ── SUB-PAGE HERO ── */
.sub-hero {
  padding: 5rem 0 4rem;
}

.sub-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sub-hero-image {
  aspect-ratio: 1/1;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sage-light);
}

.sub-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .sub-hero { padding-top: 2.5rem; }
  .sub-hero-inner { grid-template-columns: 1fr; }
}

/* ── PROSE SECTION ── */
.prose-section {
  max-width: 780px;
}

.prose-lead {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 2.5rem;
}

/* ── WHAT IF CALLOUT ── */
.callout-what-if {
  background: var(--green-50);
  border-left: 4px solid var(--green-400);
  border-radius: 0 4px 4px 0;
  padding: 2rem 2.5rem;
}

.callout-what-if h2 {
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.callout-what-if p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.callout-answer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem !important;
  font-style: italic;
  color: var(--green-600) !important;
  margin-bottom: 0 !important;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-top: 3rem;
}

.process-step {
  padding: 2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.process-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.process-step p a {
  color: var(--green-600);
  font-size: 0.85rem;
}

.process-quote {
  border-left: 3px solid var(--green-200);
  padding-left: 1.5rem;
  margin: 3rem 0 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.5;
  max-width: 600px;
}

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 3rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-card cite {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── FEATURE LIST ── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.feature-item {
  padding: 1.75rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  border-top: 3px solid var(--green-200);
}

.feature-item h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── FEATURED TESTIMONIAL ── */
.testimonial-featured {
  max-width: 780px;
  padding: 2.5rem 3rem;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-top: 2rem;
}

.testimonial-featured p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-featured cite {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .testimonial-featured { padding: 1.75rem; }
}

/* ── SUB-PAGE CTA ── */
.sub-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.sub-cta-btn .btn { white-space: nowrap; }

@media (max-width: 768px) {
  .sub-cta { grid-template-columns: 1fr; }
}

/* ── PLACEHOLDER CALLOUT ── */
.placeholder-note {
  display: inline-block;
  background: #fffbea;
  border: 1px dashed #d4a017;
  border-radius: 2px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  color: #7a5c00;
  font-style: italic;
  margin-top: 0.5rem;
}
