/* ===========================================================================
   LIPEDEMA GURU — BOOKING PAGE (step 1: choose a consultation)
   Requires base.css. Lab testing is chosen on the checkout page, not here.
   =========================================================================== */

.lgb--booking { background: var(--canvas); }

.lgb__page {
  /* [FIGMA] 1400px content column inside a 1440 artboard, 20px gutters */
  max-width: calc(1400px + 2 * var(--gutter));
  margin-inline: auto;
  padding: var(--gap) var(--tight) 80px;
}
@media (min-width: 48rem) {
  .lgb__page { padding: 60px var(--gutter) 120px; }
}

.lgb__masthead {
  display: flex;
  justify-content: center;
  margin-bottom: var(--gap);
}

.lgb__lede {
  max-width: 460px;             /* [FIGMA] 1:4990 intro measure */
  margin: var(--gutter) auto 0;
  text-align: center;
}

/* ---------------------------------------------------------------------------
   Consultation cards — [FIGMA] `Consultations UI` 1:4328 / 1:4340.

   Title, spec chips, then a hairline-bounded row pairing the price with what
   the consultation includes, then the booking CTA — the card's own BOOK NOW
   (1:4338), which carries the visitor through to checkout.
   --------------------------------------------------------------------------- */
.lgb__cards {
  display: grid;
  gap: var(--gutter);
  margin-top: 60px;
}
@media (min-width: 64rem) {
  .lgb__cards {
    grid-template-columns: 1fr 1fr;
    margin-top: 80px;
  }
}

.lgb__card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: var(--gutter);
}

.lgb__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--gutter);
}

.lgb__specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;                     /* [FIGMA] chip gutter */
  margin-top: var(--gutter);
}

/* Push the rule to the bottom of the card so two cards of unequal content
   still line their prices up. */
.lgb__card-spacer { flex: 1 0 auto; min-height: var(--gutter); }

/* The hairline-bounded price row. On the desktop artboard price and includes
   sit side by side; below `lg` they stack. */
.lgb__price-row {
  display: grid;
  gap: var(--gutter);
  margin-top: var(--gutter);
  padding: var(--gutter) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
@media (min-width: 64rem) {
  .lgb__price-row {
    grid-template-columns: auto 1fr;
    gap: 30px;
    margin-top: 30px;
  }
}

.lgb__price {
  font-family: var(--font-display);
  font-size: 54px;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.lgb__price-note {
  margin-top: var(--hair);
  font-size: 14px;
  color: var(--ink-soft);
}

.lgb__includes {
  list-style: disc;
  padding-inline-start: 27px;   /* [FIGMA] bullet indent */
}
.lgb__includes li + li { margin-top: 2px; }

.lgb__card .lgb__cta { margin-top: var(--gutter); }

/* ---------------------------------------------------------------------------
   Footnote
   --------------------------------------------------------------------------- */
.lgb__note {
  max-width: 680px;
  margin: var(--gap) auto 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0;
  color: var(--ink-soft);
}
