/* =======================================================
   CSS RESET & BASE (Normalize + custom)
   ======================================================= */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background-color: #F6F5F3;
  color: #203046;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}
a {
  color: #264b26;
  text-decoration: none;
  transition: color 0.15s;
  outline: none;
}
a:hover, a:focus {
  color: #355d3a;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border-radius: 6px;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}
input, textarea, select {
  background: #fff;
  border: 1px solid #CED6C3;
  padding: 10px;
}
::-webkit-input-placeholder { color: #8B8C8F; }
::-moz-placeholder { color: #8B8C8F; }
:-ms-input-placeholder { color: #8B8C8F; }
::placeholder { color: #8B8C8F; }

/* =============================
   TYPOGRAPHY
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #203046;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
p, ul, ol, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #203046;
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.125rem;
  color: #2a5337;
  font-weight: 400;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
blockquote {
  border-left: 4px solid #2D662D;
  background: #F1F7F0;
  color: #355d3a;
  font-style: italic;
  padding: 14px 24px;
  margin: 18px 0;
  border-radius: 8px;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

/* =============================
   LAYOUT CONTAINERS
   ============================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(90,110,60,0.05);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
    border-radius: 14px;
  }
  .container {
    padding: 0 5px;
  }
}

/* Organic curves on big sections */
.section {
  position: relative;
}
.section:before, .section:after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
}
.section:before {
  left: -40px; top: -25px; width: 130px; height: 60px;
  background: #e1eddd;
  border-radius: 60% 80% 60% 90%;
  opacity: .16;
}
.section:after {
  right: -50px; bottom: -25px; width: 100px; height: 45px;
  background: #f2e8de;
  border-radius: 90% 60% 60% 80%;
  opacity: .13;
}

@media (max-width: 500px) {
  .section:before, .section:after {display:none;}
}

.text-section {
  max-width: 750px;
}

/* =============================
   NAVIGATION & HEADER
   ============================= */
header {
  background: #F6F5F3;
  box-shadow: 0 1px 10px 0 rgba(90,110,60,0.06);
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 16px;
  position: relative;
}
header nav {
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #365446;
  font-weight: 500;
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.13s, color 0.13s;
}
header nav a:hover, header nav a.active {
  background: #e1eddd;
  color: #2D662D;
}
.cta.primary {
  background: #2D662D;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  padding: 9px 36px;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(60,90,60,0.08);
  transition: background 0.18s, box-shadow 0.18s, color 0.15s;
  border: 1px solid #24934A2c;
  margin-left: 8px;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #355d3a;
  color: #DDF2DF;
  box-shadow: 0 3px 16px rgba(40,70,50,.16);
}
.cta {
  background: #ADD7B2;
  color: #203046;
  padding: 9px 32px;
  border-radius: 18px;
  font-weight: 500;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  transition: background 0.18s, color 0.15s;
  margin-top: 12px;
}
.cta:hover, .cta:focus {
  background: #7FC97F;
  color: #203046;
}

/* LOGO */
header .container a img {
  height: 40px;
  display: block;
  margin-right: 10px;
}

/* Responsive NAVIGATION & BURGER MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: none;
  color: #2D662D;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 6px;
  z-index: 101;
  transition: background 0.15s;
  border: 1px solid #294d30;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e1eddd;
  color: #203046;
}
@media (max-width: 1025px) {
  header nav,
  .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(242,241,235,0.98);
  z-index: 1103;
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.73,0,.26,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 16px;
  background: #e1eddd;
  color: #244824;
  font-size: 2.1rem;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  z-index: 1110;
  transition: background .15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #B4DAC4;
  color: #203046;
}
.mobile-nav {
  display: flex; flex-direction: column; gap: 16px;
  margin-top: 36px;
  width: 100%;
  padding: 0 35px;
}
.mobile-nav a {
  font-size: 1.15rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #244824;
  font-weight: 500;
  padding: 13px 7px;
  border-radius: 8px;
  background: none;
  transition: background .10s, color .12s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: #DDF2DF;
  color: #294d30;
}

@media (min-width: 1026px) {
  .mobile-menu {display:none;}
}

/* =============================
   MAIN SECTIONS & FLEX LAYOUTS
   ============================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 16px 0;
  justify-content: flex-start;
}
.feature {
  background: #F1F7F0;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(60,120,60,0.08);
  padding: 30px 26px 22px 26px;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 260px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
  position: relative;
  z-index: 1;
  transition: transform 0.14s, box-shadow 0.14s;
}
.feature img {
  width: 36px; height: 36px; object-fit: contain;
  margin-bottom: 5px;
}
.feature:hover, .feature:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(44,70,39,0.13);
  background: #E9E6DF;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(120,110,70,0.11);
  padding: 26px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px; max-width: 340px;
  z-index: 1;
  transition: box-shadow 0.15s, transform 0.15s;
}
.card:hover, .card:focus {
  box-shadow: 0 7px 28px rgba(44,70,39,0.18);
  transform: translateY(-3px) scale(1.03);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-wrapper {
    gap: 20px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   TESTIMONIAL CARDS & REVIEWS
   ============================= */
.testimonial-card {
  background: #e8f5e9;
  border-left: 6px solid #24934A;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(41,77,48,.08);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.testimonial-card p {
  color: #203046;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #294d30;
  font-weight: 600;
}

/* =============================
   BLOG TAGS & TOPICS
   ============================= */
.topics-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 10px 0;
}
.topics-tags span {
  background: #e9ebde;
  color: #35572d;
  font-size: 0.96rem;
  padding: 5px 17px;
  border-radius: 12px;
}

/* =============================
   FOOTER
   ============================= */
footer {
  background: #E9E6DF;
  border-top: 1px solid #B4DAC4;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 30px 20px 20px 20px;
}
footer nav {
  display: flex; flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
footer nav a {
  color: #294d30;
  font-size: 1rem;
  border-radius: 6px;
  padding: 6px 8px;
  transition: background 0.13s;
  font-family: 'Roboto', Arial, sans-serif;
}
footer nav a:hover {
  background: #d3e3d8;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-center;
  margin-bottom: 6px;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #496b55;
  font-size: 0.98rem;
}
.footer-contact img {
  width: 20px; height: 20px;
}
.footer-note {
  color: #678570;
  font-size: 0.94rem;
  margin-top: 3px;
}

@media (max-width: 900px) {
  footer .container {
    padding: 20px 8px 10px 8px;
  }
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffdf8;
  border-top: 1px solid #B4DAC4;
  box-shadow: 0 -4px 24px rgba(34,68,52,0.10);
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  justify-content: center;
  padding: 22px 18px 22px 18px;
  animation: cookieFadeIn 0.6s cubic-bezier(.75,0,.19,1);
}
@keyframes cookieFadeIn {
  0% {transform: translateY(100%); opacity:0;}
  100% {transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  color: #203046;
  margin-bottom: 0;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-actions {
  display: flex; align-items: center; gap: 13px;
}
.cookie-btn {
  background: #2D662D;
  color: #fff;
  padding: 8px 23px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  transition: background 0.16s, color 0.13s;
}
.cookie-btn.secondary {
  background: #DDF2DF;
  color: #294d30;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #355d3a;
  color: #DDF2DF;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #B4DAC4;
  color: #203046;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 16px 6px;
  }
  .cookie-actions {
    gap: 7px;
  }
}

/* === Cookie Settings Modal === */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(50,60,40,0.24);
  display: flex;
  align-items: center; justify-content: center;
  z-index: 1201;
  animation: cookieModalIn 0.5s cubic-bezier(.85,0,.23,1);
}
@keyframes cookieModalIn {
  0% {opacity:0;}
  100% {opacity:1;}
}
.cookie-modal-content {
  background: #FFFDF8;
  padding: 30px 24px 24px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(41,77,48,0.16);
  width: 94vw; max-width: 370px;
  color: #203046;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal-content h3 {
  font-size: 1.23rem;
  margin-bottom: 6px;
  color: #2D662D;
}
.cookie-category {
  display: flex; align-items: center; justify-content: space-between;
  margin: 10px 0 5px 0;
  font-size: 1.01rem;
}
.cookie-category label {
  margin-right: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #27432E;
}
.cookie-toggle {
  transform: scale(1.4);
  accent-color: #2D662D;
}
.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 13px;
  margin-top: 7px;
}
.cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 18px; right: 24px;
  font-size: 2rem;
  color: #294d30;
  cursor: pointer;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #203046;
}

/* =============================
   UTILITY CLASSES & HELPERS
   ============================= */
.mb-0 {margin-bottom: 0 !important;}
.mt-0 {margin-top:0 !important;}
.mt-32 {margin-top:32px !important;}
.w-100 {width:100% !important;}

.privacy-note {
  font-size: 0.98rem;
  color: #678570;
  margin-top: 14px;
}
.privacy-note a {
  color: #2D662D;
  text-decoration: underline;
}

/* =============================
   FORMS (if any added later)
   ============================= */
input, textarea {
  width: 100%;
  min-width: 0;
  font-size: 1rem;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #B4DAC4;
  background: #F6F5F3;
  margin-bottom: 18px;
}
input:focus, textarea:focus {
  border: 1.5px solid #2D662D;
  outline: none;
}
label {
  font-size: 1.06rem;
  font-family: 'Roboto', Arial, sans-serif;
  display: block;
  margin-bottom: 6px;
  color: #294d30;
}

/* =======================================================
   ORGANIC "NATURE" ACCENTS – DECORATIVE SHAPES
   ======================================================= */
.organic-leaf {
  position: absolute;
  width: 120px; height: 62px;
  top: -35px; right: -25px;
  background: #C1F1C1;
  opacity: .17;
  z-index: 0;
  pointer-events: none;
  border-radius: 80% 80% 60% 100%;
  transform: rotate(-18deg);
}

/* Gives hero/cta uniquely subtle organic shadow */
.section.hero {
  box-shadow: 0 8px 64px rgba(44,96,60,0.07);
}
@media (max-width: 500px) {
  .organic-leaf {display:none;}
}

/* =============================
   RESPONSIVE TYPO & LAYOUT
   ============================= */
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
  .card, .feature {
    min-width: 130px; max-width: none; padding: 18px 14px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .topics-tags {
    gap: 5px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 2px;
  }
  .section {
    padding: 13px 2px;
    margin-bottom: 30px;
  }
}

/* =============================
   MICRO-INTERACTIONS & TRANSITIONS
   ============================= */
.card,
.feature, .cta, .cta.primary, .cookie-btn, .cookie-btn.secondary {
  transition: 
    background 0.17s cubic-bezier(.76,.14,.26,1), 
    box-shadow 0.16s cubic-bezier(.65,.14,.22,1), 
    color 0.13s;
}

/* =============================
   SCROLLBAR (Subtle organic style)
   ============================= */
::-webkit-scrollbar {
  width: 10px;
  background: #F1F7F0;
}
::-webkit-scrollbar-thumb {
  background: #B4DAC4;
  border-radius: 6px;
}

/* =============================
   FONT-FACE (Google Fonts fallback!)
   ============================= */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal; font-weight: 400;
  src: local('Playfair Display'), url('https://fonts.gstatic.com/s/playfairdisplay/v26/nuFiD-vYSZviVYUb_rj3ij__anPXPTF1.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto'; font-style: normal; font-weight: 400;
  src: local('Roboto'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu72xKOzY.woff2') format('woff2');
}

/* =============================
   Z-INDEX SAFE LAYERING
   ============================= */
header { z-index: 100; position: relative; }
.mobile-menu { z-index: 1103; }
.cookie-banner { z-index: 1200; }
.cookie-modal { z-index: 1201; }

/* =============================
   PRINT CHEATERS: Print rules!
   ============================= */
@media print { body *:not(.container):not(.section) { display: none !important; } }
