:root {
    --page-bg: #edf1eb;
    --page-bg-soft: #fbfaf7;
    --card-bg: rgba(255, 251, 246, 0.84);
    --card-bg-solid: #fffdf8;
    --ink: #1f2a24;
    --muted: #667166;
    --muted-strong: #465249;
    --berry: #c1643e;
    --berry-deep: #87412c;
    --fir: #507564;
    --gold: #d7bb88;
    --sage: #c7d5cb;
    --sage-deep: #a4baad;
    --line: rgba(80, 117, 100, 0.14);
    --shadow: 0 30px 70px rgba(54, 68, 61, 0.14);
    --shadow-soft: 0 18px 40px rgba(54, 68, 61, 0.1);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(215, 187, 136, 0.24), transparent 24%),
        radial-gradient(circle at top right, rgba(80, 117, 100, 0.14), transparent 28%),
        linear-gradient(130deg, rgba(255, 255, 255, 0.68), transparent 38%),
        linear-gradient(180deg, var(--page-bg-soft) 0%, var(--page-bg) 100%);
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

[hidden] {
    display: none !important;
}

.page-shell {
    position: relative;
    z-index: 2;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 56px;
}

.hero,
.map-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(249, 244, 235, 0.82)),
        linear-gradient(180deg, rgba(199, 213, 203, 0.14), transparent 56%),
        var(--card-bg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.hero {
    padding: 34px 36px 38px;
    background:
        radial-gradient(circle at 86% 14%, rgba(193, 100, 62, 0.16), transparent 24%),
        radial-gradient(circle at 10% 94%, rgba(80, 117, 100, 0.13), transparent 28%),
        radial-gradient(circle at 46% -8%, rgba(255, 255, 255, 0.72), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 231, 0.84)),
        linear-gradient(120deg, rgba(80, 117, 100, 0.1), transparent 46%),
        var(--card-bg);
}

.hero__backdrop,
.hero__mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__backdrop {
    background:
        radial-gradient(circle at 86% 16%, rgba(193, 100, 62, 0.14), transparent 18%),
        radial-gradient(circle at 16% 84%, rgba(80, 117, 100, 0.12), transparent 22%),
        radial-gradient(circle at 52% 0%, rgba(255, 255, 255, 0.34), transparent 28%);
}

.hero__mesh {
    inset: 20px;
    border-radius: calc(var(--radius-xl) - 10px);
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.44), transparent 18%),
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.18), transparent 16%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 72%);
    opacity: 0.72;
}

.hero__eyebrow,
.section-heading__kicker,
.site-footer__eyebrow {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--berry-deep);
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__copy h1,
.section-heading h2,
.site-footer__title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.02em;
}

.hero__topline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(80, 117, 100, 0.14);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--muted-strong);
    box-shadow: 0 10px 22px rgba(54, 68, 61, 0.06);
}

.hero__kicker {
    margin: 28px 0 0;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fir);
}

.hero__copy h1 {
    margin-top: 14px;
    font-size: clamp(3.2rem, 7vw, 5.8rem);
}

.hero__lead {
    max-width: 62ch;
    margin: 18px 0 0;
    font-size: 1.03rem;
    line-height: 1.82;
    color: var(--muted-strong);
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.hero-metric {
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(247, 243, 236, 0.74)),
        var(--card-bg-solid);
    border: 1px solid rgba(80, 117, 100, 0.12);
    box-shadow: 0 14px 28px rgba(54, 68, 61, 0.08);
}

.hero-metric span,
.site-footer__card span {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-metric strong {
    display: block;
    margin-top: 10px;
    font-weight: 600;
}

.hero-metric small {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--muted-strong);
}

.hero-metric strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
    color: var(--ink);
}

.layout {
    margin-top: 20px;
}

.map-card {
    padding: 26px;
}

.section-heading h2 {
    margin-top: 10px;
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 22px;
    padding: 26px 28px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 10% 0%, rgba(193, 100, 62, 0.22), transparent 26%),
        radial-gradient(circle at 92% 8%, rgba(80, 117, 100, 0.2), transparent 24%),
        radial-gradient(circle at 50% 116%, rgba(215, 187, 136, 0.12), transparent 34%),
        linear-gradient(140deg, rgba(36, 53, 46, 0.98), rgba(26, 39, 34, 0.98)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
    box-shadow: 0 26px 50px rgba(31, 45, 39, 0.16);
    color: rgba(255, 247, 240, 0.92);
}

.site-footer__content {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.site-footer__title {
    margin-top: 10px;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    line-height: 0.98;
    color: #fff7f0;
}

.site-footer__text {
    max-width: 58ch;
    margin: 14px 0 0;
    line-height: 1.8;
    color: rgba(255, 243, 233, 0.78);
}

.site-footer__credit {
    margin: 18px 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 243, 233, 0.92);
}

.site-footer__credit-link {
    color: #fffaf4;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 250, 244, 0.34);
    transition:
        color 160ms ease,
        border-color 160ms ease,
        opacity 160ms ease;
}

.site-footer__credit-link:hover,
.site-footer__credit-link:focus-visible {
    color: #ffe4c8;
    border-color: rgba(255, 228, 200, 0.72);
}

.site-footer__meta {
    display: grid;
    gap: 12px;
}

.site-footer__card {
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.site-footer__card strong {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.6;
    color: #fffaf4;
}

.map-frame {
    position: relative;
    margin-top: 22px;
    padding: 18px;
    border-radius: 30px;
    border: 1px solid rgba(80, 117, 100, 0.16);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.84), rgba(247, 241, 231, 0.84)),
        linear-gradient(180deg, rgba(199, 213, 203, 0.14), transparent 58%),
        var(--card-bg-solid);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.map-toolbar,
.map-toolbar__group,
.map-toolbar__group--actions,
.map-zoom-controls,
.map-place-panel__pills {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.map-toolbar {
    justify-content: space-between;
    gap: 16px;
    padding: 2px 2px 16px;
}

.map-toolbar__group {
    gap: 10px;
}

.map-toolbar__group--actions {
    justify-content: flex-end;
    margin-left: auto;
}

.map-chip,
.map-toggle,
.map-wheel-hint {
    border-radius: 999px;
    border: 1px solid rgba(80, 117, 100, 0.12);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 26px rgba(54, 68, 61, 0.08);
}

.map-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--muted-strong);
}

.map-chip--accent {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--fir), #6b907f);
}

.map-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 8px 14px;
    color: var(--muted-strong);
    font: inherit;
    cursor: pointer;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease,
        border-color 160ms ease,
        background-color 160ms ease,
        color 160ms ease;
}

.map-toggle.is-active {
    color: var(--ink);
    border-color: rgba(80, 117, 100, 0.22);
    background: rgba(255, 255, 255, 0.84);
}

.map-toggle__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.map-toggle__value {
    min-width: 56px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(80, 117, 100, 0.1);
    color: var(--fir);
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
}

.map-toggle.is-active .map-toggle__value {
    background: rgba(80, 117, 100, 0.14);
}

.map-wheel-hint {
    padding: 10px 14px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease;
}

.map-wheel-hint.is-attention {
    color: #fff;
    background: linear-gradient(135deg, var(--berry), #d07c58);
    box-shadow: 0 16px 30px rgba(135, 65, 44, 0.24);
    transform: translateY(-1px);
}

.map-zoom-controls {
    position: absolute;
    top: 50%;
    right: 18px;
    z-index: 1;
    flex-direction: column;
    gap: 8px;
    padding: 6px;
    border-radius: 22px;
    border: 1px solid rgba(80, 117, 100, 0.12);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 26px rgba(54, 68, 61, 0.08);
    backdrop-filter: blur(10px);
    transform: translateY(-50%);
}

.map-zoom-button,
.map-place-panel__action,
.map-place-panel__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(80, 117, 100, 0.14);
    background: rgba(255, 255, 255, 0.86);
    color: var(--muted-strong);
    font: inherit;
    cursor: pointer;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        background-color 160ms ease,
        box-shadow 160ms ease;
}

.map-zoom-button {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    font-size: 1.35rem;
    line-height: 1;
}

.map-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 18px;
    align-items: stretch;
}

.map-stage {
    position: relative;
    min-width: 0;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(80, 117, 100, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 242, 0.94)),
        linear-gradient(140deg, rgba(215, 187, 136, 0.08), rgba(80, 117, 100, 0.08));
}

.places-map {
    height: 680px;
    width: 100%;
    background:
        radial-gradient(circle at 18% 18%, rgba(193, 100, 62, 0.1), transparent 20%),
        radial-gradient(circle at 82% 14%, rgba(80, 117, 100, 0.12), transparent 22%),
        linear-gradient(135deg, rgba(80, 117, 100, 0.12), rgba(255, 255, 255, 0.96));
}

.map-state {
    position: absolute;
    inset: 18px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 28px;
    border-radius: 22px;
    text-align: center;
    background: rgba(255, 252, 247, 0.92);
    border: 1px solid rgba(80, 117, 100, 0.14);
    backdrop-filter: blur(12px);
}

.map-state__title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 600;
}

.map-state__text {
    margin: 0 auto;
    max-width: 36ch;
    line-height: 1.75;
    color: var(--muted);
}

.map-legend {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: calc(100% - 36px);
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(80, 117, 100, 0.1);
    font-size: 0.92rem;
    color: var(--muted-strong);
    box-shadow: var(--shadow-soft);
}

.map-legend__dot {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--berry);
    box-shadow: 0 0 0 3px rgba(193, 100, 62, 0.16);
}

.map-marker-wrap {
    position: relative;
    transform: translate(-50%, calc(-100% - 10px));
}

.map-marker {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: transform 160ms ease;
}

.map-marker__pulse,
.map-marker__dot {
    position: absolute;
    inset: 0;
    border-radius: 999px;
}

.map-marker__pulse {
    inset: 2px;
    background: rgba(193, 100, 62, 0.18);
    animation: markerPulse 2.4s ease-in-out infinite;
}

.map-marker__dot {
    inset: 7px;
    background: var(--berry);
    border: 3px solid rgba(255, 252, 247, 0.98);
    box-shadow: 0 10px 22px rgba(135, 65, 44, 0.26);
}

.map-marker::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 12px;
    height: 12px;
    background: var(--berry);
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 0 8px 16px rgba(135, 65, 44, 0.22);
}

.map-marker-wrap.is-active {
    z-index: 4;
}

.map-marker-wrap.is-active .map-marker {
    transform: translateY(-2px);
}

.map-marker-wrap.is-active .map-marker__pulse {
    background: rgba(80, 117, 100, 0.22);
}

.map-marker-wrap.is-active .map-marker__dot,
.map-marker-wrap.is-active .map-marker::after {
    background: var(--fir);
}

.map-cluster-wrap {
    position: relative;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.map-cluster {
    position: relative;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid rgba(255, 252, 247, 0.92);
    border-radius: 999px;
    /* background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.18) 36%, transparent 37%),
        linear-gradient(145deg, rgba(232, 132, 88, 0.96), rgba(135, 65, 44, 0.98)); */
    background-color: #c1643e;
    box-shadow:
        0 16px 30px rgba(135, 65, 44, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.32);
    color: #fffaf4;
    cursor: pointer;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.map-cluster__halo {
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    background: rgba(193, 100, 62, 0.16);
    animation: markerPulse 2.4s ease-in-out infinite;
}

.map-cluster__count {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.map-cluster:hover,
.map-cluster:focus-visible {
    transform: translateY(-2px);
    box-shadow:
        0 20px 34px rgba(135, 65, 44, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.map-place-panel {
    position: relative;
    z-index: 2;
    min-width: 0;
    height: 680px;
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(80, 117, 100, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 243, 236, 0.9)),
        var(--card-bg-solid);
    box-shadow: var(--shadow-soft);
    overflow: auto;
}

.map-place-panel.is-empty {
    display: flex;
    align-items: center;
}

.map-place-panel__empty {
    max-width: 30ch;
}

.map-place-panel__content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.map-place-panel__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 999px;
    font-size: 1.5rem;
    line-height: 1;
}

.map-place-panel__media {
    margin-right: 52px;
    border-radius: 22px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(80, 117, 100, 0.14), rgba(193, 100, 62, 0.12)),
        rgba(255, 255, 255, 0.82);
}

.map-place-panel__image {
    width: 100%;
    min-height: 220px;
    height: 220px;
    object-fit: cover;
}

.map-place-panel__eyebrow {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--berry-deep);
}

.map-place-panel__title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 600;
    line-height: 0.95;
    color: var(--ink);
}

.map-place-panel__pills {
    gap: 8px;
}

.map-place-panel__pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(80, 117, 100, 0.1);
    color: var(--fir);
    font-size: 0.8rem;
    font-weight: 700;
}

.map-place-panel__pill--accent {
    background: rgba(193, 100, 62, 0.12);
    color: var(--berry-deep);
}

.map-place-panel__summary {
    margin: 0;
    line-height: 1.72;
    color: var(--muted-strong);
}

.map-place-panel__meta {
    display: grid;
    gap: 10px;
}

.map-place-panel__meta-row {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(80, 117, 100, 0.1);
}

.map-place-panel__meta-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.map-place-panel__meta-row span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.map-place-panel__meta-row strong {
    flex: 1 1 auto;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ink);
}

.map-place-panel__action {
    position: relative;
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 16px;
    border-color: rgba(80, 117, 100, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 243, 0.9)),
        rgba(255, 255, 255, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 10px 18px rgba(54, 68, 61, 0.08);
}

.map-place-panel__action svg {
    width: 18px;
    height: 18px;
}

.map-place-panel__action::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(80, 117, 100, 0.08), rgba(193, 100, 62, 0.1));
    z-index: 0;
}

.map-place-panel__action svg {
    position: relative;
    z-index: 1;
}

.map-place-panel::-webkit-scrollbar {
    width: 10px;
}

.map-place-panel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(80, 117, 100, 0.22);
}

.map-toggle:hover:not(:disabled),
.map-zoom-button:hover:not(:disabled),
.map-place-panel__action:hover:not(:disabled),
.map-place-panel__close:hover:not(:disabled) {
    color: var(--berry-deep);
    border-color: rgba(193, 100, 62, 0.24);
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(54, 68, 61, 0.1);
}

.map-place-panel__action.is-copied {
    color: #fff;
    border-color: rgba(80, 117, 100, 0.4);
    background: var(--fir);
    box-shadow: 0 14px 24px rgba(54, 68, 61, 0.1);
}

.map-place-panel__action.is-error {
    color: #fff;
    background: var(--berry);
}

.map-toggle:disabled,
.map-zoom-button:disabled {
    opacity: 0.44;
    cursor: not-allowed;
    box-shadow: none;
}

.map-toggle:focus-visible,
.map-zoom-button:focus-visible,
.map-place-panel__action:focus-visible,
.map-place-panel__close:focus-visible,
.map-marker:focus-visible {
    outline: 2px solid rgba(193, 100, 62, 0.5);
    outline-offset: 2px;
}

@keyframes markerPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.22);
        opacity: 0.25;
    }
}

@media (max-width: 1120px) {
    .site-footer__content {
        grid-template-columns: 1fr;
    }

    .map-content {
        grid-template-columns: 1fr;
    }

    .map-place-panel {
        height: auto;
        max-height: none;
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(100% - 20px, 1260px);
        padding: 18px 0 30px;
    }

    .hero,
    .map-card,
    .site-footer {
        border-radius: 24px;
    }

    .hero,
    .map-card {
        padding: 20px;
    }

    .hero__topline {
        align-items: flex-start;
        gap: 10px;
    }

    .hero__tag {
        width: 100%;
        justify-content: center;
    }

    .hero__kicker {
        margin-top: 22px;
    }

    .hero__copy h1 {
        font-size: clamp(2.7rem, 16vw, 4.2rem);
    }

    .hero__metrics {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 20px;
    }

    .site-footer__title {
        font-size: 2.2rem;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

    .site-footer__content {
        grid-template-columns: 1fr;
    }

    .map-frame {
        padding: 14px;
        border-radius: 24px;
    }

    .map-toolbar {
        gap: 12px;
        padding-bottom: 12px;
    }

    .map-toolbar__group--actions {
        justify-content: space-between;
        width: 100%;
    }

    .map-wheel-hint {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .map-stage,
    .map-place-panel {
        border-radius: 22px;
    }

    .map-content {
        position: relative;
        display: block;
    }

    .places-map {
        height: 500px;
    }

    .map-state {
        inset: 12px;
        padding: 20px;
    }

    .map-legend {
        left: 12px;
        right: 12px;
        bottom: 12px;
        justify-content: center;
        text-align: center;
    }

    .map-cluster {
        width: 52px;
        height: 52px;
    }

    .map-zoom-controls {
        right: 12px;
        padding: 5px;
    }

    .map-place-panel {
        position: absolute;
        inset: 0;
        height: auto;
        max-height: none;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(12px);
        transition:
            opacity 180ms ease,
            transform 180ms ease,
            visibility 180ms ease;
    }

    .map-place-panel.is-empty {
        display: none;
    }

    .map-place-panel.is-mobile-open {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .map-place-panel__content {
        min-height: 100%;
    }

    .map-place-panel__media {
        margin-right: 0;
    }

    .map-place-panel__image {
        min-height: 188px;
        height: 188px;
    }
}
