:root {
    --park-groen: #2C4A36;
    --park-room: #FAF7EF;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }

body.park-body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #E7E3D9;
    overflow: hidden;
}

.park-scene { position: fixed; inset: 0; }
.park-scene svg { width: 100%; height: 100%; display: block; }

.park-title {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(1.6rem, 4.2vw, 3rem);
    font-weight: 600;
    color: var(--park-groen);
    text-shadow: 0 1px 0 rgba(250, 247, 239, 0.9);
    letter-spacing: 0.3px;
    white-space: nowrap;
    z-index: 5;
}

.park-menu-btn {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 20;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(44, 74, 54, 0.15);
    background: var(--park-room);
    box-shadow: 0 3px 12px rgba(44, 74, 54, 0.22);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.park-menu-btn span {
    display: block;
    width: 22px;
    height: 2.5px;
    border-radius: 2px;
    background: var(--park-groen);
    margin: 2.5px 0;
}
.park-menu-btn:hover { transform: scale(1.05); }
.park-menu-btn:focus-visible { outline: 3px solid var(--park-groen); outline-offset: 3px; }

.park-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(320px, 85vw);
    background: var(--park-room);
    z-index: 15;
    box-shadow: -6px 0 24px rgba(44, 74, 54, 0.18);
    border-radius: 16px 0 0 16px;
    padding: 92px 28px 28px;
    transform: translateX(105%);
    transition: transform 0.25s ease;
}
.park-panel.open { transform: none; }
.park-panel h2 {
    margin: 0 0 14px;
    font-family: 'Fraunces', Georgia, serif;
    color: var(--park-groen);
    font-size: 1.25rem;
    font-weight: 600;
}
.park-panel ul { list-style: none; margin: 0; padding: 0; }
.park-panel li a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--park-groen);
    text-decoration: none;
    font-weight: 500;
}
.park-panel li a:hover, .park-panel li a:focus-visible { background: #EAEFE2; }
.park-empty { color: #6E7F6C; font-size: 0.95rem; line-height: 1.5; }

.park-figure {
    cursor: pointer;
    transform-box: fill-box;
    transform-origin: center bottom;
    transition: transform 0.18s ease;
}
.park-figure:hover, .park-figure:focus { transform: translateY(-5px) scale(1.03); }
.park-figure:focus { outline: 3px solid var(--park-groen); outline-offset: 4px; }

@media (max-width: 480px) {
    .park-title { font-size: 1.35rem; top: 36px; }
}
