:root {
  --green-dark: #1f3324;
  --green: #3f6b4a;
  --green-light: #8bb174;
  --green-pale: #eef3ea;
  --gold: #e0b25c;
  --ink: #1c2419;
  --ink-soft: #4c5a46;
  --bg: #eef2ec;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.65);
  --shadow: 0 8px 32px rgba(31, 51, 36, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}

body::before {
  width: 480px;
  height: 480px;
  top: -160px;
  left: -140px;
  background: var(--green-light);
  opacity: 0.55;
}

body::after {
  width: 420px;
  height: 420px;
  bottom: -180px;
  right: -140px;
  background: var(--gold);
  opacity: 0.35;
}

a { color: var(--green); }

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(31, 51, 36, 0.7);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}

.header-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.brand .leaf {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

nav.main ul {
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 4px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

nav.main a {
  color: #dce8d6;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.92rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

nav.main a:hover,
nav.main a.active {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 24px 90px;
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  text-align: center;
  padding: 64px 32px;
  border-radius: 28px;
  background: var(--glass);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  margin: 0 0 14px;
  color: var(--green-dark);
  letter-spacing: -0.02em;
}

.hero p {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

.card {
  background: var(--glass);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 30px 34px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(31, 51, 36, 0.2);
}

.card h2 {
  margin-top: 0;
  color: var(--green-dark);
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

.card h3 {
  color: var(--green);
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 640px) {
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 44px 22px; border-radius: 22px; }
}

table.termine {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

table.termine th,
table.termine td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(31, 51, 36, 0.1);
}

table.termine th {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

table.termine tbody tr {
  transition: background-color 0.15s ease;
}

table.termine tbody tr:hover {
  background: rgba(63, 107, 74, 0.08);
}

.badge {
  display: inline-block;
  background: rgba(63, 107, 74, 0.14);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.btn {
  display: inline-block;
  background: var(--green-dark);
  color: #fff;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(31, 51, 36, 0.25);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(31, 51, 36, 0.3);
}

.contact-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0;
}

.contact-line .label {
  color: var(--ink-soft);
  min-width: 90px;
  font-size: 0.9rem;
}

ul.plain {
  padding-left: 20px;
  margin: 8px 0;
}

ul.plain li {
  margin-bottom: 4px;
}

footer.site {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

footer.site a {
  color: var(--ink-soft);
  text-decoration: underline;
}

.notice {
  background: rgba(63, 107, 74, 0.12);
  border: 1px solid rgba(63, 107, 74, 0.18);
  border-radius: 16px;
  padding: 18px 22px;
  color: var(--green-dark);
  font-size: 0.95rem;
}
