/* =========================================================
   CSS RESET & BASELINE NORMALIZATION
   ========================================================= */
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;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F4F1EC;
  color: #374126;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #37834a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5F7D3A;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: inherit;
  cursor: pointer;
}

/* ===============================
   BRAND TYPOGRAPHY
   =============================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #2C321D;
  font-weight: 700;
  letter-spacing: 0.005em;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.375rem; line-height: 1.2; margin-bottom: 14px; }
h4 { font-size: 1.125rem; line-height: 1.3; margin-bottom: 12px; }
p, ul, ol, li, dl, dt, dd {
  color: #374126;
  font-family: 'Roboto', Arial, sans-serif;
}
strong, b {
  font-weight: 700;
  color: #2C321D;
}

/* ===============================
   COLOR PALETTE FOR NATURE ORGANIC
   =============================== */
:root {
  /* Brand colors */
  --c-primary: #262C38;
  --c-secondary: #8D9299;
  --c-accent: #EAD890;
  /* Earthy palette */
  --c-sage: #A2B29F;
  --c-forest: #689974;
  --c-olive: #5F7D3A;
  --c-bark: #927044;
  --c-sand: #F4F1EC;
  --c-white: #FFFFFF;
  --c-dark: #263417;
}

/* ===============================
   FLEX LAYOUT UTILITY CLASSES
   =============================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* ===============================
   HEADER & NAVIGATION (incl. burger)
   =============================== */
header {
  background: var(--c-white);
  box-shadow: 0 2px 12px 0 rgba(102,102,50,0.11);
  position: sticky;
  top: 0;
  z-index: 1020;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 18px;
  background: #F6F6F3;
  padding: 4px 8px;
  box-shadow: 0 2px 10px 0 rgba(180,170,101,0.08);
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--c-forest);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 5px 2px;
  border-radius: 4px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--c-accent);
  color: var(--c-dark);
}

.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(90deg, #A2B29F 60%, #EAD890 100%);
  border: none;
  color: var(--c-dark);
  padding: 12px 34px;
  border-radius: 36px;
  box-shadow: 0 3px 24px 0 rgba(87,107,68,0.07);
  margin-left: 14px;
  transition: background 0.18s, color 0.18s, transform 0.15s;
  letter-spacing: 0.01em;
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #EAD890 60%, #A2B29F 100%);
  color: var(--c-forest);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: var(--c-accent);
  color: var(--c-dark);
  border-radius: 12px;
  padding: 13px 17px 10px 17px;
  margin-left: 10px;
  border: none;
  transition: background 0.21s, color 0.21s;
  font-size: 1.5rem;
  line-height: 1;
  z-index: 2000;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--c-forest);
  color: var(--c-accent);
}

/* ===============================
 MOBILE BURGER MENU (OFFCANVAS)
 =============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(244,241,236,0.97);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 0 32px 0 rgba(111,120,65,0.18);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.60, 0.01, 0.48, 1.04);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  padding: 18px 25px;
  background: none;
  color: var(--c-dark);
  border: none;
  margin: 0 12px 0 0;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: color 0.19s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: var(--c-olive);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
  margin-top: 32px;
  padding-left: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--c-forest);
  background: none;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 13px 10px 13px 8px;
  margin-bottom: 5px;
  letter-spacing: 0.015em;
  width: 95%;
  outline: none;
  transition: background 0.19s, color 0.19s;
  position: relative;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--c-accent);
  color: var(--c-dark);
}

/* ===============================
   SECTIONS - LAYOUT & SPACING
   =============================== */
main {
  background: var(--c-sand);
  min-height: 70vh;
}
.section, .features, .about, .services, .team, .hero, .testimonials, .contact, .cta, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 40px;
  background: var(--c-white);
  box-shadow: 0 8px 48px 0 rgba(100,110,65,0.07);
}

.section:last-child, .features:last-child, .about:last-child,
.services:last-child, .team:last-child, .hero:last-child, .testimonials:last-child, .cta:last-child, .legal:last-child {
  margin-bottom: 0;
}

.hero {
  background: linear-gradient(118deg, #F4F1EC 80%, #e7e1c7 100%);
  min-height: 230px;
  text-align: left;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
.hero h1 {
  color: var(--c-forest);
  margin-bottom: 0.5em;
}
.hero p {
  max-width: 500px;
  color: #5F6446;
  font-size: 1.13rem;
  margin-bottom: 1em;
}

.features .content-wrapper, .about .content-wrapper,
.services .content-wrapper, .team .content-wrapper, .contact .content-wrapper, .legal .content-wrapper {
  gap: 28px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cta {
  background: linear-gradient(120deg, #fefde3 70%, #EAD890 100%);
  text-align: center;
  border: 0;
  box-shadow: 0 6px 32px 0 rgba(153,153,80,0.09);
  margin-bottom: 0;
  border-radius: 32px;
}
.cta .content-wrapper { align-items: center; }

.cta h2 {
  font-weight: 700;
  color: #356838;
  margin-bottom: 18px;
}

/* ===============================
   CARDS / CONTAINERS / FLEX GRIDS
   =============================== */
.card-container, .card-grid, .feature-grid, .service-list, .testimonial-list, .news-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin: 0 0 20px 0;
  justify-content: space-between;
}
.card {
  background: var(--c-white);
  margin-bottom: 20px;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(151,151,70,0.07);
  position: relative;
  padding: 28px 20px 22px 20px;
  flex: 1 1 270px;
  min-width: 245px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.card-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.feature-grid > li, .feature-grid > div, .service-list > div, .news-list > div {
  background: var(--c-sand);
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 330px;
  border-radius: 22px;
  padding: 30px 22px 26px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 24px 0 rgba(112,120,55,0.07);
  transition: box-shadow 0.17s, transform 0.13s;
  border: 1.5px solid #e2e7d6;
}
.feature-grid > li:hover, .feature-grid > div:hover, .service-list > div:hover, .news-list > div:hover {
  box-shadow: 0 7px 38px 0 rgba(109,137,75,0.16);
  transform: translateY(-2px) scale(1.016);
  border-color: var(--c-accent);
}

.category-list, .event-highlights, .option-descriptions, .updates {
  background: #F6F4EA;
  border-radius: 14px;
  padding: 24px 20px;
  margin: 24px 0 0 0;
  box-shadow: 0 2px 18px rgba(120,134,70,0.06);
  font-size: 1rem;
}
.advantage-points, .usp-list, .commitment-points, .team-members-brief, .advice-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
  margin-bottom: 0;
}
.advantage-points li, .usp-list li, .commitment-points li, .team-members-brief li, .advice-points li {
  background: #ecf3e8;
  color: #426933;
  border-radius: 9px;
  padding: 10px 16px 10px 18px;
  line-height: 1.5;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0;
  box-shadow: 0 1px 9pxrgba(137,159,91,0.04);
}
.advantage-points li:last-child, .usp-list li:last-child, .commitment-points li:last-child,
.team-members-brief li:last-child, .advice-points li:last-child { margin-bottom: 0; }
.brand-values, .brand-values ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.brand-values ul li {
  color: #557C42;
  background: #f3f7ee;
  border-radius: 7px;
  padding: 7px 13px;
  font-weight: 500;
  font-size: 0.98rem;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; }
}

/* ===============================
   TESTIMONIAL CARDS & RATING SUMMARY
   =============================== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7FCCF;
  border-radius: 20px;
  box-shadow: 0 2px 18px 0 rgba(94,108,44, 0.10);
  min-width: 230px;
  max-width: 370px;
  border: 1.5px solid #d1d88a;
  color: #23411f;
  font-size: 1.08rem;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, border 0.11s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(93,121,45,0.15);
  border-color: #a0b76e;
}
.customer-name {
  color: #5F7D3A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.rating-summary {
  color: #2C321D;
  font-weight: 600;
  font-size: 1.12rem;
  margin-top: 20px;
  background: #F6F4EA;
  border-radius: 13px;
  display: inline-block;
  padding: 12px 22px;
  box-shadow: 0 1px 6px 0 rgba(189,210,108,0.07);
}

/* ===============================
   ADDRESS & CONTACT SECTIONS
   =============================== */
address {
  font-style: normal;
  font-size: 1rem;
  color: #43622e;
  margin-bottom: 0;
  display: block;
  line-height: 1.6;
  margin-top: 10px;
}
.contact-details {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}
.directions-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* ===============================
   LEGAL (Datenschutz etc.)
   =============================== */
.legal {
  background: #f5f7f0;
  border-radius: 22px;
  padding: 40px 20px;
  margin-bottom: 60px;
  border: 1.5px solid #dae4c5;
  box-shadow: 0 2px 17px 0 rgba(123,161,104,0.06);
}
.legal .content-wrapper {
  gap: 16px;
}
.legal h1 {
  color: var(--c-forest);
  font-weight: 700;
  margin-bottom: 10px;
}
.legal h2, .legal h3 {
  color: #837E4B;
}
.legal .text-section {
  font-size: 1.06rem;
}

/* ===============================
   FOOTER & SOCIAL ICONS
   =============================== */
footer {
  background: #47523D;
  color: #f6fef7;
  padding: 44px 0 0 0;
}
footer address {
  color: white;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 42px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 16px;
}
.footer-column {
  min-width: 210px;
  max-width: 350px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-column h3 {
  color: #dad555;
  font-size: 1.12rem;
  margin-bottom: 7px;
  font-weight: 700;
}
.footer-column img {
  height: 42px;
  margin-bottom: 10px;
}
.footer-column a {
  color: #abcc7e;
  font-size: 1rem;
  margin-bottom: 4px;
  transition: color 0.15s;
}
.footer-column a:hover {
  color: #fffad1;
}
.footer-copy {
  padding: 18px 0;
  color: #b8d99b;
  font-size: 0.95rem;
  text-align: center;
  background: #38512c;
  border-radius: 0 0 24px 24px;
  margin: 0 0 0 0;
}

/* ===============================
   COOKIE CONSENT BANNER
   =============================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2900;
  background: #EAD890;
  color: #24391D;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 16px 0 rgba(153,128,40,0.11);
  padding: 25px 18px 20px 18px;
  gap: 16px;
  font-size: 1.04rem;
  animation: cookieFadeIn 0.41s both;
  border-radius: 22px 22px 0 0;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  padding: 10px 23px;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  margin: 0 2px;
  background: var(--c-olive);
  color: #fff;
  transition: background 0.19s, color 0.16s, box-shadow 0.16s;
  box-shadow: 0 1px 6px 0 rgba(78,97,49,0.09);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #EAD890;
  color: var(--c-olive);
  outline: 2px solid var(--c-olive);
}
.cookie-banner .cookie-settings-btn {
  background: none;
  color: var(--c-dark);
  border: 1.5px solid var(--c-dark);
  transition: background 0.13s, color 0.13s;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: var(--c-olive);
  color: var(--c-white);
  border-color: var(--c-olive);
}

.cookie-modal {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(38,44,56,0.28);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.31s both;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #fafdde;
  color: #3a4422;
  border-radius: 18px;
  min-width: 320px;
  max-width: 98vw;
  padding: 40px 30px 28px 30px;
  box-shadow: 0 7px 42px 0 rgba(78,97,49,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal-content h2 {
  color: #6C7B33;
  margin-bottom: 12px;
  font-size: 1.23rem;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #e5edd4;
}
.cookie-category:last-child {
  border: none;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #39662f;
}
.cookie-switch {
  width: 48px;
  height: 26px;
  background: #C8D58F;
  border-radius: 13px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  transition: background 0.14s;
}
.cookie-switch input {
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.cookie-switch .slider {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.14s;
  box-shadow: 0 1px 3px 0 rgba(61,80,32,0.09);
}
.cookie-switch input:checked + .slider {
  left: 25px;
  background: #aed36e;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 13px;
  font-size: 1.65rem;
  background: none;
  border: none;
  color: #5b5b14;
  cursor: pointer;
  z-index: 2;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.12s, color 0.19s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #FFD55A;
  color: #326627;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 22px;
}
.cookie-modal-actions button {
  padding: 9px 20px;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  background: var(--c-olive);
  color: #fff;
  transition: background 0.17s, color 0.15s;
}
.cookie-modal-actions button:hover, .cookie-modal-actions button:focus {
  background: #EAD890;
  color: var(--c-olive);
}

/* ===============================
   MISC - TRANSITIONS & INTERACTIONS
   =============================== */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.12s;
}

/* ===============================
   MEDIA QUERIES – RESPONSIVE DESIGN
   =============================== */
@media (max-width: 1060px) {
  .container { max-width: 96vw; }
  .footer-flex { gap: 22px; }
  .feature-grid, .service-list, .testimonial-list, .news-list { gap: 14px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 13px; }
  .footer-flex { flex-direction: column; align-items: flex-start; gap: 26px; }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  header .container { flex-direction: row; gap: 6px; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .cta-btn { margin-left: 0; }
  .footer-flex { flex-direction: column; gap: 16px; }
  .footer-column { min-width: 140px; }
  .section, .features, .about, .services, .team, .hero, .cta, .legal {
    padding: 24px 4px;
    border-radius: 18px;
  }
  .feature-grid, .service-list, .card-grid, .testimonial-list, .news-list {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .card, .feature-grid > li, .feature-grid > div, .service-list > div, .testimonial-card, .news-list > div {
    min-width: unset;
    max-width: 100%;
    padding: 18px 10px 11px 12px;
  }
  .content-wrapper {padding: 0 1px; }
}
@media (max-width: 510px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.08rem; }
  .hero, .cta, .section, .features, .about, .services, .team, .legal {
    padding: 15px 2px 15px 2px;
    border-radius: 14px;
  }
  .footer-column img {
    height: 32px;
  }
}
