/* ========================================================
   RESET & BASE STYLES
   ======================================================== */
html {
  box-sizing: border-box;
  height: 100%;
  font-size: 16px;
}
*, *::before, *::after { box-sizing: inherit; }

body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F6F5F0;
  color: #25313C;
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-size: 1rem;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #486123;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #20451f;
  outline: none;
}
ul, ol {
  margin: 1.25em 0 1.25em 1.5em;
  padding: 0;
}
ul li, ol li {
  margin-bottom: 0.5em;
}

/* Remove tap highlight on mobile */
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #25313C;
  margin: 0.4em 0 0.3em 0;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.18rem; font-weight: 500; }
p {
  margin: 0 0 1em 0;
  color: #25313C;
}

blockquote {
  margin: 1em 0;
  font-style: italic;
  background: #F6F5F0;
  border-left: 4px solid #C4B08B;
  padding: 1em 1.5em;
  color: #5b664c;
  border-radius: 8px;
}

address {
  font-style: normal;
  margin: 1em 0;
}

/* ================= CONTAINER & FLEX LAYOUTS ================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
}

.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;
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafaf6;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(120,145,80,0.07);
  border: 1px solid #e0e6de;
  margin-bottom: 20px;
}

/* Features grid in sections */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.features-grid > div {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 5px 0 rgba(118, 127, 80, 0.06);
  padding: 28px 24px 22px 24px;
  border: 1px solid #e0e6de;
  transition: box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.features-grid > div:hover {
  box-shadow: 0 6px 18px 0 rgba(96, 110, 66, 0.13);
  transform: translateY(-4px) scale(1.02);
}
.features-grid img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 2px rgba(120,145,90,0.035));
}
.features-grid h3 {
  font-size: 1.13rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 0.1em;
  color: #486123;
}
.features-grid p {
  font-size: 1rem;
  color: #232717;
  margin: 0;
}

/*******************************
   HERO SECTION
*******************************/
.hero-section {
  background: #e9ede3;
  border-radius: 0 0 70px 70px/0 0 45px 45px;
  box-shadow: 0 10px 34px 0 rgba(60,70,40,0.07);
  min-height: 285px;
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero-section .content-wrapper {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero-section h1, .hero-section h2 {
  color: #25313C;
  font-size: 2.3rem;
  margin-bottom: 0.4em;
  font-family: 'Playfair Display', serif;
}
.hero-section p {
  font-size: 1.1rem;
  color: #486123;
  margin-bottom: 0.6em;
}

/*******************************
   CTA BUTTONS
*******************************/
.cta-btn {
  background: linear-gradient(90deg,#6F8E3B 0%, #AFC986 100%); /* fallback for organic green */
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 0.93em 2.5em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 14px 0 rgba(90,110,70,0.11);
  cursor: pointer;
  outline: none;
  margin-top: 1.1em;
  transition: background 0.22s, box-shadow 0.22s, transform 0.13s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,#486123 0%, #8EB755 100%);
  box-shadow: 0 6px 22px 0 rgba(74,85,55,0.10);
  transform: translateY(-2px) scale(1.033);
}

/*******************************
   HEADER & NAVIGATION
*******************************/
header {
  background: #fff;
  border-bottom: 1.5px solid #e0e6de;
  box-shadow: 0 2px 12px 0 rgba(40,62,35,0.01);
  padding: 0;
  position: relative;
  z-index: 19;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}
.logo img {
  max-height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-right: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #304221;
  padding: 6px 14px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e9ede3;
  color: #486123;
}

/*******************************
   MOBILE MENU & HAMBURGER
*******************************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #486123;
  font-size: 2rem;
  padding: 4px 12px;
  margin-left: 0.7em;
  cursor: pointer;
  z-index: 31;
  border-radius: 50%;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #e3eed4;
  color: #25313C;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(232, 236, 215, 0.97);
  z-index: 99;
  transform: translateX(-105%);
  transition: transform 0.35s cubic-bezier(.7,.15,.39,1.02);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #486123;
  font-size: 2.2rem;
  padding: 13px 16px 13px 8px;
  align-self: flex-end;
  margin: 7px 18px 5px 0;
  cursor: pointer;
  z-index: 101;
  border-radius: 60px;
  transition: background 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #e9ede3;
  color: #20451f;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 28px 42px 28px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #304221;
  padding: 12px 6px;
  border-radius: 16px;
  width: 100%;
  transition: background 0.13s, color 0.19s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #c4b08b25;
  color: #6F8E3B;
}

/*******************************
   FOOTER
*******************************/
footer {
  background: #f5f4eb;
  border-top: 1px solid #dedbcc;
  margin-top: 60px;
  padding-top: 32px;
  color: #25313C;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 30px;
}
.footer-logo img {
  width: 56px;
  height: auto;
  margin-bottom: 12px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-legal a {
  font-size: 1rem;
  color: #486123;
  transition: color 0.16s;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-nav a:focus, .footer-legal a:focus {
  color: #2b4020;
}
.footer-contact {
  font-size: 0.97rem;
  color: #304221;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 320px;
}
.footer-contact p,
.footer-contact a {
  color: #25313C;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
}
.footer-social a img {
  width: 29px;
  height: 29px;
  filter: grayscale(0.4);
  transition: filter 0.19s, transform 0.17s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: none;
  transform: scale(1.12);
}
.footer-bottom {
  border-top: 1px solid #e0e6de;
  padding: 15px 0 8px 0;
  text-align: center;
  color: #909170;
  font-size: 0.97rem;
}

/*******************************
   TESTIMONIALS SECTION
*******************************/
.testimonial-section {
  background: #e9ede3;
  border-radius: 40px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 5px 0;
}
.testimonial-card {
  flex: 1 1 300px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(105,124,90,0.07);
  padding: 24px 28px;
  border: 1px solid #dee0ce;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 270px;
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #232717;
  margin-bottom: 18px;
}
.testimonial-card span {
  color: #687a5d;
  font-size: 0.96rem;
}
.rating-summary {
  margin-top: 24px;
  color: #486123;
  font-size: 1.1rem;
  background: #f4f6f0;
  border-radius: 16px;
  display: inline-block;
  padding: 8px 17px;
  font-weight: 500;
}

/*******************************
   FAQ ACCORDION
*******************************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
  margin-bottom: 20px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 8px;
  padding: 18px 22px 14px 22px;
  border: 1px solid #e0e6de;
  box-shadow: 0 1px 6px 0 rgba(120,155,90,0.075);
  transition: box-shadow 0.15s;
}
.faq-accordion > div:hover {
  box-shadow: 0 5px 14px 0 rgba(98,125,85,0.11);
}
.faq-accordion h3 {
  margin-bottom: 0.3em;
  font-size: 1.15rem;
  color: #486123;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/*******************************
   ORGANIC/NATURE INSPIRED DECORATIONS
*******************************/
.section, .testimonial-section, .card, .features-grid > div, .card {
  border-radius: 24px 30px 20px 33px / 26px 45px 24px 36px;
}

/*******************************
   TYPOGRAPHY & SPACING
*******************************/
.text-section {
  margin-bottom: 34px;
  color: #47513c;
  font-size: 1.1rem;
}
.text-section ul, .text-section ol {
  margin-bottom: 1em;
}
.text-section li {
  padding-left: 0;
}

/*******************************
   CARDS & CONTENT BLOCKS
*******************************/
.card {
  background: #fafcf7;
  border-radius: 20px;
  box-shadow: 0 2px 11px 0 rgba(120,145,90,0.06);
  border: 1px solid #e3e6da;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.17s;
}
.card:hover {
  box-shadow: 0 5px 18px 0 rgba(98,125,85,0.13);
  transform: scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 22px 20px;
}

/*******************************
   COOKIE CONSENT BANNER
*******************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #e2e7d1;
  color: #25313C;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -6px 18px 0 rgba(70,110,47,0.09);
  z-index: 1201;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw 18px 6vw;
  gap: 14px;
  font-size: 1.02rem;
  transition: transform 0.33s cubic-bezier(.59,.08,.49,1.39);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 11px;
}
.cookie-btn {
  border: none;
  background: #6F8E3B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 22px;
  border-radius: 17px;
  box-shadow: 0 3px 11px 0 rgba(100,120,50,0.05);
  margin-left: 0;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.21s, color 0.13s;
}
.cookie-btn.settings {
  background: #C4B08B;
  color: #25313C;
}
.cookie-btn.reject {
  background: #c87474;
  color: #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #486123;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #a39671;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #a94040;
}

/* Cookie Modal Styles */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(45, 61, 29, 0.23);
  display: none;
  z-index: 1400;
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fafaf6;
  border-radius: 26px;
  box-shadow: 0 8px 32px 0 rgba(109,140,60,0.13);
  padding: 35px 27px 28px 27px;
  width: 92vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: showModal 0.28s cubic-bezier(.2,.8,.2,1.1);
}
@keyframes showModal {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 1em;
  color: #25313C;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e9ede3;
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 11px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #486123;
  width: 18px;
  height: 18px;
}
.cookie-category .disabled, .cookie-category input[disabled] {
  opacity: 0.57;
}
.cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  color: #6F8E3B;
  border: none;
  font-size: 1.5rem;
  padding: 8px 13px 8px 13px;
  position: absolute;
  top: 8px;
  right: 8px;
  cursor: pointer;
  border-radius: 40px;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #e9ede3;
  color: #466129;
}

/*******************************
   MEDIA QUERIES - RESPONSIVE
*******************************/
@media (max-width: 1070px) {
  .container { max-width: 98vw; }
  .footer-main { gap: 19px; }
}
@media (max-width: 900px) {
  .features-grid > div, .testimonial-card {
    min-width: 170px;
  }
  .features-grid { gap: 18px; }
  .footer-main { flex-wrap: wrap; gap: 15px; }
}
@media (max-width: 800px) {
  header .container {
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
  }
  .main-nav { gap: 9px; }
  .footer-main { flex-wrap: wrap; gap: 10px; }
  .testimonial-slider { gap: 12px; }
}
@media (max-width: 700px) {
  .hero-section {
    border-radius: 0 0 45px 45px/0 0 35px 35px;
    padding: 35px 0 15px 0;
  }
  .section, .testimonial-section {
    padding: 22px 7px;
    border-radius: 17px;
  }
  .testimonial-slider {
    gap: 8px;
    flex-direction: column;
  }
  .container {
    max-width: 98vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 20px; }
  .content-grid, .features-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.49rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.08rem; }
  .section, .testimonial-section { padding: 13px 2vw 28px 2vw; }
  .testimonial-section { margin-bottom: 35px; }
  .footer-main { padding-bottom: 12px; }
  .features-grid > div {
    padding: 19px 13px 14px 13px;
  }
  .hero-section .content-wrapper { gap: 12px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .main-nav {display: none;}
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 440px) {
  body, html { font-size: 15px; }
  .footer-logo img { width: 43px; }
  .footer-contact { font-size: 0.91rem; }
  .cookie-modal {
    padding: 15px 7px 13px 7px;
    max-width: 97vw;
  }
}

/*******************************
   UTILITY & MISC
*******************************/
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
::-webkit-input-placeholder { color: #687a5d90; }
::placeholder { color: #687a5d90; }

/*******************************
   OVERRIDES & POLISH
*******************************/
.features-grid > div:before, .section:before {
  /* Decorative organic shapes, optional - See JS/Illustration for implementation */
}

.main-nav a.active, .footer-nav a.active {
  background: #e9ede3;
  color: #6F8E3B;
}

/*******************************
   INTERACTIVE/MICRO-ANIMATIONS
*******************************/
.cta-btn, .cookie-btn, .features-grid > div, .mobile-menu-toggle, .mobile-menu-close, .footer-social a img {
  will-change: transform, box-shadow;
  transition: box-shadow 0.22s, transform 0.08s, background 0.18s, color 0.18s;
}

/*******************************
   SCROLLBAR CUSTOMIZATION
*******************************/
body, .mobile-menu, .cookie-modal {
  scrollbar-color: #AFC986 #F6F5F0;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  height: 6px;
  width: 7px;
  background: #F6F5F0;
}
::-webkit-scrollbar-thumb {
  background: #c7d1aa;
  border-radius: 8px;
}
