.map-address {
    margin-top: 12px;
    font-style: normal;
    color: var(--text-secondary);
    font-size: 14.5px;
}

.map-embed {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    padding: 2px;
    background: linear-gradient(135deg, rgba(180, 124, 253, 0.5), rgba(255, 120, 220, 0.25), rgba(180, 124, 253, 0.1));
    box-shadow: 0 0 40px rgba(180, 124, 253, 0.12), 0 0 80px rgba(180, 124, 253, 0.06);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 440px;
    border-radius: calc(var(--r-lg) - 2px);
}

/* Placeholder shown until maps-lazy.js swaps in the real iframe.
   Acts as a real link to Google Maps for no-JS users + crawlers. */
.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 440px;
    border-radius: calc(var(--r-lg) - 2px);
    background:
        radial-gradient(ellipse at 50% 40%, rgba(180, 124, 253, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, var(--atom-bg-mid) 0%, var(--atom-bg-deep) 100%);
    color: var(--text-primary);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.map-placeholder:hover,
.map-placeholder:focus-visible {
    background:
        radial-gradient(ellipse at 50% 40%, rgba(180, 124, 253, 0.28) 0%, transparent 60%),
        linear-gradient(180deg, var(--atom-bg-mid) 0%, var(--atom-bg-deep) 100%);
}

.map-placeholder-pin {
    color: var(--accent-purple);
    margin-bottom: 4px;
}

.map-placeholder-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: -0.01em;
}

.map-placeholder-sub {
    color: var(--text-secondary);
    font-size: 14px;
    max-width: 28ch;
}

/* ───────── Footnote (asterisked hero claim) ───────── */

.hero-meta-item .footnote-ref {
    margin-left: -7px; /* pull the asterisk back against the text despite the flex gap */
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 600;
}

.hero-meta-item .footnote-ref:hover,
.hero-meta-item .footnote-ref:focus-visible {
    text-decoration: underline;
}

.page-footnote {
    margin: 28px auto 0;
    max-width: 64ch;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    scroll-margin-top: 120px;
}

.page-footnote span {
    color: var(--accent-purple);
    font-weight: 600;
    margin-right: 2px;
}
