.fp-b {
  background: var(--cream);
  padding: 96px 0 120px;
}
.fp-b__head { max-width: 720px; margin-bottom: 48px; }
.fp-b__head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  margin: 0;
}
.fp-b__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .fp-b__layout { grid-template-columns: 1.2fr 1fr; gap: 64px; }
}
.fp-b__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.85;
  min-height: 420px;
}
.fp-b__circle {
  position: absolute;
  border-radius: 50%;
  overflow: visible;
  border: 0;
  padding: 0;
  background: var(--teal);
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease;
}
.fp-b__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.fp-b__circle--sm { width: 140px; height: 140px; }
.fp-b__circle--md { width: 180px; height: 180px; }
.fp-b__circle--lg { width: 280px; height: 280px; }
.fp-b__circle:hover { transform: scale(1.04); }
.fp-b__circle.is-active { outline: 4px solid var(--pink); outline-offset: 6px; }

.fp-b__num {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px; height: 36px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  border: 3px solid var(--cream);
  z-index: 2;
}

.fp-b__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.fp-b__card-num {
  position: absolute;
  top: 20px; right: 28px;
  font-family: var(--font-serif);
  color: var(--line);
  font-size: 64px;
  line-height: 1;
  font-weight: 400;
}
.fp-b__card-cat {
  color: var(--teal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fp-b__card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--navy);
  max-width: 340px;
}
.fp-b__card-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 10px; font-size: 14px; }
.fp-b__stars { color: #f5a623; letter-spacing: 2px; }
.fp-b__reviews { color: var(--ink-muted); }
.fp-b__card-price { font-family: var(--font-serif); font-size: 24px; color: var(--navy); margin-bottom: 14px; }
.fp-b__card-body { color: var(--ink-muted); margin-bottom: 24px; }
