/* --- CSS RESET & BASE TYPOGRAPHY --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #FFFFFF;
  color: #225C3B;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  transition: background 0.3s, color 0.3s;
}
img,svg {
  max-width: 100%;
  display: block;
}
a {
  color: #225C3B;
  text-decoration: underline;
  transition: color .2s;
}
a:hover,a:focus {
  color: #397A54;
  outline: none;
}
ul,ol {
  list-style: disc outside;
  margin-left: 1.5em;
  margin-bottom: 16px;
}
ul li,ol li {
  margin-bottom: 8px;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
hr {
  border: none;
  border-top: 1px solid #E6E7E2;
  margin: 40px 0;
}

/* --- TYPOGRAPHY SCALE --- */
h1 {
  font-family: 'Lora', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #225C3B;
  line-height: 1.18;
}
h2 {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #225C3B;
  line-height: 1.2;
}
h3 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #225C3B;
}
h4 {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #225C3B;
}
p {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #274933;
}
blockquote {
  margin: 16px 0 16px 0;
  font-style: italic;
  color: #5E736B;
  background: #F7F7F1;
  padding: 16px 22px;
  border-left: 3.5px solid #84BD8B;
  border-radius: 8px;
}

/* --- LAYOUT & CONTAINER --- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2.5px 18px 0 rgba(34,92,59,0.06);
}

section.cta {
  background: #F7F7F1;
  border-radius: 18px;
  box-shadow: 0 2.5px 18px 0 rgba(34,92,59,0.06);
}

.hero {
  padding: 60px 0 40px 0;
  background: #F7F7F1;
}

@media (max-width:768px){
  .hero {
    padding: 40px 0 20px 0;
  }
}
/* --- FLEX WRAPPERS --- */
.card-container,
.card-grid,
.services-list,
.events-list,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 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: 12px;
  padding: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(34,92,59,0.09);
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 480px;
  width: 100%;
  font-size: 1.05rem;
}
.testimonial-author {
  font-size: 0.99rem;
  color: #5E736B;
  font-style: italic;
}
.star-rating {
  font-size: 1.1rem;
  color: #84BD8B;
  letter-spacing: 1.5px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(34,92,59,.07);
  background: #fff;
  padding: 22px;
}

/* --- SERVICES / EVENTS / FEATURES CARDS --- */
.services-list, .events-list {
  width: 100%;
  gap: 24px;
}
.service-card, .event-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 13px;
  box-shadow: 0 2.5px 15px 0 rgba(34,92,59,0.07);
  padding: 26px 22px 22px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow 0.18s, transform 0.21s;
}
.service-card:hover, .event-card:hover {
  box-shadow: 0 6px 32px 0 rgba(34,92,59,0.13);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 180px;
  font-size: 1.09rem;
  background: #F7F7F1;
  padding: 18px 13px 18px 18px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  font-weight: 500;
}

/* --- BUTTONS --- */
.button-primary, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 24px;
  font-size: 1.09rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: none;
  outline: 0 !important;
  border: none;
  line-height: 1.25;
  box-shadow: 0 1.5px 8px 0 rgba(34,92,59,0.13);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.13s;
}
.button-primary {
  background: #225C3B;
  color: #fff;
}
.button-primary:hover, .button-primary:focus {
  background: #397A54;
  box-shadow: 0 3px 22px 0 rgba(34,92,59,0.19);
  transform: translateY(-2px) scale(1.015);
}
.button-secondary {
  background: #fff;
  color: #225C3B;
  border: 1px solid #84BD8B;
}
.button-secondary:hover, .button-secondary:focus {
  background: #F7F7F1;
  border-color: #397A54;
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(34,92,59,0.06);
  position: sticky;
  top: 0;
  z-index: 49;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-size: 1rem;
  color: #225C3B;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
  transition: color .17s;
}
.main-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #84BD8B;
  transition: width .23s;
  border-radius: 2px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #397A54;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  width: 100%;
}
.button-primary {
  margin-left: 20px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #225C3B;
  cursor: pointer;
  padding: 7px 13px;
  border-radius: 50%;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F7F7F1;
}

/* --- MOBILE MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.65,.05,.36,1);
  box-shadow: -5px 0 24px 0 rgba(34,92,59,0.08);
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  border: none;
  background: none;
  font-size: 2rem;
  color: #225C3B;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  padding: 8px 13px;
  border-radius: 50%;
  transition: background 0.14s;
  z-index: 20;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #F7F7F1;
}
.mobile-nav {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 26px;
}
.mobile-nav a {
  font-size: 1.13rem;
  color: #225C3B;
  padding: 15px 0;
  text-decoration: none;
  border-bottom: 1px solid #F7F7F1;
  transition: color .17s, background .13s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7F7F1;
  color: #397A54;
}

/* --- FOOTER --- */
footer {
  background: #F7F7F1;
  border-top: 1px solid #E6E7E2;
  padding: 28px 0 18px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.97rem;
  color: #225C3B;
  text-decoration: none;
  opacity: 0.9;
  padding: 6px 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: #397A54;
}
.address, .hours {
  font-size: 0.93rem;
  color: #5E736B;
  opacity: 0.85;
}
.footer-logo img {
  height: 42px;
  opacity: 0.92;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width:1020px){
  .container { padding-left: 12px; padding-right: 12px; }
}
@media (max-width:900px){
  .content-wrapper { gap: 16px; }
  .main-nav, .button-primary {
    font-size: 0.97rem;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width:768px){
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .main-nav, .button-primary { display: none !important; }
  .mobile-menu-toggle { display: inline-flex; }
  .container {
    padding-left: 8px; padding-right: 8px;
    max-width: 100vw;
  }
  .hero { padding: 24px 0 12px 0; }
  .card-container, .card-grid, .services-list, .feature-grid, .events-list {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-nav { gap: 10px; }
  .footer-logo img { height: 36px; }
  .section {
    margin-bottom: 34px;
    padding: 24px 6px;
  }
  .card, .service-card, .event-card { padding: 16px 8px; }
  .feature-grid li {
    min-width: 130px;
    padding: 12px 6px 12px 12px;
    font-size: 1rem;
  }
}
@media (max-width:510px){
  html { font-size: 14px; }
  h1 { font-size: 1.2rem; }
  h2 { font-size: 1.08rem; }
  .footer-logo img { height: 30px; }
  .testimonial-card {padding: 11px 6px;}
}

/* --- MICRO-INTERACTIONS & EFFECTS --- */
.card:hover,
.service-card:hover,
.event-card:hover,
.feature-grid li:hover {
  box-shadow: 0 6px 24px 0 rgba(34,92,59,0.13);
  transform: translateY(-2px) scale(1.015);
}
.button-primary:active, .button-secondary:active {
  transform: scale(.985);
}
.feature-grid li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  opacity: 0.97;
}
/* Ensure no elements overlap */
.card, .service-card, .event-card, .testimonial-card, .feature-grid li {
  margin-bottom: 20px;
}
section:not(:last-child) {
  margin-bottom: 60px;
}

/* --- TESTIMONIALS / QUOTES --- */
.testimonial-card {
  color: #225C3B;
  background: #FAFAF8;
  border-left: 3.5px solid #84BD8B;
  margin-bottom: 24px;
}

/* --- TEXT SECTIONS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

/* --- FORMS [Ready for Future Use] --- */
input, textarea, select, button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  outline: none;
}
input, textarea {
  background: #fff;
  color: #225C3B;
  border: 1px solid #E6E7E2;
  border-radius: 8px;
  padding: 11px 12px;
  margin-bottom: 14px;
  transition: border 0.17s;
}
input:focus, textarea:focus {
  border-color: #84BD8B;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1030;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #F7F7F1;
  color: #225C3B;
  box-shadow: 0 -1px 14px 0 rgba(34,92,59,0.12);
  padding: 20px 32px 18px 22px;
  gap: 18px;
  font-size: 1rem;
  transition: transform 0.28s cubic-bezier(.71,.01,.36,1);
}
.cookie-consent-banner.hide {transform: translateY(120%);}
.cookie-consent-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 11px 18px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  margin-right: 5px;
  transition: background 0.17s, color 0.15s, box-shadow 0.13s, transform 0.12s;
  box-shadow: 0 2px 7px 0 rgba(34,92,59,.08);
}
.cookie-btn.accept {
  background: #225C3B;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #397A54;
  transform: translateY(-1px) scale(1.01);
}
.cookie-btn.reject {
  background: #fff;
  color: #225C3B;
  border: 1px solid #84BD8B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F7F7F1;
  border-color: #397A54;
}
.cookie-btn.settings {
  background: #F7F7F1;
  color: #225C3B;
  border: 1px solid #84BD8B;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  border-color: #397A54;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,92,59,0.23);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.hide { opacity:0; pointer-events: none;}
.cookie-modal {
  background: #fff;
  max-width: 420px;
  width: 93vw;
  border-radius: 16px;
  box-shadow: 0 8px 42px 0 rgba(34,92,59,0.14);
  padding: 40px 28px 25px 28px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: cookiepop 0.36s cubic-bezier(.71,.01,.36,1);
}
@keyframes cookiepop {
  0%{transform:scale(.89) translateY(25px);opacity:0;}
  100%{transform:scale(1) translateY(0);opacity:1;}
}
.cookie-modal-close {
  position: absolute;
  right: 16px; top: 16px;
  border: none;
  background: none;
  font-size: 1.7rem;
  color: #397A54;
  cursor: pointer;
  border-radius: 50%;
  padding: 4px 9px;
  transition: background 0.12s;
}
.cookie-modal-close:focus,.cookie-modal-close:hover {
  background: #F7F7F1;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category input[type='checkbox']{
  width: 21px;
  height: 21px;
  accent-color: #84BD8B;
}
.cookie-category input[type='checkbox']:disabled,
.cookie-category label[aria-disabled='true']{
  opacity:0.55;
  cursor: default;
}
.cookie-category .locked {
  font-size: 1rem;
  color: #5E736B;
  opacity:.75;
  margin-left: 4px;
}

@media (max-width:570px){
  .cookie-consent-banner{ padding:12px 6px 12px 8px;font-size:0.97rem;}
  .cookie-modal{padding:20px 9px 15px 11px;}
  .cookie-category{gap:7px;font-size:0.98rem;}
}

/* --- Z-INDEX RULES --- */
header,.mobile-menu,.cookie-consent-banner,.cookie-modal-overlay{z-index:100+}

/* --- EXTRAS --- */
::selection { background: #84BD8B; color: #fff; }

/* --- END OF STYLES --- */
