/* Google Maps embed + its click-to-load placeholder.
   Shared by the home page "Find us" section and /contact-us. */

.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;
}
