/* ----------------------------------------------------
   CSS 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, 
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;
}
html { 
  font-size: 16px; 
  scroll-behavior: smooth; 
  background: #F5F6E7;
}
body {
  line-height: 1.6;
  color: #2e2e27;
  background: #F5F6E7;
  font-family: 'Roboto', Georgia, Times, serif;
  min-height: 100vh;
  letter-spacing: .01em;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
:root {
  --primary: #356D36;
  --primary-dark: #20401A;
  --secondary: #8DC63F;
  --accent: #F5F6E7;
  --gray: #e5e6d9;
  --white: #fff;
  --black: #181816;
  --shadow: 0 4px 18px rgba(44,55,30,.09);
  --radius: 14px;
  --border: 1px solid #DFE0CE;
}
*, *::before, *::after { box-sizing: inherit; }

/* ----------------------------------------------------
   TYPOGRAPHY – "elegant_classic" style
---------------------------------------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: .012em;
  margin-bottom: 18px;
}
h1 { font-size: 2.375rem; line-height: 1.13; margin-bottom: 28px; }
h2 { font-size: 1.75rem; line-height: 1.16; margin-top: 14px; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.21; }
h4 { font-size: 1.1rem; }

p, li, ul, ol, span, label {
  font-family: 'Roboto', Georgia, serif;
  font-size: 1rem;
  color: #2e2e27;
  margin-bottom: 16px;
}
strong { font-weight: 700; }

blockquote {
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--secondary);
  margin-left: 0;
  padding-left: 24px;
}

a {
  color: var(--primary);
  text-decoration: underline;
  transition: color .18s;
}
a:hover, a:focus {
  color: var(--secondary);
  outline: none;
}

/* Typography scale for classic proportions */
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.23rem; }
}

/* ----------------------------------------------------
   LAYOUT CONTAINERS & FLEX PATTERNS
---------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 28px 24px;
  min-width: 250px;
  flex: 1 1 320px;
}
.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;
  background: var(--accent);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(44,55,30,.07);
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 570px;
  width: 100%;
  transition: box-shadow .21s, border-color .21s;
}
.testimonial-card p {
  margin-bottom: 8px;
  font-style: italic;
  color: var(--primary-dark);
  font-size: 1.05rem;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 6px 16px rgba(53,109,54,0.13);
  border-color: var(--secondary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.activity-cards, .featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.activity-cards > div, .featured-posts > div {
  flex: 1 1 240px;
  background: var(--white);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow .19s;
  min-width: 180px;
}
.activity-cards > div:hover, .featured-posts > div:hover {
  box-shadow: 0 7px 18px rgba(53,109,54,0.14);
}
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 28px 0 12px;
}
.timeline > div {
  background: var(--accent);
  border-radius: 10px;
  border: var(--border);
  padding: 20px 16px;
  min-width: 140px;
  flex: 1 1 190px;
}

/* ----------------------------------------------------
   HEADER & NAVIGATION
---------------------------------------------------- */
header {
  background: var(--white);
  border-bottom: 1px solid #e5e6d9;
  padding: 0;
  box-shadow: 0 1px 8px rgba(44,55,30,0.05);
  position: relative;
  z-index: 1001;
}
.logo img {
  height: 54px;
  max-width: 180px;
  vertical-align: middle;
  display: block;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--primary-dark);
  padding: 8px 3px;
  border-radius: 8px;
  text-decoration: none;
  transition: color .17s, background .19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--gray);
  color: var(--secondary);
}
.cta-btn {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  background: var(--primary);
  color: var(--accent);
  border-radius: 8px;
  padding: 12px 34px;
  font-size: 1.08rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .18s, box-shadow .19s;
  box-shadow: 0 3px 12px rgba(53,109,54,.09);
  margin-left: 16px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(53,109,54,.13);
}
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: var(--accent);
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: 8px;
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 1201;
  transition: background .19s, color .18s;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: var(--primary-dark);
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: var(--white);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(0.77,0.2,0.05,1.0);
  box-shadow: 0 3px 28px rgba(53,109,54,0.20);
  padding-top: 52px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  color: var(--primary-dark);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 50%;
  transition: background .19s, color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 20px 0 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.12rem;
  color: var(--primary-dark);
  padding: 12px 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background .16s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gray);
  color: var(--secondary);
}

@media (max-width: 990px) {
  .main-nav, header .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* ----------------------------------------------------
   HERO SECTION & PRONOUNCED CALL TO ACTION
---------------------------------------------------- */
.hero {
  display: flex;
  align-items: center;
  background: linear-gradient(70deg, #F5F6E7 85%, #dbe2c7 100%);
  padding: 52px 0 38px 0;
  margin-bottom: 68px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 3px 16px rgba(141,198,63,0.07);
  margin-bottom: 12px;
}
.hero p {
  max-width: 700px;
  font-size: 1.19rem;
  margin-bottom: 30px;
}
.hero .cta-btn {
  margin-left: 0;
}

/* CTA SECTIONS */
.cta-section {
  background: var(--primary);
  color: var(--accent);
  border-radius: 16px;
  margin-bottom: 64px;
  box-shadow: 0 3px 22px rgba(53,109,54,0.11);
}
.cta-section h2,
.cta-section p {
  color: var(--accent);
}
.cta-section .cta-btn {
  background: var(--secondary);
  color: var(--primary-dark);
  margin-top: 16px;
}
.cta-section .cta-btn:hover { background: var(--accent); color: var(--primary-dark); }

/* ----------------------------------------------------
   LISTS & ICON LISTS
---------------------------------------------------- */
ul, ol {
  margin-bottom: 18px;
  margin-left: 20px;
  padding-left: 16px;
  line-height: 1.74;
  font-size: 1rem;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 0;
  position: relative;
}
ul li strong {
  font-family: 'Montserrat', serif;
  font-weight: 600;
  color: var(--primary-dark);
}
ul li img {
  vertical-align: middle;
  margin: 0 7px 0 2px;
  height: 22px;
}

/* ----------------------------------------------------
   FOOTER STYLE
---------------------------------------------------- */
footer {
  background: var(--white);
  border-top: 1px solid #e5e6d9;
  padding: 38px 0 22px 0;
  font-size: .99rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 180px;
}
.footer-nav a {
  color: var(--primary);
  text-decoration: none;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  transition: color .15s;
  border-radius: 6px;
  padding: 2px 4px;
  font-weight: 500;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  background: var(--gray);
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--primary-dark);
  max-width: 340px;
  font-size: .97rem;
}
.contact-footer img {
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* ----------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100vw;
  left: 0;
  background: var(--white);
  border-top: 1px solid #e5e6d9;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 16px rgba(53,109,54,.08);
  z-index: 1400;
  padding: 24px 10px 18px 10px;
  animation: bannerIn .5s;
  gap: 22px;
}
@keyframes bannerIn {
  0% { transform: translateY(50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.cookie-banner p {
  color: var(--primary-dark);
  font-size: .99rem;
  margin-bottom: 6px;
  text-align: center;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.cookie-btn {
  font-family: 'Montserrat', serif;
  padding: 9px 18px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  box-shadow: 0 1px 4px rgba(53,109,54,.05);
  cursor: pointer;
  font-weight: 500;
  background: var(--accent);
  color: var(--primary-dark);
  transition: background .16s, color .16s, box-shadow .17s;
}
.cookie-btn.accept {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.accept:hover {
  background: var(--secondary);
  color: var(--primary-dark);
}
.cookie-btn.reject {
  background: var(--accent);
  color: var(--primary-dark);
  border: 1px solid var(--primary);
}
.cookie-btn.reject:hover {
  background: #e5e6d9;
  color: var(--primary-dark);
}
.cookie-btn.settings {
  background: none;
  color: var(--primary);
  border: 1px dashed var(--primary);
}
.cookie-btn.settings:hover {
  background: var(--accent);
  color: var(--secondary);
}

/* Cookie modal pop-up */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) scale(0.93);
  width: 96vw;
  max-width: 410px;
  background: var(--white);
  z-index: 1450;
  border-radius: 16px;
  box-shadow: 0 5px 32px rgba(53,109,54,0.19);
  padding: 34px 30px 18px 30px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s, transform .26s;
  display: flex;
  flex-direction: column;
  gap: 19px;
  border: var(--border);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: var(--primary-dark);
  margin-bottom: 6px;
  font-size: 1.23rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 9px 0;
  font-size: 1.01rem;
  color: var(--primary-dark);
}
.cookie-category label {
  font-family: 'Roboto', serif;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  appearance: none;
  background: #eef1e7;
  border-radius: 11px;
  position: relative;
  outline: none;
  border: 1px solid var(--secondary);
  cursor: pointer;
  transition: background .2s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::-webkit-slider-thumb, .cookie-toggle::-moz-range-thumb {
  appearance: none;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--primary);
  position: absolute;
  left: 3px; top: 2px;
  box-shadow: 0 1px 5px rgba(53,109,54,.10);
  transition: transform .18s;
}
.cookie-toggle:checked::-webkit-slider-thumb {
  background: var(--primary-dark);
  transform: translateX(16px);
}
.cookie-toggle:checked::-moz-range-thumb {
  background: var(--primary-dark);
  transform: translateX(16px);
}
.cookie-modal .cookie-actions {
  gap: 12px;
  margin: 8px 0 0 0;
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 18px;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--primary-dark);
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--secondary);
}

/* ----------------------------------------------------
   MISCELLANEOUS / UTILITY CLASSES
---------------------------------------------------- */
img {
  max-width: 100%;
  border-radius: 7px;
  display: inline-block;
}
.flex { display: flex; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.gap-20 { gap: 20px; }

/* Utility for spacing */
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ----------------------------------------------------
   RESPONSIVE DESIGN
---------------------------------------------------- */
@media (max-width: 1020px) {
  .container { max-width: 98vw; }
  .footer-nav { min-width: 150px; }
}
@media (max-width: 910px) {
  .card-container, .activity-cards, .featured-posts, .timeline, .content-grid {
    gap: 12px;
  }
}
@media (max-width: 800px) {
  .container { max-width: 100vw; padding: 0 10px; }
  footer .container { flex-direction: column; gap: 14px; }
}
@media (max-width: 768px) {
  .content-wrapper { gap: 14px; }
  .hero {
    padding: 33px 0 18px 0;
    margin-bottom: 32px;
  }
  .hero h1 { font-size: 1.4rem; }
  .section { padding: 22px 6px; margin-bottom: 35px; }
  .cta-section { margin-bottom: 36px; padding: 16px 6px; }
  .footer-nav { flex-direction: row; gap: 11px; }
  .contact-footer { font-size: .96rem; }
  .activity-cards, .featured-posts, .timeline, .card-container, .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card { min-width: unset; }
  .testimonial-card, .activity-cards > div, .featured-posts > div, .timeline > div {
    min-width: unset;
    width: 100%;
    max-width: 100%;
  }
  .text-image-section { flex-direction: column; gap: 15px; }
}
@media (max-width: 540px) {
  .cookie-modal { padding: 20px 9px 12px 9px; }
  .footer-nav { flex-direction: column; }
}

/* ----------------------------------------------------
   TRANSITIONS & MICRO-INTERACTIONS
---------------------------------------------------- */
button, .cta-btn, .cookie-btn, .mobile-menu-close, .mobile-menu-toggle {
  transition: background .16s, color .16s, box-shadow .19s, border-color .17s; 
}

.card, .activity-cards > div, .timeline > div, .testimonial-card, .featured-posts > div {
  transition: box-shadow .18s, border-color .19s;
}

.card:hover, .activity-cards > div:hover, .timeline > div:hover, .featured-posts > div:hover {
  box-shadow: 0 7px 24px rgba(53,109,54,0.12);
  border-color: var(--secondary);
}

.cta-btn:active, .cookie-btn:active { transform: translateY(1px) scale(.99); }

/* CHECK: All interactive elements properly styled */

/* ----------------------------------------------------
   SPECIAL: FAQ, OL/UL, LISTS, ETC.
---------------------------------------------------- */
ol {
  list-style-type: decimal;
  margin-bottom: 20px;
  margin-left: 24px;
}
ul {
  list-style-type: disc;
  margin-bottom: 14px;
  margin-left: 22px;
}

/* ----------------------------------------------------
   ACCESSIBILITY & SELECTION
---------------------------------------------------- */
::selection {
  background: var(--secondary);
  color: var(--accent);
}

/* ----------------------------------------------------
   PRINT STYLES: opt-out (classic sites)
---------------------------------------------------- */
@media print {
  nav, .mobile-menu, .cookie-banner, .cta-btn { display: none !important; }
}

/* ----------------------------------------------------
   END OF STYLE.CSS
---------------------------------------------------- */
