.body-map {
    --body-map-accent: #146c60;
    --body-map-accent-strong: #0b4d45;
    --body-map-ink: #17211f;
    --body-map-muted: #64716e;
    --body-map-surface: #f4f1ed;
    color: var(--body-map-ink);
    border-top: 1px solid rgba(20, 108, 96, .08);
    background: linear-gradient(180deg, #f4f1ed 0, #fbfaf8 18rem, #fff 36rem);
    padding: clamp(3rem, 8vw, 7rem) max(1rem, calc((100vw - 1180px) / 2));
}

.body-map__intro { max-width: 42rem; padding-left: 1rem; border-left: 3px solid rgba(20, 108, 96, .5); }
.body-map__intro h2 { margin: .35rem 0 .75rem; font-size: clamp(2rem, 5vw, 4.5rem); line-height: 1.05; letter-spacing: -.045em; }
.body-map__intro p { color: var(--body-map-muted); }
.body-map__eyebrow { color: var(--body-map-accent) !important; font-size: .75rem; font-weight: 800; letter-spacing: .18em; }

.body-map__content { display: grid; grid-template-columns: minmax(0, 2fr) minmax(15rem, 1fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; margin-top: 2.5rem; }
.body-map__figures { display: grid; grid-template-columns: repeat(2, minmax(0, 18rem)); justify-content: center; gap: clamp(.5rem, 3vw, 2rem); }
.body-map__figure { margin: 0; text-align: center; }
.body-map__figure figcaption { margin-top: .65rem; color: var(--body-map-muted); font-size: .82rem; font-weight: 700; letter-spacing: .14em; }
.body-map__visual { position: relative; isolation: isolate; aspect-ratio: 9 / 16; overflow: visible; }
.body-map__visual picture,
.body-map__visual img { display: block; width: 100%; height: 100%; }
.body-map__visual img { object-fit: cover; border-radius: 999px; }
.body-map__guide { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; overflow: visible; pointer-events: none; }
.body-map__guide rect { fill: none; stroke: rgba(20, 108, 96, .2); stroke-width: 2; stroke-dasharray: .12 .02; }

.body-map__hotspot {
    position: absolute;
    z-index: 2;
    left: var(--hotspot-x);
    top: var(--hotspot-y);
    display: grid;
    min-width: 44px;
    min-height: 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    translate: -50% -50%;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(20, 108, 96, .18);
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: scale 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}
.body-map__hotspot > span[aria-hidden="true"] { width: 16px; height: 16px; border: 3px solid #fff; border-radius: 50%; background: var(--body-map-accent); box-shadow: 0 0 0 5px rgba(20, 108, 96, .34), 0 3px 12px rgba(11, 77, 69, .35); }
.body-map__hotspot:hover,
.body-map__hotspot.is-pressed { scale: .9; background: rgba(20, 108, 96, .32); }
.body-map__hotspot:focus-visible,
.body-map__text-link:focus-visible { outline: 3px solid #0b4d45; outline-offset: 4px; box-shadow: 0 0 0 6px rgba(255, 255, 255, .96); }
.body-map__hotspot-label { position: absolute; left: 50%; bottom: calc(100% + 5px); translate: -50% 0; width: max-content; max-width: 9rem; padding: .25rem .45rem; border-radius: .35rem; color: #fff; background: rgba(11, 32, 29, .82); font-size: .68rem; font-weight: 700; line-height: 1.2; pointer-events: none; }
.body-map__hotspot--pending { opacity: .56; cursor: not-allowed; }
.body-map__hotspot--pending > span[aria-hidden="true"] { background: #566562; box-shadow: 0 0 0 5px rgba(86, 101, 98, .22); }

.body-map__links { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.body-map__text-link,
.body-map__pending { display: flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 1rem; padding: .7rem .9rem; border-bottom: 1px solid #d9dfdc; color: var(--body-map-ink); font-weight: 750; text-decoration: none; touch-action: manipulation; transition: color 140ms ease, background-color 140ms ease, translate 140ms ease; }
.body-map__text-link:hover,
.body-map__text-link.is-pressed { color: var(--body-map-accent-strong); background: #eef5f2; translate: .2rem 0; }
.body-map__count,
.body-map__pending > span { color: var(--body-map-muted); font-size: .78rem; font-weight: 650; }
.body-map__pending { color: #566562; }

@media (max-width: 760px) {
    .body-map__content { grid-template-columns: 1fr; }
    .body-map__figures { gap: .25rem; }
    .body-map__hotspot-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .body-map__hotspot,
    .body-map__text-link { transition: none; }
}
