:root, [data-bs-theme=light] {
  --green: #476020;
  --lightgreen: #8b9247;
  --darkgreen: #213300;
  --yellow: #dcc500;
  --blue: #194ca7;
  --black: #000000;
  --white: #ffffff;
  --light: #f1f1f1;
  --greygreen: #f6f6f3;
  --danger-rgb: 220, 53, 69;
  --font-sans: "manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "fraunces", ui-monospace, SFMono-Regular, Menlo, serif;
  --radius: 28px;
  --section-space: clamp(5rem, 8vw, 9rem);
  --bs-body-font-family: var(--font-sans);
  --bs-body-font-size: 18px;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-link-color: #194ca7;
  --bs-link-decoration: none;
  --bs-link-hover-color: #000;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-body-bg: #f1f1f1;
}
#content {
  width: 100%;
  max-width: 1600px;
  margin-inline: auto;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 0 50px silver;
}
.section {
  padding-block: var(--section-space);
}
.bg-greygreen {
  background-color: var(--greygreen);
  min-height: 100px;
}
.bg-white {
  min-height: 100px;
}
.bold, strong, b {
  font-family: 'manropebold';
}
.light {
  font-family: 'manropelight';
}
h1 {
  font-family: 'fraunces';
  font-size: clamp(3.5rem, 6.5vw, 6.25rem);
  line-height: 1.05;
  color: var(--green);
}
h2 {
  font-family: 'fraunces';
  font-size: clamp(2rem, 3vw, 2.5rem);
  line-height: 1.2;
  color: var(--lightgreen);
}
h3 {
  font-family: 'fraunces';
  font-size: clamp(2.25rem, 4vw, 3.125rem);
  line-height: 1.15;
  color: var(--lightgreen);
}
h2.small {
  font-family: 'manropebold';
  font-size: 20px;
  line-height: 1.2;
  color: var(--green);
  text-transform: uppercase;
}
p {
  font-size: 1rem;
  line-height: 1.7;
  hyphens: auto;
}
a {
  text-decoration: none;
  color: var(--blue);
}
.text-link:hover {
  color: var(--blue);
  text-decoration: underline;
}
.section-label {
  font-family: 'manropebold';
  font-size: .95rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--green);
}
.section-line {
  width: 130px;
  height: 2px;
  margin: 1.3rem 0 1.3rem;
  background: var(--yellow);
}
/*---------------Buttons---------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 1rem 1.4rem;
  border-radius: 50px;
  font-family: 'manropebold';
  font-size: 1rem;
  text-decoration: none;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--white);
  border: 2px solid var(--yellow);
}
a.btn.btn-yellow:hover, .btn.btn-yellow:hover {
  border: 2px solid var(--white);
}

/* ==================================================
   HERO + NAVIGATION
================================================== */
.hero {
  position: relative;
  min-height: 820px;
  height: auto;
  overflow: hidden;
  background: var(--greygreen);
}
.hero-image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 58%;
  overflow: hidden;
  clip-path: url("#heroClip");
  -webkit-clip-path: url("#heroClip");
}
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
}
/* ---------- Navigation ---------- */
.hero-nav {
  position: relative;
  z-index: 10;
  padding-top: 2.5rem;
}
.hero-nav .container {
  align-items: flex-start;
}
.navbar-brand {
  padding: 0;
  margin: 0;
}
.navbar-brand img {
  display: block;
  width: 155px;
  height: auto;
}
.hero-menu {
  margin-left: 6rem;
  padding-top: 2.5rem;
  gap: clamp(2.5rem, 4vw, 5rem);
}
.hero-menu .nav-link {
  padding: 0 !important;
  font-family: 'manropebold';
  font-size: 1rem;
  color: var(--darkgreen);
}
.hero-menu .nav-link:hover, .hero-menu .nav-link:focus {
  color: var(--lightgreen);
  background: transparent;
}
.icon-close {
  color: white;
}
/* ---------- Hero Text ---------- */
.hero-content {
  position: relative;
  z-index: 5;
  min-height: 820px;
  padding-bottom: 4rem;
}
.hero-text {
  position: absolute;
  top: 13%;
  left: 0;
  width: 46%;
}
.hero-text h1 {
  margin: 0 0 1rem;
  font-size: clamp(4.5rem, 6.4vw, 6.25rem);
  line-height: .98;
}
.hero-subline {
  font-family: 'fraunces';
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  line-height: 1.2;
  color: var(--lightgreen);
}
.hero-line {
  width: 145px;
  height: 2px;
  margin: 2rem 0;
  background: var(--yellow);
}
.hero-copy {
  margin-bottom: 2.5rem;
  font-family: 'manropebold';
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--darkgreen);
}
/* ==================================================
   TABLET / MOBILE
================================================== */
@media (max-width: 991.98px) {
  .hero {
    height: auto;
    min-height: 0;
  }
  .hero-nav {
    position: relative;
    z-index: 20;
    padding-top: 1.2rem;
  }
  .hero-nav .container {
    position: relative;
    align-items: center;
  }
  .navbar-brand img {
    width: 115px;
    height: auto;
  }
  .navbar-toggler {
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .navbar-toggler:focus, .navbar-toggler:active {
    border: 0;
    box-shadow: none;
    outline: 0;
  }
  .menu-toggle {
    width: 52px;
    height: 52px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
  }
  .icon-open {
    display: block;
  }
  .icon-close {
    display: none;
    font-size: 2.6rem;
    font-weight: 300;
    line-height: 1;
    z-index: 31;
  }
  .menu-toggle[aria-expanded="true"] .icon-open {
    display: none;
  }
  .menu-toggle[aria-expanded="true"] .icon-close {
    display: block;
  }
  .navbar-collapse {
    position: absolute;
    z-index: 30;
    top: 25%;
    right: 0;
    width: min(320px, 80vw);
    margin-top: .5rem;
    padding: 1.25rem 1.5rem;
    background: var(--green);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgb(0 0 0 / .12);
  }
  .hero-menu {
    margin: 0;
    padding: 0;
    gap: .25rem;
  }
  .hero-menu .nav-link {
    display: block;
    padding: .65rem 0 !important;
    font-size: 1rem;
    color: white;
  }
  .hero-image {
    position: relative;
    width: 100%;
    height: clamp(320px, 48vw, 460px);
    min-height: 0;
    clip-path: none;
    -webkit-clip-path: none;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
  }
  .hero-content {
    min-height: 0;
    height: auto;
  }
  .hero-text {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }
  br.desktop-break {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .hero-text {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .hero-text h1 {
    font-size: clamp(3.3rem, 15vw, 4.5rem);
  }
  .hero-subline {
    font-size: 1.5rem;
  }
  .hero-copy br {
    display: none;
  }
  .hero-image {
    height: 60vw;
  }
  br.desktop-break {
    display: none;
  }
}
/*--------------- Willkommen ---------------*/
.welcome-section {
  background: var(--white);
}
.welcome-copy p {
  margin-bottom: 1rem;
}
.welcome-copy p:last-child {
  margin-bottom: 0;
}
.text-green {
  color: var(--green);
}
.welcome-image {
  position: relative;
  isolation: isolate;
  width: 100%;
  aspect-ratio: .78;
}
.welcome-image::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--yellow);
  border-radius: 44% 56% 48% 52% / 36% 42% 58% 64%;
  transform: translate(18px, -4px);
}
.welcome-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 44% 56% 48% 52% / 36% 42% 58% 64%;
}
.welcome-claim {
  margin: clamp(4rem, 6vw, 6rem) 0 0;
  font-family: 'fraunces';
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.25;
  text-align: center;
  color: var(--green);
}
@media (max-width: 991.98px) {
  .welcome-image {
    width: min(430px, 90%);
    margin: 3rem auto 0;
  }
  .welcome-claim {
    margin-top: 3.5rem;
  }
}
@media (max-width: 575.98px) {
  .welcome-image {
    width: calc(100% - 1.5rem);
  }
  .welcome-image::before {
    transform: translate(10px, -3px);
  }
  .welcome-claim br {
    display: none;
  }
}
/*--------------- Über mich ---------------*/
.about-section {
  position: relative;
}
.about-divider {
  width: 1px;
  height: 100%;
  min-height: 440px;
  background: var(--lightgreen);
}
.about-profile {
  position: relative;
  min-height: 440px;
  overflow: hidden;
}
.about-profile-content {
  position: relative;
  z-index: 2;
}
.about-profile h3 {
  margin-bottom: .5rem;
  color: var(--green);
  margin-top: 60px;
}
.about-role {
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  color: var(--lightgreen);
}
.about-qualifications {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-qualifications li {
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1.6rem;
}
.about-qualifications li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}
.about-plant {
  position: absolute;
  z-index: 1;
  top: -2rem;
  right: 2rem;
  width: min(70%, 430px);
  height: auto;
  opacity: .12;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .about-profile {
    min-height: 0;
    margin-top: 4rem;
  }
  .about-role {
    margin-bottom: 2rem;
  }
  .about-plant {
    width: 320px;
    right: -2rem;
    top: 0;
  }
}
@media (max-width: 575.98px) {
  .about-plant {
    display: none;
  }
  .about-profile {
    margin-top: 3rem;
  }
  .about-qualifications li {
    margin-bottom: 1.2rem;
  }
}
/*--------------- Angebote ---------------*/
.offers-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.offers-feature-image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: clamp(380px, 32vw, 520px);
  height: clamp(400px, 34vw, 560px);
}
.offers-feature-image::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 0 -14px -14px;
  background: var(--yellow);
  clip-path: url("#offersClip");
  -webkit-clip-path: url("#offersClip");
}
.offers-feature-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: url("#offersClip");
  -webkit-clip-path: url("#offersClip");
}
.offers-intro p {
  margin-bottom: 1rem;
}
.offers-kicker {
  margin: 3.5rem 0 1.5rem;
}
.offers-section .container {
  position: relative;
  z-index: 2;
}
.offer-item {
  margin-bottom: 2.5rem;
}
.offer-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  border-radius: 8px;
}
.offer-image-top {
  object-position: center 20%;
}
.offer-content {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.2rem;
  align-items: stretch;
}
.offer-number {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-right: 1rem;
  border-right: 1px solid var(--yellow);
  font-family: 'fraunces';
  font-size: 3rem;
  line-height: 1;
  color: var(--yellow);
}
.offer-text h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
}
.offer-text dl {
  margin: 0;
  font-size: 1rem;
}
.offer-text dl > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: .75rem;
  margin-bottom: .6rem;
}
.offer-text dt {
  font-family: 'manropebold';
}
.offer-text dd {
  margin: 0;
}
.offers-claim {
  margin: 3rem 0 0;
  font-family: 'fraunces';
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.25;
  text-align: center;
  color: var(--green);
}
@media (max-width:1199.98px) {
  .offer-image {
    aspect-ratio: 1.5 / 1;
  }
}
@media (max-width: 991.98px) {
  .offers-kicker {
    margin-top: 3rem;
  }
  .offer-item {
    margin-bottom: 3rem;
  }
  .offer-content {
    margin-top: 1.5rem;
    grid-template-columns: 58px 1fr;
  }
  .offer-number {
    font-size: 2.5rem;
  }
  .offer-text h3 {
    font-size: 1.8rem;
  }
  .offer-image {
    aspect-ratio: 2.5 / 1;
  }
}
@media (max-width: 575.98px) {
  .offer-content {
    grid-template-columns: 48px 1fr;
    gap: .8rem;
  }
  .offer-text dl > div {
    grid-template-columns: 1fr;
    gap: .1rem;
  }
  .offer-image {
    aspect-ratio: 1.8 / 1;
  }
  .offers-claim br {
    display: none;
  }
}
/*--------------- Kontakt ---------------*/
.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: var(--section-space);
}
.contact-content {
  position: relative;
  z-index: 2;
}
.contact-intro {
  max-width: 720px;
  margin-bottom: 2rem;
}
.contact-intro a {
  color: var(--blue);
}
.contact-form .form-control {
  min-height: 56px;
  padding: .9rem 1.1rem;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  font-family: 'manrope';
  font-size: 1rem;
  color: var(--darkgreen);
  box-shadow: none;
}
.contact-form textarea.form-control {
  min-height: 170px;
  resize: vertical;
}
.contact-form .form-control:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
  box-shadow: none;
}
.required-field {
  position: relative;
}
.required-field::before {
  content: "";
  position: absolute;
  z-index: 3;
  left: .65rem;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateY(-50%);
  pointer-events: none;
}
.required-field .form-control {
  padding-left: 1.4rem;
}
.textarea-field::before {
  top: 1.35rem;
  transform: none;
}
.privacy-check {
  margin-top: 1.5rem;
  padding-left: 1.8rem;
}
.privacy-check .form-check-input {
  width: 1rem;
  height: 1rem;
  margin-top: .3rem;
  border: 1px solid var(--green);
  border-radius: 2px;
}
.privacy-check .form-check-input:checked {
  background-color: var(--green);
  border-color: var(--green);
}
.privacy-check .form-check-label {
  font-size: .95rem;
  line-height: 1.5;
}
.privacy-check a, .privacy-note a {
  color: var(--green);
  text-decoration: underline;
}
.privacy-note {
  margin: .8rem 0 0 1.8rem;
  font-size: .9rem;
  line-height: 1.5;
}
.contact-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.contact-image {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 44%;
  overflow: hidden;
  clip-path: url("#heroClip");
  -webkit-clip-path: url("#heroClip");
}
.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/*--------------- Footer ---------------*/
.site-footer {
  background: var(--green);
  color: var(--white);
  font-size: .85rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-block: .8rem;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.footer-links a {
  color: var(--white);
  font-family: 'manropebold';
  text-transform: uppercase;
}
.footer-links a:hover {
  color: var(--yellow);
  background: transparent;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-left: .5rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1;
}
.footer-social a:hover {
  color: var(--yellow);
  background: transparent;
}
@media (max-width:767.98px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    flex-wrap: wrap;
  }
}
@media (max-width: 991.98px) {
  .contact-section {
    padding-block: clamp(4rem, 8vw, 6rem);
  }
  .contact-submit {
    justify-content: flex-start;
  }
}
@media (max-width: 575.98px) {
  .contact-form .form-control {
    min-height: 52px;
  }
  .privacy-note {
    margin-left: 0;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*--------------- Back to top ---------------*/
.back-to-top {
  position: fixed;
  z-index: 1000;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--green);
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  color: var(--yellow);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}
@media (max-width: 575.98px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 42px;
    height: 42px;
    font-size: 2.3rem;
  }
}
/*--------------- Rechtliche Seiten ---------------*/
.legal-header {
  background: var(--greygreen);
}
.legal-header .navbar {
  padding-block: 1.5rem;
}
.legal-header .navbar-brand img {
  display: block;
  width: 120px;
  height: auto;
}
.legal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-back {
  color: var(--green);
  font-size: smaller;
}
.legal-back:hover {
  color: var(--blue);
  background: transparent;
}
.legal-section {
  background: var(--white);
}
.legal-content {
  max-width: 850px;
}
.legal-content ul, .legal-content ol {
  font-family: 'manrope';
  font-size: 1rem;
  line-height: 1.55;
}
.legal-content li {
  margin-bottom: .4rem;
}
.legal-content h3 {
  margin: 2.5rem 0 .8rem;
  font-size: clamp(1.8rem, 4vw, 2rem);
  color: var(--green);
}
.legal-content p {
  margin-bottom: 1.2rem;
}
.legal-content a {
  color: var(--blue);
}
.legal-content a:hover {
  color: var(--green);
  background: transparent;
}
@media (max-width:575.98px) {
  .legal-header .navbar-brand img {
    width: 90px;
  }
  .legal-back {
    font-size: .9rem;
  }
}
/*--------------- AI generated ---------------*/
.offer-image-wrap {
  position: relative;
}
.ai-label {
  position: absolute;
  right: .65rem;
  bottom: .65rem;
  width: 82px;
  height: auto;
  z-index: 2;
}
@media (max-width:575.98px) {
  .ai-label {
    right: .5rem;
    bottom: .5rem;
    width: 70px;
  }
}
/*--------------- Message feedback ---------------*/
.form-message {
  display: none;
  margin: 0 0 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-family: 'manropebold';
}
.form-message.is-success, .form-message.is-error {
  display: block;
}
.form-message.is-success {
  background: #eef3e6;
  color: var(--green);
}
.form-message.is-error {
  background: #f8eaea;
  color: #8b2b2b;
}