/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f6eddc;
  color: #375c2f;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 10px;
  line-height: 1.6;
}
a {
  color: #375c2f;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #60a088;
  outline: none;
}

/* HEADINGS, TYPOGRAPHY */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #375c2f;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #375c2f;
  margin-bottom: 20px;
  font-weight: 600;
}
h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #375c2f;
  margin-bottom: 14px;
  font-weight: 500;
}
h4, h5, h6 {
  font-family: 'Roboto', Arial, sans-serif;
  color: #375c2f;
  font-weight: 500;
}
p {
  font-size: 1rem;
  color: #375c2f;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 600;
  color: #375c2f;
}
small {
  font-size: 0.92em;
  color: #60a088;
}

/* CONTAINERS & FLEX SPACING */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 2px 16px 0 rgba(55,92,47,0.06);
}

.content-wrapper, .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.text-section {
  padding: 0 4px 0 0;
}

.feature-grid, .card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.feature-grid {
  list-style: none;
  padding-left: 0;
  align-items: flex-start;
}
.card-container {
  gap: 24px;
}
.card {
  background: #f6eddc;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(55,92,47,0.08);
  margin-bottom: 20px;
  padding: 26px 22px;
  position: relative;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(55,92,47,0.15);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f6eddc;
  border-radius: 20px 60px 20px 36px;
  box-shadow: 0 2px 12px 0 rgba(55,92,47,0.09);
  margin-bottom: 20px;
  min-height: 120px;
  transition: box-shadow 0.25s, background 0.22s;
}
.testimonial-card:hover {
  background: #e9e3d1;
  box-shadow: 0 4px 20px 0 rgba(55,92,47,0.16);
}
.testimonial-content p {
  color: #222;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.testimonials-stars {
  color: #d7a63e;
  letter-spacing: 2px;
  margin-right: 8px;
  font-size: 1.2rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER, NAV & MOBILE MENU */
header {
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 18px;
  box-shadow: 0 2px 12px 0 rgba(55,92,47,0.10);
  position: relative;
  z-index: 21;
}
header > a img {
  height: 48px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 0;
  border-radius: 5px;
  color: #375c2f;
  transition: background 0.19s, color 0.19s;
}
header nav a:hover, header nav a:focus {
  background: #e3e7da;
  color: #60a088;
}
header .cta-primary {
  margin-left: 20px;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #375c2f;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  transition: color 0.2s, transform 0.2s;
  z-index: 22;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #60a088;
  transform: scale(1.07);
}

@media (max-width: 1025px) {
  header nav {
    gap: 13px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 900px) {
  header nav a {
    font-size: 0.95rem;
    padding: 5px 0;
  }
  header > a img {
    height: 40px;
  }
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 16px 8px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .cta-primary {
    display: none;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(246,237,220,0.97);
  box-shadow: 0 0 80px 0 rgba(55,92,47,0.18);
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.64,.09,.31,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 18px 18px 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #e2ddca;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  color: #375c2f;
  cursor: pointer;
  padding: 6px 10px;
  align-self: flex-end;
  margin-bottom: 0;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #d7dac6;
  color: #60a088;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}
.mobile-nav a {
  display: block;
  font-size: 1.15rem;
  color: #375c2f;
  padding: 14px 8px 12px 12px;
  border-radius: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  background: none;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e3e7da;
  color: #60a088;
}

@media (max-width: 500px) {
  .mobile-menu {
    padding: 17px 3vw 8vw 3vw;
  }
  .mobile-menu-close {
    font-size: 1.6rem;
    padding: 5px 8px;
  }
  .mobile-nav a {
    font-size: 1.05rem;
    padding: 11px 5px 9px 9px;
  }
}

/* CTA BUTTONS */
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.14rem;
  padding: 13px 30px;
  border-radius: 33px 12px 30px 19px;
  background: #375c2f;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 rgba(55,92,47,0.09);
  transition: background 0.23s, box-shadow 0.18s, transform 0.15s;
  margin-top: 14px;
  text-align: center;
}
.cta-primary:hover, .cta-primary:focus {
  background: #60a088;
  color: #fff;
  transform: scale(1.035) translateY(-1px);
  box-shadow: 0 4.5px 20px 0 rgba(55,92,47,0.14);
  outline: none;
}
.cta-secondary {
  background: #fff;
  color: #375c2f;
  border: 2px solid #375c2f;
  border-radius: 12px 30px 20px 29px;
  padding: 10px 22px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 1.5px 6px 0 rgba(55,92,47,0.08);
  cursor: pointer;
  transition: background 0.19s, color 0.19s, border 0.19s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #f6eddc;
  color: #375c2f;
  border: 2px solid #60a088;
  outline: none;
}

/* FOOTER */
footer {
  background: #375c2f;
  color: #fff;
  padding: 44px 0 14px 0;
  width: 100%;
}
.footer-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  background: #e6ece0;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #e6ece0;
  font-size: 1rem;
  transition: color .17s;
}
footer nav a:hover, footer nav a:focus {
  color: #60a088;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.98rem;
}
.footer-contact img {
  vertical-align: middle;
  background: transparent;
  height: 22px;
  width: 22px;
  margin-right: 8px;
}
footer p, footer a {
  color: #fff;
}

/* RESPONSIVE FOOTER */
@media (max-width: 900px) {
  .footer-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ORGANIC SHAPES & DECORATIVE ELEMENTS */
.section, .card, .testimonial-card, .cta-primary, .cta-secondary {
  border-radius: 20px 60px 20px 36px;
}
.feature-grid li {
  background: #e7e2c8;
  border-radius: 24px 24px 16px 32px;
  box-shadow: 0 1.5px 12px rgba(97,145,99,0.08);
  padding: 22px 17px 18px 17px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.19s, background 0.15s;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.feature-grid li:hover {
  background: #f6eddc;
  box-shadow: 0 2.5px 20px rgba(55,92,47,0.12);
}
.feature-grid img {
  height: 38px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 16px 22px 16px 11px;
  box-shadow: 0 0.5px 4.5px rgba(97,145,99,.07);
}

/* LISTS & SPECIAL TYPO */
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
ul li, ol li {
  padding-left: 2px;
  margin-bottom: 9px;
}

/* FORMS & INPUTS (if present on Kontakt, etc.) */
input, textarea, select {
  border-radius: 14px 28px 12px 20px;
  border: 1.5px solid #cddcb4;
  padding: 11px 13px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  color: #375c2f;
  transition: border 0.15s;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
}
input:focus, textarea:focus, select:focus {
  border-color: #60a088;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 18px 14px 18px;
  background: #fffbe9;
  border-top: 2px solid #bfcfb1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  z-index: 1200;
  box-shadow: 0 -2px 18px rgba(55,92,47,0.18);
  transition: transform 0.32s cubic-bezier(.75,.03,.43,1.01), opacity 0.22s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #375c2f;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 7px;
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.cookie-btn-accept {
  background: #375c2f;
  color: #fff;
  border: none;
  border-radius: 23px 9px 23px 20px;
  padding: 9px 23px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.19s, transform 0.12s;
  box-shadow: 0 1.5px 8px 0 rgba(55,92,47,0.08);
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #60a088;
  color: #fff;
  transform: scale(1.055);
}
.cookie-btn-reject {
  background: #fff;
  color: #375c2f;
  border: 2px solid #60a088;
  border-radius: 23px 16px 17px 23px;
  padding: 9px 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.16s, border 0.16s, color 0.17s, transform 0.12s;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #e7e2c8;
  color: #375c2f;
  border-color: #375c2f;
  transform: scale(1.03);
}
.cookie-btn-settings {
  background: #e7e2c8;
  color: #375c2f;
  border: 2px solid #bfcfb1;
  border-radius: 16px 23px 18px 23px;
  padding: 8px 18px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.16s, border 0.17s, color 0.15s, transform 0.12s;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #cddcb4;
  color: #375c2f;
  border-color: #60a088;
  transform: scale(1.03);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0;top: 0;right: 0;bottom: 0;
  background: rgba(55,92,47,0.39);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.18s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fffbe9;
  border-radius: 28px 60px 24px 28px;
  padding: 36px 32px 28px 32px;
  min-width: 290px;
  max-width: 95vw;
  box-shadow: 0 2px 34px 0 rgba(55,92,47,0.25);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  position: relative;
  gap: 18px;
  animation: modalPop 0.38s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes modalPop {
  0% { transform: scale(0.7) translateY(50px); opacity: 0;}
  100% { transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: #e2ddca;
  border: none;
  font-size: 1.3rem;
  color: #375c2f;
  border-radius: 50%;
  padding: 5px 11px;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e9e3d1;
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 7px;
  color: #375c2f;
}
.cookie-modal .cookie-category-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #375c2f;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #cddcb4;
  border-radius: 13px;
  transition: background 0.17s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  background: #60a088;
}
.cookie-modal .toggle-slider:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.19s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(16px);
}

/* MODAL BUTTON ROW */
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
  width: 100%;
}

@media (max-width: 600px) {
  .cookie-modal-content {
    padding: 16px 7vw 16px 7vw;
    min-width: 0;
    max-width: 100vw;
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1025px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 23px 6px;
    margin-bottom: 38px;
  }
  .feature-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-section {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.10rem;
    margin-bottom: 12px;
  }
  .card, .testimonial-card {
    padding: 14px 7px;
  }
}

/* ORGANIC MISC */
hr {
  border: none;
  border-bottom: 1.5px solid #e7e2c8;
  margin: 32px 0;
}
::-webkit-scrollbar {
  width: 10px;
  background: #e7e2c8;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb {
  background: #bfcfb1;
  border-radius: 12px;
}

/* Z-INDEX/NO ABSOLUTE for CARDS: except for deco elements (modal close) */
/* Ensure .card and .testimonial-card never use position:absolute, they're always relative w/ adequate margin */

/* ACCESSIBILITY, SELECTION & FOCUS */
:focus-visible {
  outline: 2px solid #60a088;
  outline-offset: 2px;
}
::selection {
  background: #cddcb4;
  color: #375c2f;
}

/* MICRO-INTERACTIONS */
.card, .testimonial-card, .feature-grid li {
  transition: box-shadow 0.2s, background 0.17s, transform 0.19s;
}
.card:hover, .card:focus, .testimonial-card:hover, .feature-grid li:hover {
  box-shadow: 0 6px 20px 0 rgba(55,92,47,0.13);
  background: #e9e3d1;
  transform: translateY(-2px) scale(1.03);
}

/* SPACING & FLEXBOX COMPLIANCE: ENFORCED BELOW */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* MOBILE FLEX DIRECTION RULES */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}

/* PRINT SUPPORT */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #222; }
  a { color: #222; text-decoration: underline; }
}

/* LOAD GOOGLE FONTS fallback: (add to HTML <head>)
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Roboto:wght@400;500&display=swap" rel="stylesheet"> */