/* =====================================================================
   Limbgenixx — Premium typography layer
   Loaded AFTER style.css / responsive.css so it overrides fonts only.
   Changes fonts + spacing (premium healthcare look) WITHOUT altering the
   existing layout, sizes, colours, or functionality. Falls back gracefully
   to system fonts if Google Fonts is blocked.
   ===================================================================== */

:root{
  --lx-body:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --lx-head:'Space Grotesk','Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
}

/* Body / base text -> Inter */
body{
  font-family:var(--lx-body);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

/* Headings & display -> Space Grotesk (tighter, premium tracking) */
h1,h2,h3,h4,h5,h6,
.sec-title h1,.sec-title h2,.sec-title h3,
.blog-title,.lx-card h3{
  font-family:var(--lx-head);
  letter-spacing:-.015em;
}

/* Buttons / CTAs -> display font for a modern feel */
.thm-btn,.read-more,.whatsapp-cta,.call-cta,button,.btn,#wa-btn{
  font-family:var(--lx-head);
  letter-spacing:.01em;
}

/* Gentle, safe readability polish (no layout-breaking size jumps) */
p{line-height:1.75;}
.article-body p,.text-box p,.our-info p{line-height:1.8;}
