/* ================= RESET & BASE =================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
body {
  background-color: #F9F8F6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2C3920;
  line-height: 1.7;
  letter-spacing: 0.01em;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #32543B;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #25422E;
  text-decoration: none;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 16px;
  padding-left: 1.2em;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 0;
}
p {
  margin-bottom: 18px;
}
strong, b {
  font-weight: 600;
  color: #32543B;
}
em {
  font-style: italic;
  color: #2C3920;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #32543B;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 18px;
  margin-top: 18px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 10px;
}

/* ========== UTILITIES ========= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.text-section {
  max-width: 700px;
  margin: 0 auto 0 auto;
  text-align: center;
}

/* ============ SECTIONS & SPACING ============== */
section {
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #FFF;
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(50,84,59,0.07);
  /* organic/nature-like subtle shadow */
}

/* ============== CARDS & FLEX LAYOUTS ============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #FFF;
  border-radius: 20px 32px 28px 24px;
  box-shadow: 0 1px 10px 0 rgba(50,84,59,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 24px;
  min-width: 270px;
  flex: 1 1 270px;
  transition: box-shadow 0.23s, transform 0.23s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(50,84,59,0.13);
  transform: translateY(-3px) scale(1.02);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #D0E1D4;
  color: #2C3920;
  border-radius: 20px 26px 20px 30px;
  box-shadow: 0 2px 12px 0 rgba(50,84,59,0.07);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 1.125rem;
  min-width: 240px;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #245e3b;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 12px;
  background: #FEEFAE;
  border-radius: 40px 20px 26px 30px;
  margin-bottom: 20px;
  min-width: 190px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.service-list > div {
  background: #F7F6F0;
  border-radius: 18px 32px 22px 28px;
  flex: 1 1 220px;
  min-width: 220px;
  padding: 18px 18px 10px 18px;
  box-shadow: 0 1px 9px 0 rgba(50,84,59,0.07);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  justify-content: flex-start;
  transition: box-shadow 0.2s, transform 0.18s;
}
.service-list > div:hover {
  box-shadow: 0 6px 20px 0 rgba(50,84,59,0.14);
  transform: translateY(-2px) scale(1.01);
}

/* ================== BUTTONS ================== */
.btn-primary {
  display: inline-block;
  background: #32543B;
  color: #FEEFAE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 25px 30px 25px 35px;
  box-shadow: 0 1px 7px 0 rgba(50,84,59,0.13);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s, transform 0.17s;
  margin-top: 16px;
  margin-bottom: 14px;
  text-decoration: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #245e3b;
  color: #FFF;
  box-shadow: 0 3px 13px 0 rgba(50,84,59,0.22);
  transform: scale(1.03);
}
.btn-secondary {
  background: #FEEFAE;
  color: #32543B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 20px 25px 18px 31px;
  box-shadow: 0 1px 9px 0 rgba(50,84,59,0.07);
  cursor: pointer;
  border: none;
  outline: none;
  margin: 6px 10px 6px 0;
  transition: background 0.18s, color 0.2s, box-shadow 0.18s;
  text-decoration: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #D0E1D4;
  color: #2C3920;
  box-shadow: 0 3px 13px 0 rgba(50,84,59,0.13);
}
.btn-inverse {
  background: #FFF;
  color: #32543B;
  border: 2px solid #D0E1D4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 22px;
  border-radius: 20px 24px 22px 28px;
  margin: 6px 10px 6px 0;
  transition: background 0.16s, border-color 0.14s;
  cursor: pointer;
}
.btn-inverse:hover, .btn-inverse:focus {
  background: #D0E1D4;
  border-color: #BACEB6;
}

/* ================= HEADER & FOOTER ============= */
header {
  background-color: #F7F6F0;
  box-shadow: 0 2px 10px 0 rgba(50,84,59,0.06);
  padding: 0;
  width: 100%;
  z-index: 50;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}
header a img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
header nav a {
  color: #32543B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 14px 18px 18px 10px;
  transition: background 0.18s, color 0.16s;
  letter-spacing: 0.02em;
}
header nav a:hover, header nav a:focus {
  background: #D0E1D4;
  color: #214825;
}

footer {
  background: #F7F6F0;
  color: #32543B;
  font-size: 1rem;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 12px 0 rgba(50,84,59,0.06);
  margin-top: 36px;
  padding-top: 40px;
  padding-bottom: 20px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  flex-direction: row;
}
.footer-main > a img {
  height: 44px;
  width: auto;
}
.footer-contact {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.97rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-main nav {
  font-size: 0.98rem;
  color: #2C3920;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}
.footer-main nav a {
  color: #32543B;
  text-decoration: underline;
  margin-right: 7px;
  transition: color 0.17s;
}
.footer-main nav a:hover, .footer-main nav a:focus {
  color: #245e3b;
  text-decoration: none;
}
.footer-tagline {
  margin-top: 12px;
  color: #245e3b;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
}

/* ============= LISTS w ICONS, MAP-EMBED, CONTACT ============ */
.content-wrapper ul, .content-wrapper ol {
  margin-left: 0;
  margin-bottom: 16px;
  padding-left: 0;
  list-style: none;
}
.content-wrapper ul li, .content-wrapper ol li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
  padding-left: 0;
  font-size: 1.08rem;
  position: relative;
}
.content-wrapper ul li img, .content-wrapper ol li img {
  width: 24px;
  height: 24px;
}
.service-list ul, .service-list ol {
  gap: 10px;
}
.map-embed {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E5ECD8;
  border-radius: 24px 32px 28px 20px;
  box-shadow: 0 1px 6px 0 rgba(50,84,59,0.09);
  padding: 22px 0;
}
.contact-info {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.07rem;
  align-items: flex-start;
}
.contact-info img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 7px;
}
.contact-info a {
  color: #32543B;
  font-weight: 500;
}

/* ============ MOBILE MENU ============= */
.mobile-menu-toggle {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 103;
  width: 48px;
  height: 48px;
  border-radius: 22px 26px 20px 28px;
  background: #32543B;
  color: #FEEFAE;
  font-size: 2rem;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 9px 0 rgba(50,84,59,0.19);
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #245e3b;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42,60,35,0.91);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.77,.2,.41,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0%);
  visibility: visible;
}
.mobile-menu-close {
  margin: 20px 20px 0 0;
  width: 44px;
  height: 44px;
  background: #FEEFAE;
  color: #32543B;
  font-size: 2rem;
  border-radius: 18px 24px 16px 20px;
  border: none;
  cursor: pointer;
  transition: background 0.17s;
  box-shadow: 0 1px 4px 0 rgba(50,84,59,0.10);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #D0E1D4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 32px 42px 12px 12px;
  gap: 14px;
  width: 100vw;
}
.mobile-nav a {
  color: #FEEFAE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.43rem;
  font-weight: 500;
  text-decoration: none;
  padding: 13px 32px 13px 14px;
  border-radius: 19px 32px 15px 22px;
  transition: background 0.15s, color 0.11s;
  margin-bottom: 4px;
  margin-right: 0;
  width: 100%;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2C3920;
  color: #FEEFAE;
}
@media (max-width: 985px) {
  .footer-main {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 6px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container,
  .service-list,
  .content-grid {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
  .content-wrapper.text-section {
    padding-left: 0;
    padding-right: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .section {
    padding: 26px 5px;
    margin-bottom: 35px;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 1.38rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.13rem;
    margin-bottom: 11px;
  }
  h3 {
    font-size: 1rem;
    margin-bottom: 7px;
  }
  .card {
    min-width: 120px;
    padding: 13px 10px;
  }
  .service-list > div {
    min-width: 120px;
    padding: 14px 8px 8px 10px;
  }
}
/* ============ COOKIE BANNER & MODAL ============== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #32543B;
  color: #FEEFAE;
  font-size: 1.08rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 22px 13px 20px 13px;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -3px 20px 0 rgba(50,84,59,0.18);
  z-index: 11000;
  gap: 14px;
  animation: banner-slideup 0.42s cubic-bezier(.79,-0.12,.38,1.23);
}
@keyframes banner-slideup {
  from { transform: translateY(68px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 250px;
  margin: 0 22px 0 0;
  color: #FEEFAE;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  margin: 0 6px;
  font-size: 1rem;
  padding: 9px 18px;
}
.cookie-banner .btn-inverse {
  margin: 0 8px;
  padding: 8px 15px;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 12000;
  background: rgba(30,40,19,0.63);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-modal 0.31s;
}
@keyframes fadein-modal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #F7F6F0;
  color: #2C3920;
  max-width: 440px;
  width: 94vw;
  padding: 36px 22px 24px 27px;
  border-radius: 20px 36px 32px 30px;
  box-shadow: 0 8px 40px 0 rgba(50,84,59,0.16);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popin-modal 0.37s cubic-bezier(.8,-0.12,.38,1.27);
}
@keyframes popin-modal {
  from { transform: scale(0.79); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #32543B;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  margin-bottom: 8px;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #32543B;
  border-radius: 7px;
}
.cookie-category label {
  font-size: 1.06rem;
  color: #214825;
}
.cookie-toggle-essential {
  filter: grayscale(0.35);
  pointer-events: none;
}
.cookie-modal .modal-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .btn-primary {
  font-size: 1rem;
  padding: 9px 18px;
}
.cookie-modal .btn-secondary {
  font-size: 1rem;
  padding: 9px 17px;
}
.cookie-modal .btn-inverse {
  font-size: 0.98rem;
  padding: 8px 13px;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 6px 16px 8px;
    max-width: 98vw;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px 7px 10px 7px;
  }
  .cookie-banner p {
    margin: 0 0 10px 0;
  }
}

/* ============ MISCELLANEOUS =============== */
::-webkit-input-placeholder { color: #A6AA9F; opacity: 1; }
::placeholder { color: #A6AA9F; opacity: 1; }

hr {
  border: none;
  border-top: 1px solid #D0E1D4;
  margin: 28px 0 24px 0;
}

/* ============= ORGANIC SHAPES DECOR (OPTIONAL) ============= */
.organic-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/* ============= TYPOGRAPHY SCALE (for reference) ============ */
/*
14px: captions, help
16px: normal body
18px: small lead
24px: h3, callout
32px: h2
48px: h1
*/

/* ================= CTAs - cross-section consistency ================ */
.text-section .btn-primary {
  margin-top: 22px;
  font-size: 1.18rem;
}

/* ================= ACCESSIBILITY ==================== */
:focus {
  outline: 2px dashed #245e3b;
  outline-offset: 3px;
}

/* =================== MISC ================== */
body.no-scroll, html.no-scroll {
  overflow: hidden !important;
}

/* ================= END OF CSS ================== */
