/* Fonts lokal (DSGVO) */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url(fonts/fraunces-normal-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url(fonts/fraunces-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/fraunces-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/fraunces-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url(fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url(fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Reset + Basis */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; overflow-x: hidden; }

body {
  --bg: #FFFFFF;
  --bg-alt: #F7F6F2;
  --ink: #1A1A18;
  --muted: #7A7A74;
  --accent: #6B8462;
  --accent-dark: #3E5038;
  --border: #E8E6E0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Skip-Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent-dark);
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* NAV */
nav.main-nav {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--accent-dark);
  text-decoration: none;
}
.nav-brand em { font-style: italic; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a:focus { color: var(--accent-dark); }
.nav-links a[aria-current="page"] { color: var(--accent-dark); font-weight: 400; }

/* Hamburger (mobil) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle::before { content: ''; top: 0; }
.nav-toggle span { top: 50%; transform: translateY(-50%); }
.nav-toggle::after { content: ''; bottom: 0; }

/* FOOTER */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
footer a {
  color: var(--ink);
  text-decoration: none;
  margin: 0 12px;
}
footer a:hover,
footer a:focus { color: var(--accent-dark); }
footer .footer-copy { margin-top: 12px; }

/* REGION-SEITEN */
main { outline: none; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.back-link:hover,
.back-link:focus { color: var(--accent-dark); }

.region-header {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 40px 0;
}
.region-header .back-link { margin-bottom: 32px; }
.region-header h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}
.region-header h1 em { font-style: italic; color: var(--accent-dark); }

.region-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--muted);
  margin-top: 12px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.region-meta strong {
  font-weight: 400;
  color: var(--ink);
}

.region-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 40px;
}
.region-section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--accent-dark);
  margin-bottom: 24px;
}

.garten-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.garten-card {
  padding: 20px 24px;
  background: var(--bg-alt);
  border-radius: 6px;
  border-left: 3px solid var(--accent);
}
.garten-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.garten-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.kontakt-box {
  padding: 24px;
  background: var(--bg-alt);
  border-radius: 6px;
}
.kontakt-box p {
  font-size: 15px;
  color: #2F2F2C;
  line-height: 1.6;
}
.kontakt-box a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.kontakt-box a:hover { color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .nav-inner { padding: 16px 24px; }
  .region-header { padding: 32px 20px 0; }
  .region-section { padding: 32px 20px; }
  .region-meta { gap: 12px; }
  .garten-card { padding: 16px 18px; }
  footer { padding: 24px 20px; }
  footer a { display: inline-block; margin: 4px 12px; }
}
