/* ================================================================
   OMANTA-INSPIRED LAYER
   ----------------------------------------------------------------
   What was taken from omanta.com, and why:

   1. RESTRAINT. Omanta's power is what it leaves out — no filled
      buttons shouting, no gradients, no card shadows. Hairlines,
      whitespace, and one accent doing all the work.
   2. EYEBROW -> STATEMENT HEADLINE. A small muted label above a
      large sentence that ends in a period. Declarative, calm.
   3. NUMBERED PROCESS (01..05). Their signature block. Maps
      exactly onto a maternity pathway.
   4. CREDENTIAL ROW. A quiet line of proof under the fold rather
      than badges and seals.
   5. CONVERGENCE. Two parties shown meeting in the middle.

   Divine Birth already runs plum + teal, and plum is burgundy's
   cousin — so this is a structural and typographic borrowing,
   not a palette swap.
================================================================ */

/* ── CREDENTIALS STRIP ───────────────────────────────────────── */
.creds {
  padding-block: clamp(30px, 3.4vw, 46px);
  background: var(--white);
  border-top: 1px solid var(--line-warm);
  border-bottom: 1px solid var(--line-warm);
}
.creds-lede {
  font-size: var(--t-sm);
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 60ch;
}
.creds-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-warm);   /* hairline grid, Omanta-style */
  border: 1px solid var(--line-warm);
  margin: 0; padding: 0;
}
.cred {
  background: var(--white);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cred-k {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.cred-v {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--plum);
  line-height: 1.35;
}

/* ── JOURNEY (01..05) ────────────────────────────────────────── */
.journey {
  padding-block: clamp(70px, 7.5vw, 118px);
  background: var(--cream);
}
.journey-head {
  max-width: 44ch;
  margin-bottom: clamp(40px, 4.5vw, 68px);
}
.journey-head .section-sub { margin-top: 16px; color: var(--ink-mid); }

.journey-steps {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.journey-step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: start;
  padding: clamp(26px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.journey-step:hover { background: rgba(62,31,51,0.018); }

/* The numeral is the hero of this block — big, light, quiet */
.journey-num {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 400;
  line-height: 0.9;
  color: var(--teal);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.journey-body h3 {
  font-size: var(--t-xl);
  font-weight: 500;
  color: var(--plum);
  letter-spacing: -0.018em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.journey-body p {
  font-size: var(--t-base);
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 62ch;
  margin: 0;
}
.journey-foot {
  margin-top: 28px;
  font-size: var(--t-sm);
  color: var(--ink-soft);
}
.journey-foot a {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  margin-left: 6px;
}
.journey-foot a:hover { border-bottom-color: var(--teal); }

/* ── CONVERGENCE ─────────────────────────────────────────────── */
.converge {
  padding-block: clamp(66px, 7vw, 104px);
  background: var(--plum);
  color: rgba(255,255,255,0.78);
}
.converge .section-title { color: #fff; max-width: 20ch; }
.converge-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 3vw, 52px);
  align-items: center;
  margin-top: clamp(36px, 4vw, 58px);
}
.converge-side {
  border-top: 1px solid rgba(255,255,255,0.22);
  padding-top: 22px;
}
.converge-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 12px;
}
.converge-side h3 {
  font-size: var(--t-lg);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.converge-side p {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.68);
  max-width: 40ch;
  margin: 0;
}

/* The meeting point: two nodes converging on a larger one */
.converge-mid {
  display: flex;
  align-items: center;
  gap: 0;
}
.converge-node {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  flex-shrink: 0;
}
.converge-node-main {
  width: 13px; height: 13px;
  background: var(--teal-bright);
  box-shadow: 0 0 0 5px rgba(63,191,174,0.18);
}
.converge-line {
  width: clamp(22px, 3.5vw, 54px);
  height: 1px;
  background: rgba(255,255,255,0.28);
  flex-shrink: 0;
}
.converge-foot {
  margin-top: clamp(30px, 3.4vw, 46px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.62);
  max-width: 56ch;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .creds-row { grid-template-columns: repeat(2, 1fr); }
  .converge-grid { grid-template-columns: 1fr; gap: 28px; }
  /* On narrow screens the connector turns vertical */
  .converge-mid {
    flex-direction: row;
    justify-content: center;
    padding: 4px 0;
  }
}
@media (max-width: 560px) {
  .creds-row { grid-template-columns: 1fr; }
  .journey-step { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .journey-num { font-size: 26px; }
  .journey-head { max-width: 100%; }
}

/* ================================================================
   COMPRESSION PASS
   The journey came in at 1,538px and pushed booking down by 1,800px.
   Omanta's process block is tighter than that — the numeral and the
   sentence do the work, not the padding. Target: ~1,050px.
================================================================ */
.journey { padding-block: clamp(56px, 5.5vw, 84px); }
.journey-head { margin-bottom: clamp(28px, 3vw, 44px); }
.journey-head .section-sub { margin-top: 12px; font-size: var(--t-sm); }
.journey-step { padding: clamp(18px, 2vw, 26px) 0; }
.journey-body h3 { font-size: var(--t-lg); margin-bottom: 5px; }
.journey-body p { font-size: var(--t-sm); line-height: 1.62; }
.journey-num { font-size: clamp(24px, 2.4vw, 34px); }
.journey-step { grid-template-columns: 72px 1fr; }
.journey-foot { margin-top: 20px; }

/* Credentials strip: it is a proof line, not a section */
.creds { padding-block: clamp(24px, 2.6vw, 34px); }
.creds-lede { margin-bottom: 16px; }
.cred { padding: 14px 16px; }

/* Converge: tighten to match */
.converge { padding-block: clamp(54px, 5.5vw, 84px); }
