/* RESET & BASELINE --------------------------------------------- */
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,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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*,*:before,*:after { box-sizing: inherit; }
body {
  background: #FAF7EF;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22322B;
  min-height: 100vh;
}
img { max-width: 100%; display: block; border: none; }
a { color: #206A5D; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #144538; text-decoration: underline; }

/* TYPOGRAPHY ------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #206A5D;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }

p, ul, ol, li, strong {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #22322B;
}
strong { font-weight: 700; }
.subheadline {
  font-size: 1.15rem;
  color: #50836a;
  margin-bottom: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* LAYOUT ---------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  margin-bottom: 0;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(34,50,43,0.07);
  padding: 32px 24px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #f8f8f8;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(32,106,93,0.06);
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid #E2D784;
  transition: box-shadow .18s;
}
.testimonial-card p {
  color: #22322B;
}
.testimonial-card strong { color: #206A5D; font-size: 1.1rem; }
.ratings-overview {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: #206A5D;
  font-weight: 600;
  font-size: 1rem;
}
.features {
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(34,50,43,0.04);
  border: 1px solid #e6e4d9;
  padding: 24px 18px 20px 18px;
  flex: 1 1 240px;
  min-width: 230px;
  margin-bottom: 20px;
  transition: background 0.18s, box-shadow 0.18s;
}
.feature-item img {
  width: 42px; height: 42px;
  margin-bottom: 8px;
}
.feature-item h3 {
  font-size: 1.2rem;
  color: #206A5D;
  margin-bottom: 6px;
}

/* Hero Section ---------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  background: #F8F8F8 url('../assets/hero-bg-organic.svg') no-repeat right bottom;
  min-height: 340px;
  border-radius: 0 0 44px 44px / 0 0 32px 32px;
  box-shadow: 0 2px 12px rgba(32,106,93,0.03);
  margin-bottom: 48px;
  padding: 48px 0 36px 0;
}
.hero .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 { color: #194e3b; text-shadow: 0 2px 8px #e2e1c9; }
.hero .subheadline { color: #50836a; }

/* Cards & Value Cards --------------------------------------------- */
.value-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.value-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 7px rgba(34,50,43,0.04);
  border: 1px solid #E2D784;
  padding: 22px 16px 16px 16px;
  transition: box-shadow .16s;
  margin-bottom: 20px;
}
.value-card h3 { margin-bottom: 6px; }
.commitment-highlights ul {
  margin-top: 10px;
  padding-left: 16px;
  list-style: disc;
}

/* Blog Articles --------------------------------------------------- */
.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.article-grid article {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px rgba(34,50,43,0.07);
  border: 1px solid #E2D784;
  padding: 22px 16px;
  margin-bottom: 20px;
}
.article-grid h3 {
  font-size: 1.14rem;
  color: #206A5D;
}

/* Transformation list --------------------------------------------- */
.transformations {
  margin: 16px 0;
  padding-left: 18px;
  list-style: disc;
  color: #22322B;
}

/* Benefit points -------------------------------------------------- */
.benefit-points {
  margin: 18px 0 8px 0;
  padding-left: 20px;
  list-style: circle;
  color: #438d73;
}

/* Lists and UL ---------------------------------------------------- */
ul, ol {
  margin-bottom: 16px;
  margin-left: 18px;
  padding-left: 12px;
}
li {
  margin-bottom: 8px;
  list-style: disc inside;
}

/* CTAs and Buttons ------------------------------------------------ */
.primary-cta {
  display: inline-block;
  background-color: #206A5D;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  padding: 13px 34px;
  margin-top: 16px;
  border: none;
  border-radius: 48px;
  box-shadow: 0 2px 10px 0 rgba(34,50,43,0.06);
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s, color .18s, box-shadow .18s, transform 0.15s;
  outline: none;
}
.primary-cta:hover, .primary-cta:focus {
  background-color: #19634d;
  color: #e2d784;
  box-shadow: 0 4px 20px 1px rgba(34,50,43,0.12);
  transform: translateY(-2px) scale(1.035);
}
.footer-nav a, .footer-contact a {
  font-weight: 600;
  margin-right: 14px;
  font-size: 1rem;
  color: #206A5D;
}

/* Footer ---------------------------------------------------------- */
footer {
  background: #e2d784;
  color: #22322B;
  padding: 24px 0 0 0;
  border-top: 1px solid #c6c084;
  border-radius: 44px 44px 0 0 / 32px 32px 0 0;
  box-shadow: 0 -2px 12px rgba(32,106,93,0.03);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  min-height: 104px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact img {
  margin-bottom: 10px;
  width: 45px;
}

/* Contact social icons -------------------------------------------- */
.contact-social {
  display: flex;
  gap: 12px;
  margin: 12px 0 8px 0;
}
.contact-social a img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f7f7ef;
  transition: box-shadow .13s;
  box-shadow: 0 1px 3px rgba(50, 106, 76, 0.07);
}
.contact-social a:hover img {
  box-shadow: 0 2px 18px 0 rgba(32,106,93,0.13);
}

/* Legal Section --------------------------------------------------- */
.legal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(32,106,93,0.03);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h1, .legal h2 {
  color: #206A5D;
}

/* Cookie Banner & Modal ------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #F8F8F8;
  color: #22322B;
  border-top: 1px solid #e2d784;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 26px 16px;
  box-shadow: 0 -6px 40px rgba(36,68,29,0.06);
  transition: transform 0.3s cubic-bezier(.7,.3,.1,1), opacity 0.3s;
  opacity: 1;
  transform: translateY(0);
  gap: 26px;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner button {
  margin-left: 6px;
  background-color: #206A5D;
  border: none;
  color: #fff;
  border-radius: 38px;
  padding: 10px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-right: 6px;
  transition: background 0.17s, color 0.17s, box-shadow 0.14s;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(32,106,93,0.10);
}
.cookie-banner .secondary {
  background: #e2d784;
  color: #206A5D;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #19634D;
  color: #E2D784;
}
.cookie-banner .secondary:hover, .cookie-banner .secondary:focus {
  background: #f1ecb2; color: #206A5D;
}

.cookie-modal-bg {
  position: fixed; z-index: 2100;
  left:0;top:0;right:0;bottom:0;
  background: rgba(32,106,93,0.18);
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.25s;
}
.cookie-modal-bg.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #F8F8F8;
  border-radius: 22px;
  box-shadow: 0 4px 34px 0 rgba(32,106,93,0.21);
  color: #22322B;
  padding: 36px 30px 26px 30px;
  max-width: 98vw;
  min-width: 285px; width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.08rem;
}
.cookie-modal h2 { color: #206A5D; font-size: 1.29rem; }
.cookie-modal .cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal .switch {
  position: relative; display: inline-block;
  width: 50px; height: 28px;
}
.cookie-modal .switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e2d784;
  border-radius: 22px;
  transition: background 0.2s;
}
.cookie-modal .switch input:checked + .slider { background: #206A5D; }
.cookie-modal .slider:before {
  position: absolute;
  content: '';
  height: 22px; width: 22px;
  left: 4px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(22px);
}
.cookie-modal .category {
  display: flex; align-items: center;
  font-weight: 600;
}
.cookie-modal .essential { opacity: .7; padding-left: 3px; }
.cookie-modal .modal-btn-row {
  display: flex; gap: 14px; justify-content: flex-end; margin-top: 12px;
}
.cookie-modal button {
  background: #206A5D;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 600;
  transition: background .18s, color .16s;
  cursor: pointer;
}
.cookie-modal button.secondary {
  background: #e2d784;
  color: #206A5D;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #144538;
}
.cookie-modal button.secondary:hover, .cookie-modal button.secondary:focus {
  background: #f5f1bb; color: #206A5D;
}

/* MOBILE MENU ----------------------------------------------------- */
.mobile-menu-toggle {
  display: inline-block;
  background: #206A5D;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin-left: 16px;
  cursor: pointer;
  z-index: 1050;
  box-shadow: 0 1px 8px 0 rgba(32,106,93,0.12);
  transition: background .16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover { background: #144538; }
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #F8F8F8;
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.41s cubic-bezier(.42,.79,0,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
  box-shadow: -4px 0 22px rgba(32,106,93,0.16);
}
.mobile-menu-close {
  background: #206A5D;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 24px 0 0 20px;
  cursor: pointer;
  z-index: 3050;
  transition: background .13s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover { background: #144538; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 0 0 0 32px;
  margin-top: 30px;
}
.mobile-nav a {
  color: #206A5D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  padding: 11px 6px;
  transition: color .19s, background .13s;
  border-radius: 6px;
  min-width: 160px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e2d784;
  color: #144538;
}

/* Hide nav for desktop on mobile */
@media (max-width: 980px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  nav {
    display: flex !important;
    gap: 18px;
    flex-direction: row !important;
    align-items: center;
  }
  .mobile-menu-toggle { display: none !important; }
}

/* RESPONSIVE DESIGN & FLEX LAYOUTS -------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid, .value-cards, .article-grid {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .value-cards, .article-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .feature-item, .value-card, .article-grid article {
    width: 100%;
    min-width: unset;
    flex: 1 1 100%;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero {
    min-height: 210px;
    padding: 32px 0 18px 0;
    border-radius: 0 0 28px 28px / 0 0 18px 18px;
  }
  .section, .legal {
    padding: 18px 7px;
    margin-bottom: 40px;
  }
  .feature-grid, .value-cards, .article-grid {
    flex-direction: column;
    gap: 10px;
  }
  .testimonial-card, .feature-item, .value-card, .article-grid article {
    padding: 14px 8px;
    font-size: 1rem;
    width: 100%;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
  }
  .footer-contact {
    align-items: flex-start;
    gap: 5px;
  }
}

/* Animations and Micro-interactions ------------------------------- */
.primary-cta, .cookie-banner button, .cookie-modal button {
  transition: background .2s, color .16s, box-shadow .17s, transform .15s;
}
.primary-cta:hover, .primary-cta:focus, .cookie-banner button:hover, .cookie-banner button:focus, .cookie-modal button:hover, .cookie-modal button:focus {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 3px 18px 1px rgba(34,50,43,0.12);
}
.feature-item:hover, .value-card:hover, .article-grid article:hover {
  box-shadow: 0 8px 28px 1px rgba(34,50,43,0.13);
  background: #f8f8f8;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px 2px rgba(66,120,100,0.10);
  background: #e8f5e9;
}

/* Utility Classes ------------------------------------------------- */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }
.text-center { text-align: center; }

/* Misc Fixes ------------------------------------------------------ */
::-webkit-input-placeholder { color: #76784c; }
::-moz-placeholder { color: #76784c; }
:-ms-input-placeholder { color: #76784c; }
::placeholder { color: #76784c; }

/* Always enforce spacing between section/content cards -------------*/
.section, .feature-item, .value-card, .testimonial-card, .card, .article-grid article {
  margin-bottom: 20px;
}

/* Organic Decorative Elements --------------------------------------*/
.hero {
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: '';
  position: absolute;
  right: -80px; bottom: -60px;
  width: 260px; height: 180px;
  background: url('../assets/organic-shape-green.svg') no-repeat center/contain;
  opacity: .22;
  pointer-events: none;
  z-index: 1;
}

/* Accessibility: Focus styles --------------------------------------*/
:focus-visible {
  outline: 2.5px solid #E2D784;
  outline-offset: 2px;
}
