/* ---- CSS RESET & 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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: #F4F5F2;
  color: #232A34;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #17765e;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, .footer-nav a:hover, .main-nav a:hover, .mobile-nav a:hover {
  color: #2e441e;
}
ul, ol {
  list-style-position: outside;
  margin-left: 1.25em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #26342B;
  line-height: 1.2;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.17rem;
  margin-bottom: 14px;
}
p {
  margin-bottom: 16px;
}
strong {
  color: #295F36;
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  margin: 0 auto;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero {
  background: #f6f8f3 url('../assets/organic-bg-01.svg') right bottom no-repeat;
  border-bottom-left-radius: 60px;
  box-shadow: 0 4px 28px 0 rgba(69,90,100,0.07);
  margin-bottom: 42px;
  padding: 48px 0 36px 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* ----------- NAVIGATION ----------- */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(48, 75, 62,0.035);
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 14px;
}
.main-nav {
  display: flex;
  gap: 24px;
  margin-left: 30px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #34513B;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #72ac26;
  border-radius: 1px;
  transition: width 0.23s;
  margin: 2px auto 0 auto;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.main-nav a.active {
  color: #72ac26;
}
.cta-primary {
  display: inline-block;
  background: #72ac26;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 10px 28px;
  border-radius: 36px 16px 36px 16px;
  box-shadow: 0 2px 12px rgba(55,99,37,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.12s;
  margin-left: 18px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #527524;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 6px 24px rgba(82,117,36,0.18);
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #34513B;
  border: none;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 0 11px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  z-index: 99;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f0eee4;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  background: #f4f5f2;
  width: 100vw;
  height: 100vh;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.76,.49,.54,.93);
  box-shadow: 8px 0 30px 0 rgba(85,125,44,0.08);
  padding: 0 0 40px 0;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 12px 0;
  background: #fff;
  color: #50722d;
  border: none;
  font-size: 2.1rem;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 1101;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0 34px;
  margin-top: 30px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #26342B;
  font-weight: 600;
  padding: 14px 6px;
  border-radius: 7px;
  transition: background 0.16s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e4f2df;
  color: #295F36;
}
@media (max-width: 1020px) {
  .main-nav {
    gap: 17px;
  }
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 860px) {
  .main-nav {
    gap: 8px;
  }
  header .container {
    gap: 2px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-nav, .footer-contact {
    margin-top: 18px;
  }
}

/* -------- PAGE LAYOUTS, CARDS, & FLEX -------- */
.section, main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 16px 0 rgba(80,120,62,0.09);
  padding: 24px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 250px;
  flex: 1 1 320px;
  border: 1.5px solid #E4EADD;
}
.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;
  background: #fcffee;
  padding: 20px;
  border-radius: 18px 36px 18px 36px;
  box-shadow: 0 4px 16px 0 rgba(80,120,62,0.10);
  margin-bottom: 20px;
  color: #36422d;
}
.testimonial-card p {
  color: #232A34;
  font-style: italic;
  flex: 1 1 0%;
}
.testimonial-card span {
  color: #4e6930;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f1f7ea;
  border-radius: 14px 32px 14px 32px;
  padding: 18px 22px;
  box-shadow: 0 1px 7px 0 rgba(80,120,62,0.05);
  margin-bottom: 20px;
  min-width: 220px;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}
.values-grid > div {
  background: #e0e7d7;
  border-radius: 38px 14px 38px 14px;
  box-shadow: 0 3px 14px 0 rgba(80,120,62,0.08);
  padding: 20px 24px;
  flex: 1 1 200px;
  min-width: 210px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.values-grid strong {
  color: #4d7027;
}

/* ---- ABOUT / CONTACT INFO ---- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 10px;
}
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  color: #34513B;
}
.contact-info img {
  width: 22px;
  height: 22px;
}

/* ---- FOOTER ---- */
footer {
  background: #f1f7ea;
  border-top-left-radius: 48px;
  margin-top: 55px;
  box-shadow: 0 -4px 22px 0 rgba(85,125,44,0.08);
  padding: 38px 0 15px 0;
  color: #233021;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-logo {
  flex: 0 1 100px;
}
.footer-logo img {
  width: 62px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #34513B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  transition: color 0.14s;
}
.footer-contact {
  max-width: 350px;
  color: #34513B;
  font-size: 0.99rem;
  line-height: 1.5;
}
.footer-contact strong {
  color: #295F36;
}

/* ---- NEWSLETTER, ABOUT, ETC ---- */
.newsletter {
  background: #e6f3df;
  border-radius: 16px 36px 16px 36px;
  box-shadow: 0 2px 13px 0 rgba(39,103,55,0.03);
  margin-bottom: 60px;
}
.newsletter a {
  color: #295F36;
  text-decoration: underline;
}
.about-brief {
  background: #f9faf6;
  border-radius: 32px 8px 32px 8px;
  box-shadow: 0 2px 8px 0 rgba(70,90,50,0.03);
  margin-bottom: 34px;
}
.services {
  background: #fcffee;
  border-radius: 24px 44px 24px 44px;
  box-shadow: 0 2px 16px 0 rgba(87,111,74,0.06);
  margin-bottom: 48px;
}
.contact-cta {
  background: #f1fbe7;
  border-radius: 16px 54px 16px 54px;
  box-shadow: 0 2.5px 18px 0 rgba(58,120,53,0.06);
  margin-bottom: 52px;
}
.text-section {
  margin-bottom: 14px;
  color: #36422d;
  font-size: 1.04rem;
}

/* ---- PAGE SPECIFIC FLEX/NATURE SHAPES ---- */
ul > li, ol > li {
  margin-bottom: 10px;
  padding-left: 0.5em;
  position: relative;
}
ul > li img, ul > li svg {
  vertical-align: middle;
  width: 21px;
  margin-right: 7px;
}
ul > li strong {
  color: #3a671b;
}

/* ---- BUTTONS ---- */
button, [type="button"] {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 22px;
  border-radius: 28px 10px 28px 10px;
  background: #d5eaca;
  color: #295F36;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.12s, transform 0.1s;
}
button:hover, button:focus, [type="button"]:hover {
  background: #b7cfad;
  color: #184d23;
  transform: translateY(-1px) scale(1.04);
}

/* --- VISUAL/ORGANIC DECOR ---- */
.section, .hero, .card, .newsletter, .about-brief, .services, .contact-cta {
  box-shadow: 0 3px 16px 0 rgba(110,139,90,0.05);
}

/* ---- RESPONSIVE LAYOUTS ---- */
@media (max-width: 900px) {
  .content-grid, .card-container {
    gap: 14px;
  }
  .footer-nav, .footer-contact {
    max-width: 90vw;
  }
  .values-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
  }
  .content-wrapper {
    max-width: 99vw;
    gap: 16px;
  }
  .section, main > section {
    margin-bottom: 35px;
    padding: 28px 5px;
  }
  .hero {
    padding: 32px 0 18px 0;
    border-bottom-left-radius: 30px;
  }
  .card-container, .content-grid, .values-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 13px;
    padding: 16px;
  }
  .feature-item, .card, .values-grid > div {
    min-width: unset;
    max-width: 98vw;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 16px 0 10px 0;
    font-size: 0.98em;
  }
  h1 {
    font-size: 1.42rem;
  }
  h2 {
    font-size: 1.14rem;
  }
}

/* ---- COOKIE CONSENT BANNER & MODAL ---- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #272f24;
  color: #fff;
  padding: 22px 18px 22px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 13px;
  box-shadow: 0 -2px 17px 0 rgba(75,110,48,0.13);
  font-size: 1rem;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  transition: transform 0.36s;
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner .cookie-message {
  flex: 3 1 200px;
  color: #fff;
  font-size: 1.04rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex: 1 1 140px;
  justify-content: flex-end;
}
.cookie-banner button {
  font-size: 1rem;
  border-radius: 18px 8px 18px 8px;
  background: #e2e9d7;
  color: #2e441e;
  font-weight: 700;
  padding: 8px 17px;
  transition: background 0.16s, color 0.13s;
}
.cookie-banner button.accept-btn {
  background: #8ecc5b;
  color: #fff;
}
.cookie-banner button.accept-btn:hover, .cookie-banner button.accept-btn:focus {
  background: #385219;
}
.cookie-banner button.reject-btn {
  background: #eee7d7;
  color: #295F36;
}
.cookie-banner button.reject-btn:hover, .cookie-banner button.reject-btn:focus {
  background: #cdd3bb;
  color: #193c21;
}
.cookie-banner button.settings-btn {
  background: #e2e9d7;
  color: #315e29;
}
.cookie-banner button.settings-btn:hover, .cookie-banner button.settings-btn:focus {
  background: #aac986;
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2022;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(40,57,19, 0.23);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: #272f24;
  border-radius: 30px 16px 30px 16px;
  box-shadow: 0 5px 34px 0 rgba(80,120,62,0.18);
  max-width: 98vw;
  width: 390px;
  padding: 28px 20px 18px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieFadeIn 0.34s cubic-bezier(.92,.18,.63,.91);
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(70px) scale(0.94); }
  100% { opacity: 1; transform: none; }
}
.cookie-modal h2 {
  color: #355f30;
  font-size: 1.17rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-row {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal .cookie-row .category {
  font-size: 1rem;
  color: #184d23;
  font-weight: 600;
}
.cookie-modal .cookie-row .always-on {
  font-size: 0.94rem;
  color: #59715a;
  font-style: italic;
}
.toggle-switch {
  position: relative;
  width: 38px;
  height: 22px;
  background: #e0e0d6;
  border-radius: 13px;
  transition: background 0.22s;
  cursor: pointer;
  flex-shrink: 0;
}
.toggle-switch input {
  display: none;
}
.toggle-switch .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #aac986;
  border-radius: 50%;
  transition: left 0.22s, background 0.20s;
}
.toggle-switch input:checked + .slider {
  background: #64892b;
  left: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-close {
  position: absolute;
  right: 15px; top: 13px;
  background: #f3fae9;
  border: none;
  color: #41622d;
  font-size: 1.42rem;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: background 0.13s;
  z-index: 8;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #d9f5b6;
}
@media (max-width: 540px) {
  .cookie-modal {
    width: 98vw;
    min-width: unset;
    padding: 15px 2vw 10px 2vw;
  }
}

/* ---- FORMS (Newsletter, Kontakt, Cookie Modal) ---- */
input, textarea, select {
  font-family: inherit;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1.3px solid #d6e5bb;
  font-size: 1rem;
  margin-bottom: 14px;
  background: #f8fbf2;
  color: #232A34;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #72ac26;
  background: #f3fceb;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #34513B;
  font-weight: 500;
}

/* ---- TYPOGRAPHY & SPACING ---- */
html {
  --ts-primary: #232A34;
  --ts-secondary: #18A0FB;
  --ts-accent: #EFF5F9;
  --ts-green: #72ac26;
  --ts-green-dark: #295F36;
  --ts-olive: #c7d299;
  --ts-earth: #f4f1e5;
  --ts-bark: #6C5B3A;
}
h1, .hero h1 {
  font-size: 2.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2d3d29;
  font-weight: 800;
  margin-bottom: 12px;
}
h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #4b5e37;
}
h3 {
  font-size: 1.18rem;
  font-weight: 600;
  color: #2d471c;
}
p, li, label, input, select, textarea {
  font-size: 1.01rem;
  line-height: 1.66;
  color: #26342B;
}
small {
  color: #4a5e2e;
  font-size: 0.96rem;
}

/* ----- UTILITIES & ANIMATIONS ----- */
@media (max-width: 546px) {
  .footer-logo img {
    width: 45px;
  }
  .footer-nav, .footer-contact {
    font-size: 0.92rem;
  }
  .hero {
    padding-bottom: 8px;
  }
}
.fade-in {
  animation: fadeIn 0.77s cubic-bezier(.6,0,.16,1.09) 1;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: none; }
}

/* --------- ACCESSIBILITY --------- */
:focus-visible {
  outline: 2px solid #295F36;
  outline-offset: 0.5px;
}

/* --------- NATURAL ELEMENTS --------- */
.section, .card, .newsletter, .hero, .about-brief, .services, .contact-cta {
  background-image: url('../assets/deco-organic-shape.svg');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 140px auto;
}
@media (max-width: 700px) {
  .section, .card, .newsletter, .hero, .about-brief, .services, .contact-cta {
    background-size: 85px auto;
    background-position: right 0 bottom 0;
  }
}

/* END */
