/* ========== CSS RESET & BASE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F9F7F3;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #26283A;
  background: #F9F7F3;
  min-height: 100vh;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
a {
  color: #3B785A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8AA856;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
  padding-left: 0;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ========== COLORS & BRAND ========== */
:root {
  --color-primary: #26283A;
  --color-secondary: #718899;
  --color-accent: #E8DEC5;
  --color-background: #F9F7F3;
  --color-green: #3B785A;
  --color-leaf: #8AA856;
  --color-earth: #6E5D4A;
  --color-brown-light: #B5A782;
  --color-orange-warm: #C39E77;
  --color-white: #fff;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 9px;
}
p, li {
  font-size: 1rem;
  color: #383941;
}
.subheadline {
  color: var(--color-green);
  font-size: 1.25rem;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
blockquote {
  background: #E8DEC5;
  color: var(--color-earth);
  border-left: 7px solid var(--color-leaf);
  padding: 18px 28px;
  border-radius: 0 18px 18px 0;
  font-style: italic;
  margin-bottom: 20px;
}
strong {
  color: var(--color-green);
  font-weight: 700;
}

/* ========== LAYOUT CONTAINERS ========== */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-background);
  border-radius: 28px;
  box-shadow: 0 3px 24px 0 rgba(39,71,65,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-accent);
  border-radius: 20px;
  box-shadow: 0 3px 20px rgba(41,80,59,0.09);
  margin-bottom: 20px;
  padding: 28px 24px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  transform: translateY(-6px) scale(1.012);
  box-shadow: 0 8px 30px rgba(41,80,59,0.17);
}
.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;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========== NAVIGATION & HEADER ========== */
header {
  background: var(--color-accent);
  border-bottom: 2.5px solid var(--color-green);
  box-shadow: 0 3px 18px rgba(41,80,59,0.05);
  position: sticky;
  top: 0;
  z-index: 31;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.logo img { max-height: 45px; }
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  color: var(--color-green);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 16px;
  transition: background 0.15s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-leaf);
  color: #fff;
}
.cta {
  display: inline-block;
  background: var(--color-green);
  color: #fff;
  padding: 12px 30px;
  font-family: 'Montserrat', sans-serif;
  border-radius: 28px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 18px;
  box-shadow: 0 3px 16px rgba(56,121,90,0.10);
  transition: background 0.18s, box-shadow 0.2s, letter-spacing 0.17s, transform 0.14s;
}
.cta:hover, .cta:focus {
  background: var(--color-leaf);
  color: #fff;
  letter-spacing: 0.07em;
  transform: translateY(-2px) scale(1.03);
}
.cta.primary {
  background: var(--color-primary);
  color: var(--color-accent);
  box-shadow: 0 2px 10px rgba(38,40,58,0.11);
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--color-green);
  color: #fff;
}

/* ====== Mobile Burger Button ====== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-green);
  color: #fff;
  font-size: 2rem;
  padding: 8px 17px;
  border-radius: 50%;
  border: none;
  transition: background 0.2s, color 0.2s;
  z-index: 110;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-leaf);
  color: #fff;
}

/* ====== Mobile Header Nav ====== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(244,242,236,0.98);
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.36,1.41,.34,.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  transition: transform 0.34s cubic-bezier(.29,1.24,.36,.97), opacity 0.16s linear;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 22px 30px 8px 0;
  background: var(--color-green);
  border-radius: 50%;
  color: #fff;
  font-size: 2.3rem;
  padding: 7px 16px;
  border: none;
  transition: background 0.2s, color 0.2s;
  z-index: 130;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-leaf);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding: 46px 40px 0 36px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--color-green);
  font-weight: 700;
  letter-spacing: 0.03em;
  background: none;
  border-radius: 16px;
  padding: 14px 13px;
  display: block;
  width: 100%;
  transition: background 0.19s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-leaf);
  color: #fff;
}

/* ========== HERO & SECTIONS ========== */
main > section:first-child {
  background: linear-gradient(100deg, rgba(232,222,197,1) 91%, rgba(169,188,161,0.18) 100%);
  margin-bottom: 60px;
  border-radius: 0 0 40px 40px;
  min-height: 330px;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature-grid > div {
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 320px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 16px rgba(56,121,90,0.09);
  padding: 24px 18px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border-top: 5px solid var(--color-green);
  transition: box-shadow 0.19s, transform 0.17s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 7px 26px rgba(56,121,90,0.14);
  transform: translateY(-4px) scale(1.027);
}
.feature-grid img {
  width: 44px;
  height: 44px;
}

/* ========== TEAM / CARDS / SERVICES ========== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-cards > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1.5px 15px rgba(77,87,72,0.09);
  padding: 26px 21px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 7px solid var(--color-green);
  transition: box-shadow 0.19s, transform 0.14s;
  min-width: 215px;
}
.service-cards > div:hover {
  box-shadow: 0 9px 27px rgba(68,90,72,0.12);
  transform: translateY(-3px) scale(1.022);
}

.team-section .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-section .text-section > div {
  padding: 18px 17px;
  background: var(--color-accent);
  border-radius: 16px;
  margin-bottom: 6px;
  box-shadow: 0 1.8px 8px rgba(120,120,100,0.11);
}

.trust-symbols {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 23px;
  margin-top: 19px;
}
.trust-symbols img {
  height: 48px;
  filter: grayscale(0.2);
}

/* ========== TESTIMONIALS ========== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 30px 22px 30px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1.5px 18px rgba(60,108,97,0.11);
  min-width: 240px;
  max-width: 350px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  border-top: 3.5px solid var(--color-green);
  position: relative;
  transition: box-shadow 0.20s, transform 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 30px rgba(41,80,59,0.16);
  transform: translateY(-5px) scale(1.017);
}
.testimonial-card .stars {
  font-size: 1.45rem;
  color: var(--color-leaf);
  font-family: 'Montserrat',sans-serif;
  letter-spacing: 2px;
  font-weight: bold;
}
.testimonial-card p {
  color: var(--color-primary);
  font-size: 1.08rem;
  text-align: center;
}
.testimonial-details {
  color: #4B5C3C;
  font-size: 0.97rem;
  opacity: 0.85;
  margin-top: 3px;
  font-style: italic;
  font-family: 'Montserrat',serif;
}

/* ========== FOOTER ========== */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 38px 0 18px 0;
  border-top-left-radius: 34px;
  border-top-right-radius: 34px;
  margin-top: 65px;
  box-shadow: 0 -2px 28px rgba(41,80,59,0.08);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.logo-footer img {
  max-height: 38px;
  margin-bottom: 15px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-direction: column;
}
.footer-nav a {
  color: #fff;
  opacity: 0.82;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
  padding: 2px 6px;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-leaf);
  background: rgba(255,255,255,0.07);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
  opacity: 0.93;
}
.footer-contact img {
  width: 20px;
  margin-right: 5px;
  vertical-align: middle;
  opacity: 0.71;
}
.footer-hours {
  margin-top: 7px;
  font-size: 0.95rem;
  color: #E8DEC5;
}

/* ========== TEXT SECTIONS, ACCORDIONS, MISCELLANEOUS ========== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details, .contact-snippet {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.04rem;
}
.confirmation-message {
  color: var(--color-green);
  font-weight: bold;
  background: #eef4ec;
  padding: 15px 18px;
  border-radius: 12px;
  margin-bottom: 13px;
}
.next-steps {
  margin-bottom: 13px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.faq-accordion h2 {
  font-size: 1.15rem;
  color: var(--color-leaf);
  margin-bottom: 3px;
  margin-top: 17px;
  cursor: pointer;
}
.faq-accordion p {
  color: var(--color-earth);
  font-size: 1.01rem;
  margin-bottom: 2px;
  margin-left: 8px;
}
.faq-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.faq-categories li {
  background: #f1ede3;
  color: var(--color-green);
  border-radius: 11px;
  padding: 7.5px 16px;
  font-size: 0.99rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 5px rgba(69,105,81,0.07);
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-accent);
  border-top: 2.5px solid var(--color-green);
  box-shadow: 0 -1px 15px rgba(77,87,72,0.08);
  z-index: 300;
  padding: 17px 5vw 15px 5vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
  font-size: 1rem;
  transition: transform 0.36s;
}
.cookie-banner.hide {
  transform: translateY(105%);
}
.cookie-banner-message {
  flex: 2 1 250px;
  color: var(--color-earth);
}
.cookie-banner-actions {
  flex: 1 1 auto;
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: 'Montserrat',sans-serif;
  padding: 10px 23px;
  font-size: 1rem;
  border-radius: 20px;
  background: var(--color-green);
  color: #fff;
  font-weight: bold;
  margin-right: 5px;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn:last-child { margin-right: 0; }
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-leaf);
}
.cookie-btn.secondary {
  background: #fff;
  color: var(--color-green);
  border: 1.2px solid var(--color-green);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: var(--color-accent);
  color: var(--color-leaf);
}

/* ===== Cookie Preferences Modal ===== */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,60,40,0.35);
  z-index: 310;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: var(--color-accent);
  color: var(--color-earth);
  padding: 38px 30px 30px 34px;
  border-radius: 30px;
  box-shadow: 0 7px 55px rgba(88,148,108,0.14);
  max-width: 440px;
  width: 93vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 320;
  animation: modalpop 0.41s cubic-bezier(.21,1.13,.45,1.01);
}
@keyframes modalpop {
  0%   { transform: translateY(41px) scale(0.89); opacity: 0; }
  55%  { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-size: 1.35rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 13px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 2px 9px 0;
  gap: 8px;
  border-bottom: 1px solid #cfc4a7;
}
.cookie-category-row:last-child {
  border-bottom: none;
}
.cookie-category-label {
  font-size: 1.07rem;
  color: var(--color-green);
  font-weight: 600;
}
.cookie-toggle {
  width: 44px;
  height: 22px;
  border-radius: 20px;
  background: #b6c5a1;
  position: relative;
  margin-left: 8px;
  display: inline-block;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  top: 2.5px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(41,80,59,0.13);
  transition: left 0.21s cubic-bezier(.41,1.13,.44,1.01);
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider {
  left: 21px;
  background: var(--color-leaf);
}
.cookie-modal-buttons {
  display: flex;
  gap: 11px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin-right: 0;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 992px) {
  .feature-grid > div, .service-cards > div, .testimonial-card {
    min-width: 180px;
    max-width: 100%;
  }
  footer .container {
    gap: 26px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .main-nav, .cta {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .section, main > section {
    padding: 27px 6px;
    border-radius: 13px;
    margin-bottom: 34px;
  }
  .feature-grid, .service-cards, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .service-cards > div, .testimonial-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    gap: 13px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 18px 13px 15px 13px;
    font-size: 0.99rem;
  }
  .cookie-banner-actions {
    justify-content: flex-start;
    gap: 9px;
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.23rem; }
  .container {
    padding-right: 3vw;
    padding-left: 3vw;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 18px 6vw 18px 7vw;
  }
  .footer-nav, .footer-contact, .footer-hours { font-size: 0.95rem; }
}

/* ========== ORGANIC DECORATIVE ELEMENTS ========== */
.section, main > section, .card, .service-cards > div, .feature-grid > div, .testimonial-card, .cookie-modal {
  /* Subtle organic shape (organic border radius) */
  border-radius: 24px 36px 20px 28px;
}

/* Subtle organic shadow for "nature_organic" feel */
.card, .service-cards > div, .feature-grid > div, .testimonial-card {
  box-shadow: 0 7px 40px -6px rgba(82,124,99,0.11), 0 2px 11px rgba(56,121,90,0.08);
}

/* Slight organic wobble to images/icons on hover */
.feature-grid img, .service-cards img, .trust-symbols img {
  transition: transform 0.19s cubic-bezier(.44,1.11,.31,.99);
}
.feature-grid > div:hover img, .service-cards > div:hover img, .trust-symbols img:hover {
  transform: rotate(-5deg) scale(1.08);
}

/* ========== ANIMATIONS & MICRO-INTERACTIONS ========== */
.cta, .cookie-btn {
  transition: background 0.19s, color 0.13s, transform 0.12s, letter-spacing 0.11s;
}
.testimonial-card, .feature-grid > div, .service-cards > div {
  transition: box-shadow 0.20s, transform 0.18s, border-top 0.11s;
}
.card:focus-within, .feature-grid > div:focus-within {
  outline: 2.5px solid var(--color-green);
  outline-offset: 2px;
}
.mobile-menu, .cookie-banner, .cookie-modal {
  will-change: transform, opacity;
}

/* ========== SCROLLBAR STYLING (for webkit) ========== */
::-webkit-scrollbar { width: 10px; background: var(--color-accent); }
::-webkit-scrollbar-thumb {
  background: var(--color-green);
  border-radius: 16px;
  border: 3px solid var(--color-accent);
}

/* ========== PRINT STYLES ========== */
@media print {
  header, nav, footer, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  body { background: #fff !important; color: #222 !important; }
}
