/* ===================================================
   CSS RESET & NORMALIZE
   =================================================== */
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, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, main, 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 {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F7F6F1;
}
body {
  line-height: 1.5;
  color: #2B2D42;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  background: #F7F6F1;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  border-style: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #6F925A;
  outline-offset: 2px;
}

/* ===================================================
   COLOR PALETTE (nature_organic)
   =================================================== */
:root {
  --brand-primary: #2B2D42;
  --brand-secondary: #8D99AE;
  --brand-accent: #C8DEB3; /* organic green accent */
  --brand-yellow: #F8F32B;
  --earth-brown: #826a4a;
  --sand-light: #ede8de;
  --leaf-green: #6F925A;
  --forest-green: #3D5943;
  --moss-bg: #E8EFCF;
  --text-on-light: #2B2D42;
  --text-on-dark: #fff;
}

/* ===================================================
   TYPOGRAPHY (nature_organic + brand guidelines)
   =================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--brand-primary);
  line-height: 1.13;
}
h1 { font-size: 2.25rem; margin-bottom: 18px; letter-spacing: -1.2px; }
h2 { font-size: 1.75rem; margin-bottom: 12px; letter-spacing: -1px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; font-weight: 700; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, li, span, label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--brand-primary);
}
strong { font-weight: 700; }
@media (max-width: 480px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.06rem; }
}

/* ===================================================
   LAYOUTS & CONTAINER FLEX
   =================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent; /* varied per section below */
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--sand-light);
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(109, 125, 65, 0.09);
  padding: 24px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.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: 20px;
  padding: 20px;
  background: var(--moss-bg);
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(61, 89, 67, 0.10);
  margin-bottom: 24px;
  min-width: 220px;
  border-left: 6px solid var(--leaf-green);
  transition: box-shadow 0.22s;
}
.testimonial-card p {
  color: var(--brand-primary);
  font-size: 1.05rem;
  line-height: 1.5;
}
.testimonial-card span {
  color: var(--forest-green);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================================================
   HEADER & NAVIGATION
   =================================================== */
header {
  background: var(--sand-light);
  box-shadow: 0 1px 9px rgba(130, 106, 74, 0.06);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 74px;
}
.logo img {
  height: 42px;
  width: auto;
  border-radius: 12px;
  background: var(--brand-accent);
  box-shadow: 0 2px 8px rgba(109, 125, 65, 0.06);
}
nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
nav a {
  font-weight: 500;
  color: var(--brand-primary);
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.10s, color 0.15s;
}
nav a:hover, nav a:focus {
  background: var(--brand-accent);
  color: var(--forest-green);
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--brand-accent);
  border-radius: 10px;
  padding: 6px 13px;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(130, 106, 74, 0.10);
  color: var(--brand-primary);
  z-index: 201;
  transition: background 0.12s, color 0.15s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--leaf-green);
  color: var(--text-on-dark);
}

/* Show mobile menu button and responsive nav */
@media (max-width: 900px) {
  header .container {
    gap: 10px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===================================================
   MOBILE MENU OVERLAY
   =================================================== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(94, 109, 79, 0.90);
  backdrop-filter: blur(1.5px);
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,1,.3,1.1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--brand-accent);
  font-size: 2.2rem;
  border-radius: 12px;
  color: var(--brand-primary);
  z-index: 410;
  padding: 3px 10px;
  box-shadow: 0 1px 10px rgba(130, 106, 74, .09);
  transition: background 0.14s, color 0.10s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--forest-green);
  color: var(--text-on-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 80px;
  margin-left: 32px;
}
.mobile-nav a {
  color: var(--text-on-dark);
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: none;
  padding: 12px 0;
  border-radius: 8px;
  transition: color 0.15s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-accent);
  color: var(--forest-green);
}
@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/* ===================================================
   HERO SECTION (nature_organic)
   =================================================== */
.hero {
  background: linear-gradient(120deg,#E8EFCF 80%,#ede8de 100%);
  border-radius: 0 0 38px 38px / 0 0 18px 18px;
  box-shadow: 0 8px 28px -12px rgba(130, 106, 74, 0.08);
  margin-bottom: 42px;
  padding-top: 45px;
  padding-bottom: 56px;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: var(--forest-green);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -1.2px;
}
.hero p {
  font-size: 1.14rem;
  color: var(--brand-primary);
  max-width: 515px;
  margin-bottom: 30px;
}

/* FILTER BUTTONS for CATALOG */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}
.filter-buttons button {
  padding: 9px 22px;
  background: var(--leaf-green);
  color: var(--text-on-dark);
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: background 0.18s, color 0.18s, box-shadow 0.20s;
  box-shadow: 0 2px 8px rgba(109,125,65,0.11);
}
.filter-buttons button:hover, .filter-buttons button:focus {
  background: var(--brand-accent);
  color: var(--forest-green);
}

/* ===================================================
   FEATURES & SERVICES
   =================================================== */
.features, .services {
  background: #FAF9F6;
  border-radius: 30px;
  box-shadow: 0 3px 16px rgba(130, 106, 74, 0.08);
  margin-bottom: 44px;
}
.features h2, .services h2 {
  color: var(--forest-green);
  margin-bottom: 10px;
}
.features ul, .services ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
  padding-left: 0;
}
.features li, .services li {
  position: relative;
  background: rgba(200,222,179,0.13);
  padding: 16px 22px 16px 32px;
  border-radius: 17px;
  font-size: 1.06rem;
  color: var(--earth-brown);
  line-height: 1.4;
  box-shadow: 0 2px 10px rgba(109, 125, 65, 0.08);
  margin-bottom: 10px;
}
.features li:before, .services li:before {
  content: '';
  display: inline-block;
  width: 13px; height: 13px;
  background: var(--leaf-green);
  border-radius: 50%;
  margin-right: 14px;
  position: absolute;
  left: 11px; top: 19px;
  box-shadow: 0 2px 6px rgba(109,125,65,0.09);
}
.features li strong, .services li strong {
  color: var(--brand-primary);
}

/* ===================================================
   ABOUT / CONTACT / CONTENT SECTION
   =================================================== */
.about, .contact, .content {
  background: #F7F6F1;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(130, 106, 74, 0.06);
  padding-top: 36px;
  padding-bottom: 36px;
}
.about ul, .contact ul, .content ul {
  margin-top: 14px;
  margin-bottom: 14px;
}
.about li, .contact li, .content li {
  font-size: 1.04rem;
  color: var(--brand-secondary);
  margin-bottom: 8px;
  line-height: 1.35;
}

/* ===================================================
   CALL TO ACTION (CTA)
   =================================================== */
.cta {
  background: var(--brand-accent);
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(61, 89, 67, 0.08);
  margin-bottom: 45px;
}
.cta h2 {
  color: var(--forest-green);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cta p {
  color: var(--brand-primary);
  font-size: 1.11rem;
  margin-bottom: 19px;
}
.cta-btn {
  display: inline-block;
  background: var(--leaf-green);
  color: var(--text-on-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  padding: 13px 32px;
  border-radius: 24px;
  box-shadow: 0 3px 12px rgba(61, 89, 67, 0.13);
  transition: background 0.18s, color 0.15s, box-shadow 0.2s;
  margin-top: 6px;
  letter-spacing: 0.5px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-yellow);
  color: var(--brand-primary);
  box-shadow: 0 8px 22px rgba(200,222,179,0.18);
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonial {
  margin-bottom: 38px;
  background: #FAF9F6;
  border-radius: 25px;
  box-shadow: 0 2px 12px rgba(130, 106, 74, 0.07);
  padding-top: 34px;
  padding-bottom: 34px;
}
.testimonial h2 {
  color: var(--leaf-green);
  margin-bottom: 24px;
}
.testimonial .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}
.testimonial-card {
  min-width: 240px;
  max-width: 410px;
  margin-right: 10px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px rgba(61, 89, 67, 0.16);
}

/* ===================================================
   FOOTER
   =================================================== */
footer {
  background: var(--brand-primary);
  color: var(--text-on-dark);
  padding: 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  padding-top: 28px;
  padding-bottom: 24px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: var(--text-on-dark);
  font-size: 1rem;
  letter-spacing: 0.2px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 3px 0;
  border-radius: 4px;
  transition: background 0.11s, color 0.13s;
}
footer nav a:hover, footer nav a:focus {
  background: var(--leaf-green);
  color: var(--brand-primary);
}
footer .contact-info {
  font-size: 0.98rem;
  color: #C8DEB3;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.45;
  margin-bottom: 8px;
}
footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
footer .social-links span img {
  height: 34px;
  width: 34px;
  border-radius: 11px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
}

/* ===================================================
   SPACING PATTERNS - UTILITIES
   =================================================== */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-1 { margin-top: 10px !important; }
.mt-2 { margin-top: 20px !important; }
.mt-3 { margin-top: 28px !important; }
.gap-1 { gap: 10px !important; }
.gap-2 { gap: 20px !important; }
.gap-3 { gap: 30px !important; }

/* ===================================================
   RESPONSIVE BREAKPOINTS & FLEXFLOW
   =================================================== */
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  .content-wrapper,
  .features ul,
  .services ul,
  .about ul,
  .contact ul,
  .content-grid,
  .card-container,
  .testimonial .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .section, section {
    padding: 26px 7px;
    margin-bottom: 36px;
  }
  .footer .container {
    gap: 12px;
  }
  .hero h1 { font-size: 1.58rem; }
  .cta h2 { font-size: 1.20rem; }
  .card { min-width: 90%; }
}
@media (max-width: 480px) {
  .content-wrapper, .container {
    padding: 0 2px;
  }
  .section, section {
    padding: 17px 2px;
    margin-bottom: 18px;
  }
  .card, .testimonial-card {
    min-width: 99%;
    max-width: 100%;
    padding: 15px 6px;
  }
}
@media (max-width: 540px) {
  .text-image-section { flex-direction: column; gap: 16px; }
}

/* ===================================================
   BUTTONS & UI ELEMENTS
   =================================================== */
button, .cta-btn, .filter-buttons button {
  transition: background 0.14s, color 0.16s, box-shadow 0.15s;
}

/* ===================================================
   COOKIE CONSENT BANNER
   =================================================== */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: var(--brand-primary);
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 16px 14px 18px;
  border-radius: 18px 18px 0 0 / 9px 9px 0 0;
  box-shadow: 0 -2px 20px rgba(61, 89, 67, 0.13);
  z-index: 1000;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  animation: slideBannerUp 0.32s cubic-bezier(.67,1.37,.33,.92);
}
@keyframes slideBannerUp {
  from { transform: translateY(50%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btn {
  margin-left: 8px;
  padding: 7px 18px;
  background: var(--leaf-green);
  color: var(--text-on-dark);
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: background 0.17s, color 0.13s;
}
.cookie-consent-banner .cookie-btn:hover,
.cookie-consent-banner .cookie-btn:focus {
  background: var(--brand-yellow);
  color: var(--brand-primary);
}
.cookie-consent-banner .cookie-secondary {
  background: var(--earth-brown);
  color: var(--text-on-light);
  margin-left: 5px;
}
.cookie-consent-banner .cookie-secondary:hover, .cookie-consent-banner .cookie-secondary:focus {
  background: var(--brand-accent);
  color: var(--forest-green);
}
/* Cookie settings modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(63,79,47,0.53);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #FBFBEF;
  color: var(--brand-primary);
  border-radius: 18px;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 10px 36px rgba(61, 89, 67, 0.18);
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: var(--forest-green);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
  color: var(--brand-primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--leaf-green);
  width: 19px;
  height: 19px;
}
.cookie-modal-content .cookie-btn {
  margin-top: 14px;
  margin-right: 10px;
}
.cookie-modal-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 1.75rem; color: var(--earth-brown);
  background: transparent;
  border-radius: 8px;
  padding: 2px 7px;
  transition: background .12s, color 0.11s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--brand-accent);
  color: var(--forest-green);
}
@media (max-width: 520px) {
  .cookie-modal-content { padding: 16px 6px 6px 8px; min-width: 92vw; }
}

/* ===================================================
   MICRO-INTERACTIONS, HOVERS, & TRANSITIONS
   =================================================== */
.card, .testimonial-card, .cta-btn, .filter-buttons button, .mobile-menu-toggle,
.mobile-menu-close, .cookie-btn, .cookie-category input[type="checkbox"] {
  transition: box-shadow 0.15s, transform 0.13s, filter 0.12s, background 0.14s, color 0.14s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 34px rgba(61, 89, 67, 0.18);
  transform: translateY(-2px) scale(1.013);
}
.cta-btn:active, .filter-buttons button:active,
.mobile-menu-toggle:active, .cookie-btn:active {
  filter: brightness(.95) contrast(1.04);
  transform: scale(.97);
}

/* Organic shapes/decorative accents (SVG backgrounds or clip-path for some larger sections if needed)
   ...for this CSS, we use border-radius and color blocks to mimic organic shapes without custom SVGs */

/* ===================================================
   PRINT OVERRIDES
   =================================================== */
@media print {
  header, .mobile-menu, footer, .cookie-consent-banner, .cookie-modal, .cta, .testimonial {
    display: none !important;
  }
  main { padding: 0; }
}
