
:root {
  --bg: #f5f3ed;
  --surface: #ffffff;
  --forest: #2f5d50;
  --moss: #6e8f72;
  --earth: #8b6b4a;
  --text: #1f2a24;
  --muted: #4f5d54;
  --radius: 16px;
  --shadow: 0 10px 24px rgba(16, 30, 23, 0.12);
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, system-ui, Arial, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
.container { width: min(1080px, 92vw); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(245,243,237,0.95); backdrop-filter: blur(6px); border-bottom: 1px solid #e5e0d5; }
.header-inner { display: flex; gap: 1rem; align-items: center; justify-content: space-between; padding: .8rem 0; }
.brand { font-weight: 700; color: var(--forest); text-decoration: none; font-size: 1.2rem; }
.site-nav { display: flex; gap: .9rem; flex-wrap: wrap; }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
.site-nav a:hover { color: var(--forest); }
.menu-toggle { display:none; }
.hero { position: relative; min-height: 64vh; display: grid; align-items: stretch; }
.hero img { width: 100%; height: 64vh; object-fit: cover; filter: saturate(0.95) contrast(1.05); }
.hero-overlay { position: absolute; inset: 0; display: grid; align-content: end; padding-bottom: 3rem; background: linear-gradient(to top, rgba(9,22,16,.55), rgba(9,22,16,.15)); color: #f4f6f0; }
.hero h1 { max-width: 14ch; line-height: 1.1; margin: 0 0 .5rem; font-size: clamp(1.8rem, 4vw, 3.2rem); }
.cta-row { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1rem; }
.btn { display:inline-block; background: var(--forest); color: #fff; text-decoration:none; padding: .7rem 1rem; border-radius: 999px; font-weight: 600; }
.btn-light { background: #f0ede4; color: #1d2c25; }
.grid { display: grid; gap: 1rem; margin: 2rem auto; }
.cards { grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); }
.two-col { grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); }
.card { background: var(--surface); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow); }
.card img, .gallery-single img, .gallery-grid img { width: 100%; border-radius: 12px; }
.page-intro { padding-top: 2rem; }
.gallery-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: .9rem; margin-bottom: 2rem; }
.gallery-single { display:grid; gap: 1rem; margin: 1rem auto 2rem; }
.site-footer { padding: 2rem 0 3rem; background: #e8e1d2; margin-top: 2rem; }
@media (max-width: 780px) {
  .menu-toggle { display:block; border: 1px solid #d4ccba; background:#fff; border-radius:8px; padding:.4rem .7rem; }
  .site-nav { display:none; width:100%; flex-direction: column; padding-bottom: .8rem; }
  .site-nav.open { display:flex; }
}

.prose { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.2rem; margin: 1.2rem auto; }
.prose h2 { margin-top: 0; color: var(--forest); }
.prose ul, .prose ol { padding-left: 1.2rem; }
.prose p + p { margin-top: .7rem; }
.leaflet-map { width: 100%; height: 360px; border-radius: 12px; overflow: hidden; margin-top: .8rem; }
.kontakt-prose h1 { margin-bottom: .5rem; }
.contact-card { margin-top: 1rem; padding: 1rem; border-radius: 12px; background: #f7f3ea; border: 1px solid #e6dece; }
.contact-card p { margin: .35rem 0; }
.contact-card a { color: var(--forest); text-decoration: none; font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }

.media-split { display: grid; grid-template-columns: minmax(240px, 40%) 1fr; gap: 1rem; margin: 1rem auto 2rem; align-items: start; }
.left-photo { width: 100%; border-radius: 12px; box-shadow: var(--shadow); display: block; }
.left-photo-stack { display: grid; gap: 1rem; }
@media (max-width: 900px) {
  .media-split { grid-template-columns: 1fr; }
}
