/* -------------------------------------------------------
  CSS RESET & NORMALIZE (MOBILE-FIRST, FLEX ONLY)
---------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  vertical-align: baseline;
}
body {
  min-height: 100vh;
  color: #222;
  background: #F7F3EF;
  font-family: "Georgia", serif;
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #17574A;
  text-decoration: none;
  transition: color .2s;
}
a:hover,
a:focus {
  color: #7DBB66;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.25em;
}
li + li {
  margin-top: 0.5em;
}
strong {
  font-weight: 600;
}
hr {
  border: 0;
  border-top: 1px solid #E6DED6;
  margin: 32px 0;
}

/* -------------------------------------------------------
  BASE TYPOGRAPHY
---------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Georgia", serif;
  color: #17574A;
  letter-spacing: .01em;
  margin-bottom: .4em;
  font-weight: 700;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.12;
  margin-bottom: .75em;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: .65em;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: .5em;
}
h4, h5, h6 {
  font-size: 1.14rem;
  margin-bottom: .35em;
}
p, .subheadline {
  margin-bottom: 1.15em;
}
.subheadline {
  font-family: "Georgia", serif;
  font-size: 1.1rem;
  color: #43685F;
}
.text-section {
  margin-bottom: 1.8em;
}
.text-section p {
  margin-bottom: 1.1em;
}

/* -------------------------------------------------------
  LAYOUT CONTAINERS & FLEX SECTION PATTERNS
---------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ---- Section Spacing Patterns ---- */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section, section {
    padding: 22px 8px;
    margin-bottom: 32px;
  }
}

/* Card container grid */
.card-container,
.teaser-grid,
.stat-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card,
.stat {
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(23,87,74,0.12);
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  padding: 20px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 7px rgba(23,87,74,0.07);
  margin-bottom: 8px;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(23,87,74,0.13);
}

/* ----------------------------------------------
  NAV HEADER STYLES + BURGER MENU
-----------------------------------------------*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(23,87,74,0.06);
  padding: 0;
  margin-bottom: 0;
  z-index: 80;
  position: relative;
}
header .container {
  padding-top: 14px;
  padding-bottom: 14px;
}
header .content-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: "Georgia", serif;
  font-size: 1rem;
  color: #17574A;
  opacity: 0.85;
  padding: 7px 10px;
  border-radius: 10px;
  font-weight: 500;
  transition: background 0.2s, color 0.18s;
}
header nav a.cta {
  background: #17574A;
  color: #fff;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 18px;
  margin-left: 10px;
  letter-spacing: 0.08em;
  transition: background 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 5px rgba(23,87,74,0.05);
}
header nav a.cta:hover,
header nav a.cta:focus {
  background: #7DBB66;
  color: #fff;
  box-shadow: 0 4px 12px rgba(23,87,74,0.16);
}
header nav a.active,
header nav a:hover,
header nav a:focus {
  background: #F7F3EF;
  color: #17574A;
  opacity: 1;
}
header img {
  min-height: 36px;
  max-height: 49px;
  margin-right: 16px;
}
button.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #17574A;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 14px;
  margin-left: 8px;
  z-index: 112;
  border-radius: 8px;
  transition: background .18s;
}
button.mobile-menu-toggle:focus,
button.mobile-menu-toggle:hover {
  background: #E6DED6;
}

/* ---- Burger menu for mobile ---- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #F7F3EF;
  z-index: 999;
  flex-direction: column;
  transition: transform .32s cubic-bezier(.61,.04,.21,1), opacity .22s;
  will-change: transform;
  transform: translateX(100%);
  box-shadow: -2px 0 16px rgba(23,87,74,0.16);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0s;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #17574A;
  margin: 18px 25px 0 0;
  padding: 8px 10px;
  background: none;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background .18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #E6DED6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 18px 0 0 36px;
}
.mobile-nav a {
  font-family: "Georgia", serif;
  font-size: 1.22rem;
  color: #17574A;
  padding: 9px 11px;
  border-radius: 9px;
  font-weight: 600;
  transition: background .15s, color .15s;
  margin-bottom: 4px;
}
.mobile-nav a.active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #7DBB66;
  color: #fff;
}
@media (max-width: 1010px) {
  header nav {
    display: none;
  }
  button.mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (max-width: 768px) {
  header .content-wrapper {
    flex-direction: row;
    gap: 10px;
  }
}

/* ----------------------------------------------
  HERO & SECTION ELEMENTS
-----------------------------------------------*/
.teaser-grid {
  gap: 24px;
  margin-bottom: 16px;
}
.teaser-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #fff;
  box-shadow: 0 2px 8px rgba(23,87,74,0.10);
  border-radius: 16px;
  padding: 26px 20px 18px 24px;
  min-width: 220px;
  max-width: 310px;
  min-height: 160px;
  gap: 8px;
  transition: box-shadow 0.2s, transform 0.16s;
  margin-bottom: 20px;
  border: 1px solid #ece6df;
  position: relative;
}
.teaser-card:hover,
.teaser-card:focus-within {
  box-shadow: 0 4px 18px rgba(23,87,74,0.16);
  transform: translateY(-3px) scale(1.015);
  z-index: 2;
}
.teaser-card h3 {
  font-size: 1.20rem;
  font-family: "Georgia", serif;
  color: #17574A;
  margin-bottom: 0.60em;
  font-weight: 600;
}
.teaser-card .tag {
  display: inline-block;
  background: #7DBB66;
  color: #fff;
  font-family: "Montserrat", 'Georgia', serif;
  font-size: .98rem;
  font-weight: 600;
  border-radius: 9px;
  padding: 4px 13px;
  margin-top: 8px;
  align-self: flex-start;
  letter-spacing: 0.08em;
}
.tag-filter {
  margin-top: 12px;
  font-size: 1.04rem;
  color: #6A7672;
  font-family: "Georgia", serif;
}

/* ----------------------------------------------
  ICON LISTS, FEATURES
-----------------------------------------------*/
ul {
  list-style: disc inside;
  margin-bottom: 1.2em;
}
section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 38px;
  margin-left: 0;
  align-items: flex-start;
}
section ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-direction: column;
  font-family: "Georgia", serif;
  gap: 13px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 5px rgba(30,60,40,0.10);
  min-width: 255px;
  padding: 18px 20px 15px 20px;
  font-size: 1.08rem;
  color: #222;
  transition: box-shadow 0.19s;
  margin-bottom: 9px;
}
section ul li img {
  width: 28px;
  height: 28px;
  margin-right: 6px;
}
section ul li:hover,
section ul li:focus-within {
  box-shadow: 0 3px 13px rgba(23,87,74,0.13);
}
@media (max-width: 820px) {
  section ul {
    flex-direction: column;
    gap: 16px;
  }
}

/* ----------------------------------------------
  TESTIMONIALS & COMMUNITY
-----------------------------------------------*/
.testimonial-card {
  background: #fff;
  color: #222;
  border: 1px solid #ece6df;
  font-family: "Georgia", serif;
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 0;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #17574A;
  margin-bottom: 1em;
  line-height: 1.6;
  font-family: "Georgia", serif;
  font-size: 1rem;
}
.testimonial-name {
  font-weight: 600;
  color: #43685F;
  font-size: 1.05rem;
}
.testimonial-rating {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5px;
  margin-left: 5px;
}
.testimonial-rating img {
  width: 20px; height: 20px;
}

/* ----------------------------------------------
  CTA BUTTONS
-----------------------------------------------*/
.cta {
  display: inline-flex;
  background: #17574A;
  color: #fff !important;
  font-family: "Montserrat", 'Georgia', serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 12px 28px;
  font-size: 1.10rem;
  letter-spacing: 0.07em;
  margin-top: 12px;
  box-shadow: 0 2px 8px rgba(23,87,74,0.07);
  border: none;
  cursor: pointer;
  transition: background 0.16s, transform 0.16s, box-shadow .16s;
  align-items: center;
  text-align: center;
}
.cta:hover,
.cta:focus {
  background: #7DBB66;
  color: #fff !important;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 16px rgba(125,187,102,0.12);
  text-decoration: none;
}

/* ----------------------------------------------
  CONTACT & MAP SNIPPETS
-----------------------------------------------*/
.contact-snippet,
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  margin-bottom: 21px;
  font-size: 1.07rem;
}
.contact-snippet img,
.contact-details img {
  width: 21px;
  height: 21px;
  margin-right: 11px;
  vertical-align: middle;
}
.map-embed {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border-radius: 9px;
  padding: 12px 16px;
  margin-bottom: 23px;
  box-shadow: 0 1px 5px rgba(30,60,40,0.07);
  font-size: 1.02rem;
  color: #43685F;
}
.map-embed img {
  width: 32px; height: 32px;
}

/* ---------------------------------------------
  STATS, VALUES & MISC
----------------------------------------------*/
.stat-blocks {
  gap: 24px;
  margin-bottom: 0;
  margin-top: 5px;
}
.stat {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 7px rgba(23,87,74,0.09);
  padding: 22px 34px;
  min-width: 170px;
  text-align: center;
  font-family: "Georgia", serif;
}
.stat strong {
  display: block;
  font-size: 2.2rem;
  color: #17574A;
  margin-bottom: .25em;
  font-weight: 700;
}
.stat span {
  font-size: 1rem;
  color: #4A6557;
}
@media (max-width: 650px) {
  .stat-blocks { flex-direction: column; }
}

.trust-elements {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-top: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.trust-elements span {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #E6DED6;
  color: #17574A;
  border-radius: 7px;
  font-size: .98rem;
  font-family: "Georgia", serif;
  font-weight: 600;
  padding: 7px 14px;
}
.trust-elements img {
  width: 21px;
  height: 21px;
}

.hours-details p {
  font-size: 1.08rem;
  color: #17574A;
  margin-bottom: 0.5em;
}

/* ----------------------------------------------
  FOOTER
-----------------------------------------------*/
footer {
  width: 100%;
  background: #17574A;
  color: #fff;
  padding: 0;
  margin-top: 24px;
  font-family: "Georgia", serif;
  font-size: 1rem;
}
footer .container {
  padding-top: 28px;
  padding-bottom: 28px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}
footer a,
footer nav a {
  color: #fff;
  opacity: 0.86;
  padding: 0 5px;
  font-size: 1rem;
  transition: opacity 0.16s, color 0.19s;
  font-family: "Georgia", serif;
}
footer nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
footer nav a:hover,
footer nav a:focus {
  text-decoration: underline;
  color: #7DBB66;
  opacity: 1;
}
footer .brand-info {
  font-size: .98rem;
  opacity: 0.93;
  margin-bottom: 10px;
}
footer .social-links {
  display: flex;
  gap: 10px;
}
footer .social-links a img {
  width: 28px;
  height: 28px;
  opacity: 0.75;
  transition: opacity .13s;
}
footer .social-links a:hover img,
footer .social-links a:focus img {
  opacity: 1;
}
footer img {
  width: 49px;
  height: 49px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer nav { gap: 14px; }
}

/* ----------------------------------------------
  COOKIE CONSENT BANNER & MODAL
-----------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #17574A;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 22px 17px 22px 17px;
  box-shadow: 0 -2px 18px 0 rgba(23,87,74,0.10);
  z-index: 2000;
  min-height: 60px;
  gap: 20px;
  animation: fadeInCookie 0.7s;
}
@keyframes fadeInCookie {
  from {opacity: 0; transform: translateY(45px);}
  to {opacity: 1; transform: translateY(0);}
}
.cookie-banner__text {
  font-size: 1rem;
  color: #18443b;
  font-family: "Georgia", serif;
  margin-right: 18px;
  max-width: 520px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 10px 22px;
  border-radius: 12px;
  font-family: "Montserrat", 'Georgia', serif;
  font-size: 1rem;
  font-weight: 700;
  border: 0;
  margin-left: 2px;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(23,87,74,0.07);
  transition: background 0.17s, color 0.11s;
}
.cookie-btn.accept {
  background: #17574A;
  color: #fff;
}
.cookie-btn.reject {
  background: #7DBB66;
  color: #fff;
}
.cookie-settings-btn {
  background: #fff;
  color: #17574A;
  border: 1px solid #E6DED6;
  margin-right: 2px;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #7DBB66;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #E6DED6;
  color: #17574A;
}
.cookie-settings-btn:hover,
.cookie-settings-btn:focus {
  background: #E6DED6;
}

/* --- Cookie Modal --- */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2100;
  background: rgba(23,87,74,0.15);
  justify-content: center;
  align-items: center;
  animation: fadeInCookie 0.7s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal__box {
  background: #fff;
  border-radius: 18px;
  min-width: 320px;
  max-width: 99vw;
  padding: 38px 35px 24px 35px;
  box-shadow: 0 8px 38px rgba(23,87,74,0.17);
  font-family: "Georgia", serif;
  color: #18443b;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal__close {
  position: absolute;
  right: 18px; top: 17px;
  font-size: 2rem;
  color: #17574A;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 9px;
  padding: 4px 9px;
  transition: background .17s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #E6DED6;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F7F3EF;
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 1rem;
}
.cookie-category label {
  font-family: "Georgia", serif;
  font-weight: 600;
  margin-right: 14px;
  min-width: 135px;
  color: #17574A;
}
.cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: #7DBB66;
  margin-right: 7px;
}
.cookie-category--essential label:after {
  content: " (immer aktiv)";
  color: #6A7672;
  font-size: .96em;
  font-weight: 400;
  margin-left: 3px;
}
.cookie-modal__actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ----------------------------------------------
  MEDIA QUERIES (RESPONSIVE)
-----------------------------------------------*/
@media (max-width: 940px) {
  .teaser-grid {
    justify-content: center;
  }
  .teaser-card {
    min-width: 190px;
    max-width: 96vw;
    padding: 18px 12px 15px 13px;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 7px;
  }
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.04rem; }
  .content-wrapper, footer .content-wrapper {
    gap: 15px;
  }
  .section, section {
    padding: 12px 1px;
    margin-bottom: 20px;
  }
  .stat {
    min-width: 70vw;
    padding: 14px 12px;
  }
}
@media (max-width: 500px) {
  .teaser-card { padding: 13px 7px; min-width: 120px; }
  .testimonial-card { flex-direction: column; gap: 8px; padding: 13px 8px; }
  .brand-info { font-size: .9rem; }
  .trust-elements { gap: 9px; }
  .hours-details p { font-size: .97rem; }
}

/* ----------------------------------------------
  MICRO-ANIMATIONS & MISC
-----------------------------------------------*/
button, .cta, .cookie-btn, .cookie-settings-btn {
  transition: background .16s, color .16s, box-shadow .14s, transform .16s;
}

/**** END OF MAIN STYLE FILE ****/
