:root {
  --green: #234b39;
  --green-dark: #163126;

  --gold: #b3701a;
  --gold-dark: #8f5710;
  --bg: #fbfaf6;
  --surface: #ffffff;
  --text: #1e2622;
  --text-soft: #45514b;
  --border: #dcdcd2;
  --radius: 14px;
  --shadow: 0 2px 8px rgba(22, 49, 38, 0.08);
  --shadow-lg: 0 10px 30px rgba(22, 49, 38, 0.12);
  --wrap: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 19px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Tahoma, Verdana, Geneva, Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3 {
  line-height: 1.22;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 1.9rem;
}
h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--green);
}

a:hover {
  color: var(--green-dark);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section--alt {
  background: #f1f3ec;
}

.section__intro {
  max-width: 46rem;
  font-size: 1.1rem;
  color: var(--text-soft);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--green);
  color: #fff;
  padding: 0.9rem 1.2rem;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 56px;
  padding: 0.9rem 1.6rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn--cta {
  background: var(--gold);
  color: #fff;
}

.btn--cta:hover {
  background: var(--gold-dark);
  color: #fff;
}

.btn--solid {
  background: var(--green);
  color: #fff;
}

.btn--solid:hover {
  background: var(--green-dark);
  color: #fff;
}

.btn--quiet {
  background: var(--surface);
  color: var(--green);
  border-color: var(--green);
}

.btn--quiet:hover {
  background: #eaf0ea;
  color: var(--green-dark);
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
}

.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text);
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__name {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
}

.brand__tag {
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav {
  border-top: 1px solid var(--border);
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
}

.nav__list a {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 1.1rem;
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.nav__list a:hover {
  background: #eaf0ea;
  color: var(--green-dark);
}

.nav__list a[aria-current="page"] {
  background: #eaf0ea;
  color: var(--green);
  font-weight: 700;
}

.nav-toggle {
  display: none;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--green);
  content: "";
  position: relative;
}

.nav-toggle__bars::before {
  position: absolute;
  top: -8px;
}

.nav-toggle__bars::after {
  position: absolute;
  top: 8px;
}

/* ---------- Hero ---------- */

.hero {
  background: #eef1e9;
  border-bottom: 1px solid var(--border);
}

.hero__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 3.5rem 0;
}

.hero__title {
  font-size: 2.7rem;
}

.hero__text {
  font-size: 1.2rem;
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero__mail {
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

.hero__img {
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

/* ---------- Karten & Listen ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-bottom: 0.4rem;
}

.card p {
  margin: 0;
  color: var(--text-soft);
}

.card__icon {
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 0.6rem;
  display: block;
}

.steps {
  list-style: none;
  counter-reset: step;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 0.3rem;
}

.steps p {
  margin: 0;
  color: var(--text-soft);
}

.about {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}

/* ---------- Kontakt ---------- */

.contact {
  display: grid;
  gap: 2.5rem;
}

.contact__mail {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  word-break: break-word;
  margin-bottom: 1.25rem;
}

.form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  font: inherit;
  color: var(--text);
  background: #fff;
  border: 2px solid #c6c9bd;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
}

.form textarea {
  resize: vertical;
}

.form__consent {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.form__consent input {
  width: 24px;
  height: 24px;
  margin-top: 0.35rem;
  flex: 0 0 auto;
  accent-color: var(--green);
}

.form__consent label {
  font-weight: 400;
  font-size: 0.98rem;
}

.form__status {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  background: #e6efe6;
  color: var(--green-dark);
  font-weight: 600;
}

.form__status[hidden] {
  display: none;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--green);
  color: #eef1e9;
  margin-top: 2rem;
}

.footer a {
  color: #eef1e9;
}

.footer__grid {
  display: grid;
  gap: 2.25rem;
  padding: 3.25rem 0;
}

.footer h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer__bottom {
  border-top: 1px solid rgba(238, 241, 233, 0.3);
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__legal a {
  font-weight: 600;
}

/* ---------- Rechtsseiten ---------- */

.page-head {
  background: #eef1e9;
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}

.legal {
  max-width: 52rem;
  padding: 3.5rem 0;
}

.legal h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
}

.legal h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
}

.legal ul {
  padding-left: 1.4rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

.legal address {
  font-style: normal;
}

/* ---------- Cookie-Banner ---------- */

.cookie {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 150;
  background: var(--surface);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
}

.cookie[hidden] {
  display: none;
}

.cookie__inner {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem 0;
}

.cookie p {
  margin: 0;
  max-width: 58rem;
}

.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Sanfte Einblendung ---------- */

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Responsiv ---------- */

@media (min-width: 720px) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cookie__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 960px) {
  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero__grid {
    grid-template-columns: 1.05fr 1fr;
    padding: 4.5rem 0;
  }
  .about {
    grid-template-columns: 1.1fr 1fr;
  }
}

@media (max-width: 959px) {
  html {
    font-size: 18px;
  }
  h1,
  .hero__title {
    font-size: 2.1rem;
  }
  .header__actions .btn--cta {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--surface);
    border: 2px solid var(--green);
    border-radius: var(--radius);
    cursor: pointer;
  }
  .nav {
    display: none;
  }
  .nav.is-open {
    display: block;
    background: var(--surface);
  }
  .nav__list {
    flex-direction: column;
    padding-bottom: 1rem;
  }
  .nav__list a {
    min-height: 58px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    width: 100%;
    font-size: 1.05rem;
  }
  .nav__mail {
    margin-top: 1rem;
  }
}