/* === 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-size: 16px;
  background-color: #FFFBEF;
  color: #333A28;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}
img, svg {
  max-width: 100%;
  vertical-align: middle;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* === Root Variables for Nature-Organic Aesthetic (with fallbacks) === */
:root {
  --color-primary: #17406A;
  --color-secondary: #F5B200;
  --color-accent: #FFFFFF;
  --color-green-dark: #305937;
  --color-green: #88B04B;
  --color-brown: #A38660;
  --color-sand: #F7EED9;
  --color-grey: #5A6E52;
  --color-beige: #FFFAF3;
  --radius-lg: 32px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --shadow-card: 0 4px 24px rgba(47,71,34,0.10);
  --shadow-hover: 0 8px 32px rgba(47,71,34,0.15);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-green-dark);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
p, li, blockquote {
  font-family: var(--font-body);
  color: #333A28;
  font-size: 1rem;
  line-height: 1.7;
}
blockquote {
  font-size: 1.12rem;
  padding-left: 20px;
  border-left: 4px solid var(--color-green);
  color: var(--color-grey);
  font-style: italic;
  margin: 0 0 10px 0;
}
strong {
  color: var(--color-green-dark);
  font-weight: 700;
}

/* === Layout Containers === */
.container {
  width: 100%;
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-beige);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .section {
    padding: 30px 6vw;
    margin-bottom: 36px;
  }
}

/* === Header & Navigation === */
header {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 2px 16px rgba(47,71,34,0.05);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
header nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
  padding: 8px 0;
  transition: color 0.25s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
  text-decoration: none;
}
header img {
  height: 48px;
  width: auto;
}

.cta-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 32px;
  border: none;
  box-shadow: var(--shadow-card);
  text-align: center;
  letter-spacing: 0.02em;
  margin-left: 24px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  cursor: pointer;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-green);
  color: var(--color-accent);
  box-shadow: var(--shadow-hover);
}
@media (max-width: 992px) {
  header .container {
    gap: 14px;
  }
  .cta-btn {
    margin-left: 12px;
    padding: 12px 20px;
  }
}

/* === Mobile Menu === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 24px;
  top: 16px;
  z-index: 2001;
  background: var(--color-green);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,51,24,0.93);
  backdrop-filter: blur(3px);
  z-index: 2200;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 8px 24px 12px 16px;
  align-self: flex-end;
  z-index: 15;
  margin-top: 16px;
}
.mobile-nav {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 40px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.33rem;
  padding: 14px 0;
  border-radius: 6px;
  width: 100%;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-green-dark);
  color: var(--color-secondary);
}
@media (max-width: 1110px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1111px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* === Hero & Section Styles === */
.hero {
  background: linear-gradient(120deg, #FFFBEF 60%, #EAF4E3 120%);
  padding: 50px 0 40px 0;
  margin-bottom: 60px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 6px 36px 0 rgba(89,132,59,0.08);
}
.hero .container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 600px;
  align-items: flex-start;
  gap: 28px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.8rem;
  letter-spacing: 0.03em;
}
.hero p {
  font-size: 1.25rem;
  color: var(--color-green-dark);
}
@media (max-width: 900px) {
  .hero .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    padding: 34px 0 28px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* === Features Section & Cards === */
.features {
  background: var(--color-beige);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 60px;
  padding: 40px 12px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.feature {
  flex: 1 1 220px;
  background: #F6F8F4;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px 22px 22px;
  gap: 12px;
  min-width: 225px;
  max-width: 350px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.16s;
  position: relative;
}
.feature img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
.feature h3 {
  color: var(--color-green);
  font-size: 1.22rem;
  margin-bottom: 2px;
}
.feature p {
  color: var(--color-brown);
  font-size: 0.97rem;
  margin-bottom: 0;
}
.feature:hover, .feature:focus-within {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px) scale(1.03);
  background: #EAF4E3;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature {
    max-width: 100%;
    width: 100%;
  }
}

/* --- Cards & Content Grids --- */
.card-container, .service-cards, .cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .project-teaser, .team-member {
  background: #F6F8F4;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 230px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover, .service-card:hover, .project-teaser:hover, .team-member:hover {
  box-shadow: var(--shadow-hover);
  background: #EAF4E3;
  transform: translateY(-3px) scale(1.02);
}
.cards {
  justify-content: flex-start;
}
.service-cards {
  margin-bottom: 16px;
}
@media (max-width: 700px) {
  .card-container, .service-cards, .cards {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-card, .project-teaser, .team-member {
    min-width: 80vw;
    max-width: 100%;
  }
}

/* === About, List, Quick-facts etc. === */
.text-section {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}
.trust-badges, .certifications, .eco-certificates {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 8px;
}
.quick-facts {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-grey);
  font-size: 1rem;
}
.value-points-list, .benefits-list, .impact-facts, .local-partnerships, .value-points {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1.07rem;
  color: var(--color-green-dark);
}

/* === Alignments, Cards, Testimonials etc === */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  flex-direction: column;
  align-items: flex-start;
  min-width: 180px;
  max-width: 600px;
  width: 100%;
  transition: box-shadow 0.18s, background 0.17s;
  border: 1.5px solid #eaf4e3;
  color: #253820;
}
.testimonial-card blockquote {
  color: #305937;
  font-size: 1.13rem;
}
.testimonial-card p {
  font-size: 1rem;
  color: #333A28;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  background: #F7EED9;
}

/* === Section Overviews / Process Steps === */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 1.04rem;
}
.process-steps li {
  background: var(--color-sand);
  border-radius: 10px;
  padding: 8px 14px;
}
.benefits-list {
  margin-bottom: 0;
}
.commitment-statement {
  background: var(--color-sand);
  border-radius: 18px;
  padding: 16px 20px;
  color: #333A28;
  margin-top: 18px;
}

/* --- Content Grid --- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.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;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === Footer Styles === */
footer {
  background: #EAF4E3;
  color: var(--color-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 20px rgba(47,71,34,0.08);
  padding: 36px 0 24px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-main nav a {
  color: var(--color-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: color 0.16s;
}
.footer-main nav a:hover { color: var(--color-green-dark); }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-links a {
  color: var(--color-brown);
  font-size: 0.92rem;
  transition: color 0.16s;
}
.footer-links a:hover { color: var(--color-green-dark); }
.footer-contact {
  font-size: 0.98rem;
  color: #515A3A;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 350px;
}
.footer-contact img {
  height: 1em;
  width: auto;
  margin-right: 4px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-main, .footer-links, .footer-contact {
    align-items: flex-start;
  }
}

/* == Kontakt/Social Links == */
.contact-block {
  background: #EFF9E6;
  border-radius: 20px;
  padding: 22px 22px 14px 22px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: var(--color-green-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}
.social-links a img {
  height: 30px;
  width: 30px;
  filter: grayscale(30%) contrast(1.13);
  transition: filter 0.15s, transform 0.14s;
}
.social-links a:hover img {
  filter: grayscale(0%) drop-shadow(1px 2px 2px rgba(0,0,0,0.09));
  transform: scale(1.09);
}

.map-embed img {
  max-width: 120px;
  border-radius: 13px;
  background: #FFFBEF;
  padding: 7px;
  margin-top: 2px;
}

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #EAF4E3;
  color: #2D4427;
  z-index: 3000;
  box-shadow: 0 -2px 24px rgba(47,71,34,0.12);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 18px 24px 18px 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: bannerIn 0.5s cubic-bezier(0.66, 0, 0.24, 1) 1;
}
@keyframes bannerIn {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-right: 18px;
  color: #2D4427;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 10px;
  border: none;
  font-family: var(--font-display);
  font-size: 0.98rem;
  padding: 9px 20px;
  margin: 0 3px;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: background 0.19s, color 0.17s, box-shadow 0.18s;
}
.cookie-banner .accept {
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: var(--shadow-hover);
}
.cookie-banner .reject {
  background: #fff;
  color: var(--color-green-dark);
  border: 1.5px solid var(--color-green);
}
.cookie-banner .reject:hover { background: #F7EED9; }
.cookie-banner .settings {
  background: var(--color-brown);
  color: #fff;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-green);
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px 8vw; }
  .cookie-banner .cookie-actions {margin-bottom: 2px;}
}

/* === Cookie Preferences Modal === */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(47,71,34,0.65);
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal {
  background: #fff;
  color: #253820;
  border-radius: var(--radius-lg);
  padding: 30px 30px 18px 30px;
  min-width: 285px;
  max-width: 430px;
  box-shadow: var(--shadow-hover);
  animation: modalIn 0.35s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modalIn {
  from { transform: scale(0.85) translateY(60px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.2rem;
  color: var(--color-green-dark);
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f8f4;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 10px;
}
.cookie-category .label {
  font-weight: 500;
  color: var(--color-green-dark);
  font-size: 1.04rem;
}
.cookie-category .toggle {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-category input[type='checkbox'] {
  width: 17px;
  height: 17px;
  accent-color: var(--color-green);
  border-radius: 4px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  min-width: 100px;
  padding: 9px 0;
}

/* === Buttons & Microinteractions === */
button, .cta-btn {
  outline: none;
  transition: box-shadow 0.12s, background 0.12s, color 0.13s, transform 0.17s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}
button:focus, .cta-btn:focus {
  outline: 2px solid var(--color-green-dark);
  outline-offset: 2px;
}

/* === General Improvements and Utility Classes === */
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }

/* === Responsive General Layout === */
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .section, .hero, footer {
    padding-left: 4vw;
    padding-right: 4vw;
  }
}

/* === Focus Visuals for Accessibility === */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px dashed var(--color-primary);
  outline-offset: 2px;
}

/* === Misc: Decorative Organic Elements === */
.section, .hero, .card, .service-card, .feature, .testimonial-card, .contact-block, .footer-main, .commitment-statement, .cookie-modal {
  /* Subtle organic border radius and soft background */
  border-radius: 40px 30px 36px 28px / 25px 44px 30px 36px;
}

/* --- Hide scroll on mobile menu open (JavaScript controlled class) --- */
body.menu-open {
  overflow: hidden;
  height: 100vh;
}

/* === End of Styles === */
