* { box-sizing: border-box; }
html, body { margin: 0; }
body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: #14251c;
    background: #f4f7f4;
}

.landing { min-height: 100vh; min-height: 100dvh; }

/* Hero – Naturgefühl (Wald/Grün) */
.hero {
    padding: 64px 20px 40px;
    text-align: center;
    background:
        radial-gradient(1200px 380px at 50% -140px, rgba(255,255,255,.55), transparent),
        linear-gradient(160deg, #2f7d54 0%, #1f6b46 55%, #16563a 100%);
    color: #fff;
}
.hero h1 { margin: 0 0 12px; font-size: clamp(1.6rem, 4.5vw, 2.6rem); font-weight: 800; letter-spacing: -.02em; }
.hero-sub { margin: 0 auto; max-width: 620px; font-size: clamp(.98rem, 2.2vw, 1.15rem); line-height: 1.5; opacity: .95; }
.hero-meta {
    margin: 20px auto 0; display: inline-block;
    background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25);
    padding: 6px 14px; border-radius: 999px; font-size: .85rem; font-weight: 600;
}

.parks { max-width: 1080px; margin: 0 auto; padding: 32px 20px 48px; }

.country { margin-bottom: 36px; }
.country-head {
    display: flex; align-items: center; gap: 12px;
    margin: 0 0 16px; font-size: 1.25rem; font-weight: 700;
    padding-bottom: 10px; border-bottom: 2px solid #e2e8e2;
}
.country-head .flag { font-size: 1.5rem; line-height: 1; }
.country-count {
    margin-left: auto; background: #e7f0ea; color: #1f6b46;
    font-size: .82rem; font-weight: 700; padding: 3px 11px; border-radius: 999px;
}

.park-grid {
    display: grid; gap: 14px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.park-card {
    display: flex; flex-direction: column; gap: 8px;
    background: #fff; border: 1px solid #e2e8e2; border-radius: 14px;
    padding: 18px 18px 16px; text-decoration: none; color: inherit;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.park-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(22, 86, 58, .14);
    border-color: #cfe0d5;
}
.park-name { font-size: 1.08rem; font-weight: 700; line-height: 1.25; }
.park-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.park-stats .stat { color: #5c6b62; font-size: .82rem; }
.park-go { color: #2563eb; font-weight: 600; font-size: .9rem; }

.landing-foot { text-align: center; padding: 8px 20px 80px; }
.landing-foot .muted { color: #6b7280; }
.landing-foot .small { font-size: .82rem; }
