:root {
  --green: #94bd1f;
  --green-dark: #617d12;
  --ink: #303435;
  --muted: #606767;
  --line: #d8dddd;
  --paper: #ffffff;
  --soft: #f4f4f1;
  --warm: #faf9f1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
}

.brand img {
  width: min(220px, 52vw);
  height: auto;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.96rem;
  white-space: nowrap;
}

.top-nav a {
  text-decoration: none;
}

.top-nav a:hover,
.contact a:hover {
  color: var(--green-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(44px, 8vw, 88px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(250, 249, 241, 0.96), rgba(250, 249, 241, 0.72)),
    url("assets/headerbild.jpg") center / cover;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 28px;
  color: #424849;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 13px 20px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #172000;
}

.button.secondary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-image {
  margin: 0;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(48, 52, 53, 0.22);
}

.notice,
.services,
.region,
.contact {
  margin: 0 auto;
  padding: clamp(34px, 6vw, 68px) clamp(18px, 5vw, 64px);
}

.notice {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--ink);
  color: var(--paper);
}

.notice strong {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 1.18rem;
}

.services {
  background: var(--paper);
}

.section-head {
  max-width: 720px;
  margin-bottom: 26px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.service-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--green-dark);
  font-weight: 700;
}

.service-grid p,
.contact p {
  color: var(--muted);
}

.region {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: var(--soft);
}

.region ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.region li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--paper);
  color: #424849;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 32px;
  align-items: start;
  background: var(--paper);
}

address {
  display: grid;
  gap: 6px;
  padding: 24px;
  border-left: 5px solid var(--green);
  background: var(--soft);
  font-style: normal;
}

address strong {
  margin-bottom: 6px;
}

address a {
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 820px) {
  .site-header,
  .top-nav,
  .notice,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-nav {
    gap: 8px;
    white-space: normal;
  }

  .mail-link {
    overflow-wrap: anywhere;
  }

  .hero,
  .region,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 420px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}
ss a {
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: clamp(1.9rem, 10vw, 3rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(1.5rem, 7vw, 2.05rem);
  }

  .actions,
  .button {
    width: 100%;
  }

  .hero,
  .region,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 420px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}
