:root {
  --green-main: #16a34a;
  --green-soft: #dcfce7;
  --green-soft-bg: #ecfdf5;
  --red-main: #b91c1c;
  --beige-bg: #fef3c7;
  --text-main: #111827;
  --text-soft: #4b5563;
  --border-soft: #e5e7eb;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f4;
  color: var(--text-main);
  padding: 16px;
}

.page-wrapper {
  max-width: 1040px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}

/* HEADER / HERO */
header {
  padding: 22px 22px 18px;
  background: linear-gradient(135deg, var(--beige-bg), var(--green-soft-bg));
  color: var(--text-main);
  border-bottom: 1px solid #e2e8f0;
}

.header-top {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  height: 70px;
  width: auto;
  flex-shrink: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(22,163,74,0.09);
  color: #166534;
  border: 1px solid rgba(22,101,52,0.18);
}

.badge span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
}

h1 {
  margin-top: 8px;
  font-size: clamp(1.9rem, 3.3vw, 2.4rem);
  color: #1f2937;
  letter-spacing: 0.03em;
}

.subtitle {
  margin-top: 6px;
  max-width: 640px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

.hero-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-meta span {
  font-size: 0.85rem;
  color: #4b5563;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
}

.hero-meta span::before {
  content: "•";
  font-size: 0.9rem;
  color: var(--green-main);
}

.hero-image {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  max-height: 260px;
  border: 1px solid rgba(148,163,184,0.4);
}

.hero-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

/* MAIN */
main {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #f9fafb;
}

section {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 18px 20px;
  border: 1px solid var(--border-soft);
  position: relative;
}

section h2 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
  position: relative;
  z-index: 1;
}

section h2 .icon {
  font-size: 1.2rem;
}

section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-main), var(--green-main));
}

.section-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  gap: 16px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.highlight-box {
  border-radius: 14px;
  background: var(--green-soft-bg);
  padding: 10px 12px;
  font-size: 0.88rem;
  color: #166534;
  border: 1px solid rgba(22, 101, 52, 0.2);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: var(--green-soft);
  color: #166534;
  border: 1px solid rgba(22, 101, 52, 0.18);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.card {
  border-radius: 14px;
  background: #f9fafb;
  padding: 12px 12px 14px;
  border: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: #374151;
}

.card-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-main);
}

.contact-items {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  margin-top: 6px;
  color: var(--text-soft);
  position: relative;
  z-index: 1;
}

.contact-items a {
  color: var(--green-main);
  text-decoration: none;
}

.contact-items a:hover {
  text-decoration: underline;
}

/* Foto-Galerien */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.photo-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.5);
  background: #0f172a;
}

.photo-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05);
}

.photo-caption {
  padding: 8px 10px 9px;
  font-size: 0.8rem;
  color: #e5e7eb;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(22, 163, 74, 0.95));
}

/* FOOTER */
footer {
  padding: 10px 22px 16px;
  font-size: 0.75rem;
  text-align: center;
  color: #6b7280;
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
}

@media (max-width: 780px) {
  body {
    padding: 10px;
  }

  header {
    padding: 18px 16px 16px;
  }

  main {
    padding: 18px 16px 22px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-height: 220px;
  }
}

@media (max-width: 520px) {
  .header-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo {
    height: 60px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-meta span {
    width: 100%;
  }

  .photo-card img {
    height: 150px;
  }
}
