/* CSS RESET & NORMALIZATION */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F6F1;
  color: #222;
  line-height: 1.7;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
a {
  color: #23513C;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A9D6A7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #23513C;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1rem; }
strong { font-weight: 700; color: #23513C; }

.main, main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* LAYOUT BASICS */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(35, 81, 60, 0.06);
}

.feature-grid, .card-container, .content-grid, .testimonial-row, .team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}

.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
  position: relative;
}

.feature-item {
  background: #A9D6A7;
  border-radius: 20px;
  padding: 30px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 8px 0 rgba(35, 81, 60, 0.04);
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item h3 {
  font-size: 1.2rem;
  color: #23513C;
}
.feature-item p {
  font-size: 1rem;
  color: #23513C;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 4px 24px 0 rgba(35, 81, 60, 0.18);
  transform: translateY(-4px) scale(1.02);
  background: #23513C;
}
.feature-item:hover *, .feature-item:focus * {
  color: #fff;
  fill: #fff;
}

.article-list,
.gardening-guides-list,
.planting-guides-list,
.pro-tips-list,
.seasonal-tips-list,
.diy-guides-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style-type: disc;
  margin-bottom: 10px;
}
.article-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(35, 81, 60, 0.06);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 6px solid #23513C;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.article-list li:hover, .article-list li:focus {
  border-left: 6px solid #A9D6A7;
  box-shadow: 0 6px 28px 0 rgba(35, 81, 60, 0.13);
}
.article-list h3 {
  font-size: 1.2rem;
  color: #23513C;
  margin-bottom: 6px;
}
.article-list p {
  color: #222;
}
.article-list a {
  align-self: flex-start;
  background: #A9D6A7;
  color: #23513C;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
.article-list a:hover, .article-list a:focus {
  background: #23513C;
  color: #fff;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  border-radius: 32px;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  outline: none;
  text-align: center;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.17s;
  box-shadow: 0 2px 10px rgba(35,81,60,0.08);
  letter-spacing: 0.1em;
}
.btn.primary {
  background: #23513C;
  color: #fff;
  border: 2px solid #23513C;
}
.btn.primary:hover, .btn.primary:focus {
  background: #A9D6A7;
  color: #23513C;
  transform: translateY(-2px) scale(1.025);
}
.btn.secondary {
  background: #A9D6A7;
  color: #23513C;
  border: 2px solid #A9D6A7;
}
.btn.secondary:hover, .btn.secondary:focus {
  background: #23513C;
  color: #fff;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(35, 81, 60, 0.06);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px 16px;
  gap: 30px;
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 6px 17px;
  font-size: 1rem;
  color: #23513C;
  border-radius: 18px;
  transition: background 0.14s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  background: #A9D6A7;
  color: #23513C;
}
header img {
  height: 46px;
}
header .btn {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: none;
  appearance: none;
  border: none;
  background: #23513C;
  color: #fff;
  font-size: 2rem;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  margin-left: 10px;
  z-index: 120;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #A9D6A7;
  color: #23513C;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,81,60,0.97);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.80, 0.10, 0.30, 1.60);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 24px;
  gap: 28px;
  box-shadow: -4px 0 24px rgba(35,81,60,0.12);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  margin-bottom: 26px;
}
.mobile-nav {
  flex-direction: column;
  display: flex !important;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  background: none;
  color: #fff;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 0 8px 8px;
  border-left: 6px solid #A9D6A7;
  border-radius: 0 12px 12px 0;
  transition: background 0.18s, color 0.18s, border-color 0.19s;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A9D6A7;
  color: #23513C;
  border-left: 6px solid #fff;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #A9D6A7 44%, #F8F6F1 100%);
  border-radius: 0 0 36px 36px;
  padding: 48px 0 56px 0;
  box-shadow: 0 10px 38px 0 rgba(35,81,60,0.08);
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.hero h1 {
  color: #23513C;
  font-size: 2.7rem;
}
.hero .subheadline {
  font-size: 1.2rem;
  color: #23513C;
  margin-bottom: 12px;
  font-weight: 500;
}

/* CONTENT/CARD/FEATURE STYLES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(35,81,60,0.08);
  padding: 24px 20px;
  flex: 1 1 280px;
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 32px rgba(35,81,60,0.17);
  transform: translateY(-4px) scale(1.01);
}
.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 CARDS */
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 26px 22px 26px;
  background: #fff;
  border-left: 8px solid #A9D6A7;
  border-radius: 20px 24px 24px 20px;
  min-width: 230px;
  max-width: 400px;
  box-shadow: 0 3px 20px 0 rgba(35,81,60,0.09);
  margin-bottom: 20px;
  transition: border-color 0.15s, box-shadow 0.2s;
}
.testimonial-card strong {
  font-weight: bold;
  font-size: 1rem;
  color: #23513C;
  margin-top: 4px;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #222;
  font-weight: 500;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-left: 8px solid #23513C;
  box-shadow: 0 6px 32px 0 rgba(35,81,60,0.13);
  background: #A9D6A7;
}
.testimonial-card:hover *, .testimonial-card:focus * {
  color: #23513C !important;
}

/* MISC FLEXBOX LISTS / ALIGNMENTS */
.team-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(35,81,60,0.08);
  padding: 17px 18px;
  border-left: 5px solid #A9D6A7;
}
.team-list strong {
  font-size: 1.1rem;
}
.certifications {
  background: #EFFAF0;
  border-radius: 10px;
  padding: 13px 20px;
  font-size: 0.96rem;
}
.certifications ul {
  margin-top: 7px;
  margin-bottom: 0;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 14px;
  padding: 20px 18px;
  box-shadow: 0 2px 8px rgba(35,81,60,0.05);
}
.faq-accordion h3 {
  font-size: 1.13rem;
  margin-bottom: 7px;
  color: #23513C;
}

/* Downloadable, Tips, and Misc blocks */
.downloadable-checklists, .maintenance-tips, .sustainability-tips {
  background: #A9D6A7;
  border-radius: 12px;
  padding: 18px 18px 15px 24px;
  margin-top: 16px;
  box-shadow: 0 2px 10px 0 rgba(35,81,60,0.04);
}
.downloadable-checklists h3, .maintenance-tips h3, .sustainability-tips h3 {
  color: #23513C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
}

/* Contact Details */
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #23513C;
}
.contact-details img {
  width: 22px;
  height: 22px;
}
.map-embed {
  background: #A9D6A7;
  border-radius: 14px;
  padding: 20px;
  color: #23513C;
  margin-top: 10px;
}

/* FOOTER */
footer {
  background: #23513C;
  color: #fff;
  padding: 36px 0 24px 0;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -4px 28px 0 rgba(35,81,60,0.07);
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
footer nav a {
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  padding: 2px 8px;
  border-radius: 7px;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: #A9D6A7;
  color: #23513C;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  font-size: 1rem;
}
.footer-contact img {
  width: 19px;
  height: 19px;
  vertical-align: middle;
}
.footer-hours {
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  z-index: 10000;
  background: #23513C;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 18px 18px 24px;
  box-shadow: 0 -2px 20px 0 rgba(35,81,60,0.13);
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  animation: cookie-in 0.6s cubic-bezier(0.4,0.1,0.2,1);
}
@keyframes cookie-in {0%{transform:translateY(100%);}70%{transform:translateY(-10px);}100%{transform:translateY(0);}}
.cookie-banner-content {
  font-size: 1rem;
  padding-bottom: 5px;
}
.cookie-btn-row {
  display: flex;
  gap: 18px;
  margin-top: 3px;
}
.cookie-btn {
  padding: 10px 28px;
  font-size: 1rem;
  border-radius: 23px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
  margin-right: 8px;
}
.cookie-btn.primary {
  background: #A9D6A7;
  color: #23513C;
}
.cookie-btn.primary:hover, .cookie-btn.primary:focus {
  background: #fff;
  color: #23513C;
}
.cookie-btn.secondary {
  background: #F8F6F1;
  color: #23513C;
  border: 2px solid #A9D6A7;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #A9D6A7;
  color: #23513C;
}
.cookie-btn.ghost {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-btn.ghost:hover, .cookie-btn.ghost:focus {
  background: #A9D6A7;
  color: #23513C;
}
/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(35,81,60,0.46);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s linear;
}
.cookie-modal-backdrop.open { display: flex; }
@keyframes fadeIn {from{opacity:0;}to{opacity:1;}}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 18px;
  min-width: 310px;
  max-width: 95vw;
  padding: 30px 22px 26px 22px;
  box-shadow: 0 8px 40px 0 rgba(35,81,60,0.23);
  z-index: 10002;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  animation: modalIn 0.43s cubic-bezier(0.6,0.09,0.25,1.24);
}
@keyframes modalIn {
  from { transform: scale(0.7) translateY(32px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.25rem;
  color: #23513C;
  font-weight: 800;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 9px 0;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 20px;
  border-radius: 12px;
  background: #A9D6A7;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: #23513C;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0,0,0,0.11);
  transition: transform 0.18s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal .cookie-btn-row {
  justify-content: flex-end;
  margin-top: 6px;
}

/* MEDIA QUERIES (MOBILE FIRST) */
@media (max-width: 1060px) {
  .container { padding: 0 8px; }
  .section, .hero { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 900px) {
  .content-wrapper, .container { max-width: 97vw; }
  .feature-grid, .testimonial-row, .card-container, .content-grid {
    gap: 16px;
  }
  .card, .feature-item, .testimonial-card {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero h1 { font-size: 2.1rem; }
  .feature-grid, .testimonial-row, .card-container, .content-grid, .team-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature-item, .card, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  section, .section, .hero { padding: 32px 7px; }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }
  header nav, header .btn {
    display: none !important;
  }
  header .container { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .hero { padding: 22px 0 30px 0; }
  .section { padding: 18px 6px 28px 6px; }
  .footer-hours, .footer-contact { font-size: 0.95rem; }
  .footer-contact { gap: 12px; }
}

/* Micro-interactions (for cards, btns, etc.) */
.card, .feature-item, .testimonial-card, .btn {
  will-change: transform, box-shadow;
}

/* Hide unwanted blue tap highlight on mobile */
* {
  -webkit-tap-highlight-color: rgba(169,214,167,0.32);
}

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