@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

/* =========================================================================
   EsbeltoMD — Página de inicio v2
   Public facade only. Scoped under .lp.
   ========================================================================= */

:root {
  --lp-navy-deep: #0D182A;
  --lp-navy-mid: #1F2E44;
  --lp-slate: #475569;
  --lp-cream: #F6F2EA;
  --lp-cream-light: #EBE4DC;
  --lp-gold: #D4AF6A;
  --lp-gold-hover: #E2BF7C;
  --lp-white: #FFFFFF;
  --lp-shell: 1180px;
  --lp-serif: "Playfair Display", Georgia, serif;
  --lp-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lp-shadow: 0 26px 70px rgba(13, 24, 42, 0.13);
  --lp-shadow-soft: 0 18px 48px rgba(13, 24, 42, 0.08);
}

.lp,
.lp *,
.lp *::before,
.lp *::after {
  box-sizing: border-box;
}

.lp {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 4%, rgba(212, 175, 106, 0.08), transparent 25rem),
    var(--lp-cream);
  color: var(--lp-navy-deep);
  font-family: var(--lp-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.lp p,
.lp h1,
.lp h2,
.lp h3,
.lp blockquote {
  margin: 0;
}

.lp-shell {
  width: min(100% - 2rem, var(--lp-shell));
  margin-inline: auto;
}

.lp-section {
  padding: 4rem 0;
}

.lp-kicker {
  color: var(--lp-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.23em;
  line-height: 1;
  text-transform: uppercase;
}

.lp h1,
.lp h2,
.lp h3 {
  font-family: var(--lp-serif);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--lp-navy-deep);
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--lp-sans);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 150ms ease, background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp a.lp-btn--navy,
.lp .lp-btn--navy {
  background: var(--lp-navy-deep);
  color: var(--lp-white) !important;
  border-color: var(--lp-navy-deep);
}

.lp a.lp-btn--navy:hover,
.lp .lp-btn--navy:hover {
  background: var(--lp-navy-mid);
  color: var(--lp-white) !important;
}

.lp a.lp-btn--gold,
.lp .lp-btn--gold {
  background: var(--lp-gold);
  color: var(--lp-navy-deep) !important;
  border-color: var(--lp-gold);
}

.lp a.lp-btn--gold:hover,
.lp .lp-btn--gold:hover {
  background: var(--lp-gold-hover);
  color: var(--lp-navy-deep) !important;
}

.lp-btn--small {
  min-height: 2.75rem;
  padding: 0 1.15rem;
  font-size: 0.86rem;
}

.lp-btn--large {
  min-height: 3.35rem;
  padding: 0 1.55rem;
  font-size: 0.95rem;
}

.lp-link {
  color: var(--lp-gold) !important;
  font-weight: 700;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--lp-navy-deep);
}

.lp-logo__mark {
  width: 2.15rem;
  height: 2.15rem;
  color: var(--lp-navy-deep);
  flex: 0 0 auto;
}

.lp-logo__word {
  font-family: var(--lp-serif);
  font-size: 1.38rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.lp-logo__word span {
  font-size: 0.82em;
}

/* Navigation */

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 242, 234, 0.94);
  border-bottom: 1px solid rgba(31, 46, 68, 0.08);
  backdrop-filter: blur(12px);
}

.lp-nav__inner {
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.lp-nav__links {
  display: none;
  gap: 2.25rem;
  align-items: center;
  color: var(--lp-slate);
  font-size: 0.9rem;
  font-weight: 600;
}

.lp-nav__links a:hover {
  color: var(--lp-navy-deep);
}

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lp-nav__spanish {
  display: none;
  color: var(--lp-gold) !important;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Hero */

.lp-hero {
  padding: 4.2rem 0 3rem;
  overflow: hidden;
}

.lp-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.lp-hero__copy {
  max-width: 46rem;
}

.lp-hero h1 {
  max-width: 13ch;
  margin-top: 1rem;
  font-size: clamp(2.55rem, 8vw, 4.15rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.lp-hero__lead {
  max-width: 41rem;
  margin-top: 1.45rem;
  color: var(--lp-navy-deep);
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
  line-height: 1.67;
}

.lp-hero__lead strong {
  font-weight: 700;
}

.lp-hero__support {
  max-width: 34rem;
  margin-top: 0.75rem;
  color: var(--lp-slate);
  font-size: 1rem;
  line-height: 1.65;
}

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem 1.45rem;
  margin-top: 2rem;
}

.lp-hero__phone {
  margin-top: 1rem;
  color: var(--lp-slate);
  font-size: 0.95rem;
  line-height: 1.65;
}

.lp-hero__phone a {
  color: var(--lp-navy-deep);
  font-weight: 600;
  white-space: nowrap;
}

.lp-hero-art {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.lp-hero-art__orbits {
  position: absolute;
  width: min(112vw, 34rem);
  height: min(112vw, 34rem);
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lp-hero-art__note {
  position: absolute;
  left: 0.25rem;
  bottom: 1rem;
  width: min(15.8rem, 70vw);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(212, 175, 106, 0.36);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  box-shadow: var(--lp-shadow-soft);
  backdrop-filter: blur(8px);
}

.lp-hero-art__note span {
  display: block;
  color: var(--lp-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.lp-hero-art__note strong {
  display: block;
  margin-top: 0.4rem;
  color: var(--lp-navy-deep);
  font-family: var(--lp-serif);
  font-size: 1.14rem;
  font-weight: 500;
  line-height: 1.22;
}

.lp-rx-card {
  position: relative;
  z-index: 2;
  width: min(21rem, 82vw);
  padding: 1.55rem;
  background:
    linear-gradient(90deg, var(--lp-gold) 0 0.32rem, transparent 0.32rem),
    var(--lp-white);
  border: 1px solid rgba(212, 175, 106, 0.38);
  border-radius: 0.85rem;
  box-shadow: 0 34px 75px rgba(13, 24, 42, 0.22);
  transform: rotate(1.4deg);
}

.lp-rx-card__top,
.lp-rx-card__brand,
.lp-rx-card__body,
.lp-rx-card__grid {
  display: flex;
}

.lp-rx-card__top {
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(31, 46, 68, 0.1);
}

.lp-rx-card__brand {
  align-items: center;
  gap: 0.5rem;
  font-family: var(--lp-serif);
  font-size: 0.92rem;
}

.lp-rx-card__mark {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--lp-navy-deep);
}

.lp-rx-card__meta,
.lp-rx-card__label {
  color: var(--lp-slate);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.lp-rx-card__body {
  gap: 1.1rem;
  padding: 1.3rem 0 1rem;
}

.lp-rx-card__rx {
  font-family: var(--lp-serif);
  font-size: 4rem;
  line-height: 0.95;
  color: var(--lp-navy-deep);
}

.lp-rx-card__drug {
  margin-top: 0.1rem;
  font-family: var(--lp-serif);
  font-size: 1.45rem;
  line-height: 1.1;
}

.lp-rx-card__sub {
  color: var(--lp-slate);
  font-size: 0.92rem;
  font-style: italic;
}

.lp-rx-card__section {
  padding-top: 0.75rem;
  padding-bottom: 0.85rem;
  color: var(--lp-navy-deep);
  font-size: 0.87rem;
  line-height: 1.45;
  border-top: 1px solid rgba(31, 46, 68, 0.08);
}

.lp-rx-card__grid {
  gap: 1rem;
  margin-top: 1.15rem;
}

.lp-rx-card__grid > div {
  flex: 1;
}

.lp-rx-card__line,
.lp-rx-card__signature span {
  display: block;
  height: 1px;
  margin-top: 0.45rem;
  background: rgba(13, 24, 42, 0.28);
}

.lp-rx-card__signature {
  margin-top: 1.2rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(31, 46, 68, 0.08);
}

.lp-rx-card__signature p {
  margin-top: 0.4rem;
  color: var(--lp-slate);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

/* Trust bar */

.lp-trust {
  border-top: 1px solid rgba(31, 46, 68, 0.09);
  border-bottom: 1px solid rgba(31, 46, 68, 0.09);
  background: rgba(255, 255, 255, 0.18);
}

.lp-trust__grid {
  display: grid;
  grid-template-columns: 1fr;
  padding: 1.25rem 0;
}

.lp-trust__item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.lp-icon-ring {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--lp-gold);
  border: 1px solid rgba(212, 175, 106, 0.75);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
}

.lp-icon-ring--large {
  width: 3.15rem;
  height: 3.15rem;
  color: var(--lp-navy-deep);
}

.lp-trust h2 {
  font-family: var(--lp-sans);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
}

.lp-trust p {
  margin-top: 0.22rem;
  color: var(--lp-slate);
  font-size: 0.82rem;
}

/* Pricing */

.lp-pricing {
  padding-top: 3.5rem;
}

.lp-pricing__card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 175, 106, 0.13), transparent 16rem),
    var(--lp-white);
  border: 1px solid rgba(31, 46, 68, 0.1);
  border-radius: 1.45rem;
  box-shadow: var(--lp-shadow-soft);
}

.lp-pricing__seal {
  display: none;
}

.lp-pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.lp-pricing__price span {
  font-family: var(--lp-serif);
  font-size: clamp(4.2rem, 10vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
}

.lp-pricing__price em {
  color: var(--lp-slate);
  font-style: normal;
  font-size: 1.15rem;
  font-weight: 600;
}

.lp-pricing__tagline {
  margin-top: 0.35rem;
  color: var(--lp-gold);
  font-family: var(--lp-serif);
  font-size: 1.18rem;
  font-style: italic;
}

.lp-checklist {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 1.45rem 0 0;
  list-style: none;
}

.lp-checklist li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--lp-navy-deep);
  font-size: 0.95rem;
  font-weight: 600;
}

.lp-checklist svg {
  color: var(--lp-gold);
}

.lp-pricing__side h2 {
  max-width: 16rem;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  line-height: 1.12;
}

.lp-pricing__side p {
  margin: 0.85rem 0 1.45rem;
  color: var(--lp-slate);
  line-height: 1.65;
}

.lp-fineprint {
  margin-top: 1rem;
  text-align: center;
  color: var(--lp-slate);
  font-size: 0.86rem;
}

/* How */

.lp-section-head {
  max-width: 46rem;
}

.lp-section-head--center {
  text-align: center;
  margin-inline: auto;
}

.lp-section-head h2 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

/* Navy band — per spec, How It Works is the page's contrast section. */
.lp-how {
  background: var(--lp-navy-deep);
}

.lp-how__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.lp-step {
  position: relative;
  padding: 1.55rem;
  background: var(--lp-white);
  border: 1px solid rgba(31, 46, 68, 0.09);
  border-radius: 1.2rem;
  box-shadow: 0 16px 44px rgba(13, 24, 42, 0.045);
}

.lp-step__number {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--lp-gold);
  color: var(--lp-navy-deep);
  font-family: var(--lp-serif);
  font-weight: 600;
}

.lp-step h3 {
  margin-top: 1rem;
  font-size: 1.35rem;
}

.lp-step p {
  margin-top: 0.55rem;
  color: var(--lp-slate);
  line-height: 1.62;
}

/* Evidence */

.lp-evidence__card {
  display: grid;
  gap: 2.25rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--lp-white);
  border: 1px solid rgba(31, 46, 68, 0.1);
  border-radius: 1.45rem;
  box-shadow: var(--lp-shadow-soft);
}

.lp-evidence__copy h2 {
  max-width: 34rem;
  margin-top: 0.85rem;
  font-size: clamp(2rem, 4vw, 3.05rem);
  line-height: 1.08;
}

.lp-evidence__copy > p:not(.lp-kicker):not(.lp-disclaimer) {
  max-width: 36rem;
  margin-top: 1rem;
  color: var(--lp-slate);
  font-size: 1.03rem;
  line-height: 1.68;
}

.lp-stats {
  display: grid;
  gap: 1.35rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(31, 46, 68, 0.1);
}

.lp-stats strong {
  display: block;
  color: var(--lp-gold);
  font-family: var(--lp-serif);
  font-size: clamp(2.55rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1;
}

.lp-stats span {
  display: block;
  margin-top: 0.45rem;
  color: var(--lp-navy-deep);
  font-weight: 800;
}

.lp-stats p,
.lp-stats small {
  display: block;
  color: var(--lp-slate);
  font-size: 0.82rem;
  line-height: 1.5;
}

.lp-stats p {
  margin-top: 0.25rem;
}

.lp-stats small {
  margin-top: 0.35rem;
  font-style: italic;
}

.lp-disclaimer {
  margin-top: 1.35rem;
  max-width: 34rem;
  color: var(--lp-slate);
  font-size: 0.74rem;
  font-style: italic;
  line-height: 1.55;
}

.lp-chart {
  align-self: center;
  min-width: 0;
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(246, 242, 234, 0.54), rgba(246, 242, 234, 0.2));
  border: 1px solid rgba(31, 46, 68, 0.08);
  border-radius: 1rem;
}

.lp-chart__title {
  color: var(--lp-slate);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lp-chart__svg {
  width: 100%;
  height: auto;
  margin-top: 0.9rem;
  overflow: visible;
}

.lp-chart text {
  fill: var(--lp-slate);
  font-size: 11px;
}

.lp-chart__line {
  fill: none;
  stroke-linecap: round;
}

.lp-chart__line--gold {
  stroke: var(--lp-gold);
  stroke-width: 2.2;
}

.lp-chart__line--mid {
  stroke: var(--lp-navy-mid);
  stroke-width: 2.6;
  opacity: 0.86;
}

.lp-chart__line--deep {
  stroke: var(--lp-navy-deep);
  stroke-width: 3.4;
}

.lp-chart__dose {
  font-weight: 800;
}

.lp-chart__dose--strong {
  fill: var(--lp-navy-deep) !important;
}

.lp-chart__axis,
.lp-chart__citation {
  color: var(--lp-slate);
  font-size: 0.72rem;
  font-style: italic;
}

/* Physician */

.lp-physician {
  padding-top: 2.5rem;
}

.lp-physician__card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-top: 1px solid rgba(31, 46, 68, 0.1);
  border-bottom: 1px solid rgba(31, 46, 68, 0.1);
}

.lp-physician__mark {
  display: none;
}

.lp-physician__mark svg {
  width: 8rem;
  height: 8rem;
  color: var(--lp-navy-deep);
  opacity: 0.75;
}

.lp-physician h2 {
  margin-top: 0.8rem;
  font-size: clamp(1.8rem, 4vw, 2.85rem);
  line-height: 1.08;
}

.lp-physician p:not(.lp-kicker) {
  max-width: 41rem;
  margin-top: 0.8rem;
  color: var(--lp-slate);
  line-height: 1.68;
}

.lp-physician blockquote {
  color: var(--lp-navy-deep);
  font-family: var(--lp-serif);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-style: italic;
  line-height: 1.35;
}

/* Final CTA */

.lp-final__card {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 8vw, 5.5rem) 1.5rem;
  text-align: center;
  background: var(--lp-navy-deep);
  border-radius: 1.45rem;
  box-shadow: var(--lp-shadow);
}

.lp-final__card h2 {
  position: relative;
  z-index: 1;
  color: var(--lp-white);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.08;
}

.lp-final__card p {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  color: rgba(246, 242, 234, 0.78);
  font-size: 1.1rem;
}

.lp-final__card .lp-btn {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.lp-final__card small {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 38rem;
  margin: 1.6rem auto 0;
  color: rgba(246, 242, 234, 0.58);
  font-size: 0.78rem;
}

.lp-final__mark {
  position: absolute;
  width: 16rem;
  height: 16rem;
  color: var(--lp-gold);
  opacity: 0.2;
}

.lp-final__mark--left {
  left: -6rem;
  top: -4rem;
}

.lp-final__mark--right {
  right: -5rem;
  bottom: -5rem;
}

/* Footer */

.lp-footer {
  padding: 3.5rem 0;
  border-top: 1px solid rgba(31, 46, 68, 0.1);
}

.lp-footer__grid {
  display: grid;
  gap: 2rem;
}

.lp-footer__grid > div {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.lp-footer__label {
  color: var(--lp-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lp-footer a {
  color: var(--lp-slate);
  font-size: 0.9rem;
}

.lp-footer a:hover {
  color: var(--lp-navy-deep);
}

.lp-footer__phone {
  color: var(--lp-slate);
  font-size: 0.9rem;
  line-height: 1.55;
}

.lp-footer__phone a {
  white-space: nowrap;
}

.lp-footer__spanish {
  padding: 1.1rem;
  background: var(--lp-white);
  border: 1px solid rgba(31, 46, 68, 0.1);
  border-radius: 0.95rem;
}

.lp-footer__spanish p:not(.lp-footer__label) {
  color: var(--lp-slate);
  font-size: 0.9rem;
  line-height: 1.55;
}

.lp-footer__spanish a {
  color: var(--lp-gold) !important;
  font-weight: 700;
}

.lp-footer__legal {
  display: grid;
  gap: 0.7rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 46, 68, 0.1);
}

.lp-footer__legal p {
  color: var(--lp-slate);
  font-size: 0.75rem;
  line-height: 1.62;
}

/* Responsive */

@media (min-width: 720px) {
  .lp-shell {
    width: min(100% - 4rem, var(--lp-shell));
  }

  .lp-section {
    padding: 5rem 0;
  }

  .lp-nav__spanish {
    display: inline;
  }

  .lp-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 1.75rem;
  }

  .lp-how__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lp-step {
    padding: 1.75rem;
  }

  .lp-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* 4-col footer (Logo + 3 link columns). EsbeltoMD has no
     cross-link card because the site is Spanish-only. */
  .lp-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .lp-nav__links {
    display: flex;
  }

  .lp-hero {
    padding: 5.25rem 0 3.4rem;
  }

  .lp-hero__grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(23rem, 0.94fr);
    gap: 3.8rem;
  }

  .lp-hero h1 {
    max-width: 12.5ch;
  }

  .lp-hero-art {
    min-height: 560px;
  }

  .lp-rx-card {
    width: 22rem;
  }

  .lp-trust__grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 1.65rem 0;
  }

  .lp-trust__item {
    padding: 0.5rem 1.25rem;
    border-left: 1px solid rgba(31, 46, 68, 0.09);
  }

  .lp-trust__item:first-child {
    border-left: none;
    padding-left: 0;
  }

  .lp-pricing__card {
    grid-template-columns: 0.78fr 1.45fr 1fr;
    gap: 2.6rem;
  }

  .lp-pricing__seal {
    display: grid;
    place-items: center;
    position: relative;
    width: 9.5rem;
    height: 9.5rem;
  }

  .lp-pricing__seal-mark {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    color: var(--lp-navy-deep);
  }

  .lp-pricing__seal span {
    position: relative;
    z-index: 1;
    font-family: var(--lp-serif);
    font-size: 4.1rem;
    line-height: 1;
  }

  .lp-evidence__card {
    grid-template-columns: 0.94fr 1.06fr;
    gap: 3rem;
    align-items: center;
  }

  .lp-physician__card {
    grid-template-columns: 0.85fr 1.45fr 0.95fr;
    gap: 2.3rem;
  }

  .lp-physician__mark {
    display: block;
  }
}

/* Dr. María Olivo placeholder block. Photo is a styled placeholder
   with the initials and "Foto pendiente" caption until the real
   portrait is ready. Bio is a Spanish "Biografía pendiente" italic. */

.lp-physician__photo {
  display: grid;
  place-items: center;
  gap: 0.65rem;
  text-align: center;
}

.lp-physician__photo-frame {
  width: 9.5rem;
  height: 9.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 106, 0.18), transparent 60%),
    var(--lp-cream-light);
  border: 1px solid rgba(212, 175, 106, 0.4);
  box-shadow: var(--lp-shadow-soft);
}

.lp-physician__photo-initials {
  font-family: var(--lp-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--lp-navy-deep);
  letter-spacing: -0.01em;
}

.lp-physician__photo-caption {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lp-slate);
}

.lp-physician__role {
  margin-top: 0.4rem;
  color: var(--lp-gold);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.lp-physician__bio {
  margin-top: 0.9rem;
  color: var(--lp-slate);
  line-height: 1.65;
  font-size: 0.97rem;
}

.lp-physician__bio em {
  font-style: italic;
}

@media (max-width: 520px) {
  .lp-nav__inner {
    min-height: 4.25rem;
  }

  .lp-logo__word {
    font-size: 1.16rem;
  }

  .lp-logo__mark {
    width: 1.9rem;
    height: 1.9rem;
  }

  .lp-nav__actions .lp-btn {
    display: none;
  }

  .lp-hero {
    padding-top: 3.25rem;
  }

  .lp-hero h1 {
    max-width: 12ch;
  }

  .lp-rx-card {
    transform: rotate(0.5deg);
  }

  .lp-hero-art__note {
    display: none;
  }

  .lp-chart {
    padding: 0.75rem;
  }
}
