/* ========================
   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,
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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
/* Set base line-height & BG */
body {
  line-height: 1.6;
  background: #F7F6F3 url('../assets/bg-texture.jpg') repeat;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #223223;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #218148;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1B6638;
  outline: none;
}
ul, ol {
  list-style: disc;
  margin-left: 1.5em;
}
strong, b {
  font-weight: 700;
}

/* ========================
   TYPOGRAPHY
   ======================== */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #218148;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #214D35;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #218148;
  margin-bottom: 10px;
  line-height: 1.18;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #386641;
}
p, li, .legal-content {
  font-size: 1rem;
  color: #232A20;
}
p {
  margin-bottom: 12px;
}

/* Responsive font sizes */
@media (min-width: 500px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.125rem; }
  h3 { font-size: 1.5rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
}

/* ========================
   LAYOUT CONTAINERS
   ======================== */
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(229,246,220,0.56);
  border-radius: 32px;
  box-shadow: 0 2px 16px 0 rgba(33,129,72,0.07);
  transition: box-shadow 0.25s;
}
.section:hover, .section:focus-within {
  box-shadow: 0 4px 24px 0 rgba(33,129,72,0.16);
}

.card-container, .feature-grid, .services-list, .team-section, .case-studies, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .feature, .service-teaser, .blog-preview, .case-study-block, .team-member {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 8px 0 rgba(26,102,56,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover, .feature:hover, .service-teaser:hover, .blog-preview:hover, .case-study-block:hover {
  box-shadow: 0 4px 24px 0 rgba(33,129,72,0.18);
  transform: translateY(-4px) scale(1.022);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(33,129,72,0.1);
  margin-bottom: 20px;
  border-left: 8px solid #218148;
  min-width: 270px;
  max-width: 420px;
}
.testimonial-card p {
  color: #253422;
  font-size: 1.05rem;
}
.testimonial-author {
  color: #218148;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 16px;
}

/* ========================
   HEADER & NAVIGATION
   ======================== */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(54, 69, 41, 0.04);
  position: relative;
  z-index: 99;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 18px 15px 18px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1B6638;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E5F6DC;
  color: #218148;
}
.cta-button {
  background: #218148;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 24px;
  border-radius: 18px;
  border: none;
  font-size: 1.08rem;
  margin-left: 12px;
  text-align: center;
  box-shadow: 0 3px 10px 0 rgba(33,129,72, 0.11);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.23s, transform 0.2s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #1B6638;
  color: #FFE156;
  box-shadow: 0 7px 24px 0 rgba(33,129,72, 0.16);
  transform: translateY(-1px) scale(1.025);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border: none;
  color: #218148;
  font-size: 2rem;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 102;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E5F6DC;
}

/* Mobile nav overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(229,246,220,0.99);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 24px 0 24px;
  z-index: 999;
  transform: translateX(-102vw);
  transition: transform 0.39s cubic-bezier(0.43, 0.18, 0.42, 1);
  box-shadow: 0 6px 40px 0 rgba(33,129,72, 0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #1B6638;
  font-size: 2rem;
  margin-bottom: 30px;
  margin-left: auto;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #218148;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1B6638;
  font-size: 1.28rem;
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.18s, color 0.2s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #E5F6DC;
  color: #218148;
}
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 991px) {
  .mobile-menu { display: none !important; }
}

/* ========================
   HERO & CTA-BANNER
   ======================== */
.hero {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  background: #E5F6DC;
  border-radius: 36px 10px 36px 10px;
  padding: 54px 30px 44px 30px;
  box-shadow: 0 8px 32px 0 rgba(33,129,72, 0.12);
  margin-bottom: 35px;
  position: relative;
}
.hero:after {
  content: '';
  position: absolute;
  right: 18px; bottom: 12px;
  width: 64px; height: 64px;
  background: url('../assets/icons/icon-leaf.svg') no-repeat center/contain;
  opacity: 0.09;
  z-index: 0;
  pointer-events: none;
}
.cta-banner {
  background: #218148;
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 32px 0 rgba(33,129,72, 0.19);
  padding: 44px 24px 36px 24px;
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-banner h2,
.cta-banner p {
  color: #fff;
}
.cta-banner .cta-button {
  background: #FFE156;
  color: #218148;
  font-weight: bold;
  margin: 18px auto 0 auto;
  box-shadow: 0 4px 28px 0 rgba(255,225,86,0.10);
}
.cta-banner .cta-button:hover,
.cta-banner .cta-button:focus {
  background: #fff;
  color: #218148;
  border: 2px solid #218148;
}

/* =============================
   FEATURE, SERVICE, TEAM CARDS
   ============================= */
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 9px 0 rgba(80, 118, 63, 0.10);
  padding: 28px 22px;
  min-width: 235px;
  max-width: 340px;
  border-left: 5px solid #218148;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}
.service-teaser, .team-member, .blog-preview, .case-study-block {
  min-width: 236px;
  max-width: 398px;
}
.service-teaser img,
.team-member img,
.case-study-block img {
  width: 42px;
  height: 42px;
  margin-bottom: 7px;
}
.service-teaser h3,
.team-member h3 {
  margin-bottom: 4px;
}
.cta-link {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #218148;
  font-size: 1rem;
  margin-top: 8px;
  transition: color 0.15s, text-decoration 0.18s;
}
.cta-link:hover, .cta-link:focus {
  color: #1B6638;
  text-decoration: underline;
}

.team-section,
.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}
.team-highlights {
  flex: 1 1 250px;
  background: #E5F6DC;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 1px 6px 0 rgba(33,129,72,0.06);
}

.impact-highlights {
  background: #E5F6DC;
  border-radius: 12px;
  padding: 16px 14px;
  font-size: 1.1rem;
  color: #218148;
  margin-top: 18px;
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 8px 0 rgba(33,129,72,0.09);
  padding: 14px 18px 10px 18px;
}
.faq-item h3 {
  font-size: 1.08rem;
  color: #1B6638;
  margin-bottom: 5px;
}

/* Blog categories nav */
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}
.blog-categories a {
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 7px;
  background: #E5F6DC;
  color: #218148;
  font-weight: 500;
  padding: 7px 14px;
  transition: background 0.15s, color 0.15s;
}
.blog-categories a:hover,
.blog-categories a:focus {
  background: #218148;
  color: #FFE156;
}

.newsletter-signup {
  background: #E5F6DC;
  border-radius: 22px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* =============================
   CONTACT SECTION & OFFICE HOURS
   ============================= */
.contact-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  background: #E5F6DC;
  border-radius: 18px;
  padding: 24px 18px 18px 18px;
  margin-bottom: 18px;
}
.address-info, .phone-info, .email-info, .address-map {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 180px;
  font-size: 1.01rem;
  color: #214D35;
}
.address-info img, .phone-info img, .email-info img, .address-map img {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}
.contact-cta, .office-hours {
  background: #fff;
  border-radius: 12px;
  padding: 22px 16px;
  box-shadow: 0 1px 8px 0 rgba(138, 178, 103, 0.08);
  margin-top: 14px;
}
.office-hours ul {
  margin-bottom: 8px;
  margin-left: 1.5em;
}

/* =============================
   LEGAL PAGES
   ============================= */
.legal-content {
  background: #fff;
  border-radius: 14px;
  padding: 22px 16px 18px 16px;
  box-shadow: 0 1px 10px 0 rgba(26,102,56,0.07);
  color: #222;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.legal-content h2 {
  color: #218148;
  margin-top: 16px;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.legal-content ul {
  margin-bottom: 12px;
  margin-left: 1.4em;
}

/* =============================
   BLOG PREVIEWS
   ============================= */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-preview {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(33,129,72,0.10);
  padding: 26px 20px 18px 20px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  transition: box-shadow 0.2s, transform 0.16s;
}
.blog-preview:hover {
  box-shadow: 0 8px 28px 0 rgba(33,129,72,0.14);
  transform: translateY(-3px) scale(1.021);
}

/* ======================
   FOOTER
   ====================== */
footer {
  background: #214D35;
  color: #F7F6F3;
  margin-top: 70px;
  width: 100%;
  padding: 0;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 38px 20px 32px 20px;
}
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  min-width: 210px;
}
.footer-branding img {
  height: 36px;
  margin-bottom: 2px;
}
.footer-branding span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #FFE156;
  font-weight: 600;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}
.footer-nav a {
  color: #FFE156;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 5px 0;
  border-radius: 3px;
  transition: background 0.17s, color 0.15s;
}
.footer-nav a:focus,
.footer-nav a:hover {
  color: #214D35;
  background: #FFE156;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: 0.98rem;
  min-width: 200px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.footer-contact a {
  color: #FFE156;
  text-decoration: underline;
  font-size: inherit;
}
.footer-contact a:hover {
  color: #fff;
  text-decoration: none;
}

/* ======================
   RESPONSIVENESS
   ====================== */
@media (max-width: 1100px) {
  .footer-container {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
}
@media (max-width: 950px) {
  .container {
    padding: 0 10px;
  }
  .header-container, .footer-container {
    padding-left: 12px; padding-right: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  .content-wrapper, .blog-list, .case-studies, .feature-grid, .service-list, .blog-categories, .card-container, .team-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 36px 6px 20px 6px;
  }
  .main-nav {display: none;}
  .hero, .cta-banner, .section {
    padding: 26px 8px 22px 8px;
    border-radius: 19px;
  }
  .card, .feature, .service-teaser, .blog-preview {
    max-width: 100%;
    min-width: unset;
    padding: 18px 8px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: unset;
    padding: 18px 8px;
  }
  .client-logos {
    gap: 18px;
  }
  .newsletter-signup, .impact-highlights, .team-highlights, .legal-content, .contact-details, .office-hours {
    padding: 14px 6px;
    border-radius: 7px;
  }
}
@media (max-width: 499px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.22rem; }
}

/* ======================
   MICRO-INTERACTIONS
   ====================== */
button, .cta-button, .mobile-menu-toggle, .mobile-menu-close, .cta-link {
  transition: background 0.18s, color 0.17s, box-shadow 0.21s, transform 0.17s;
  cursor: pointer;
}

/* ======================
   COOKIE CONSENT BANNER
   ====================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #E5F6DC;
  color: #214D35;
  font-family: 'Open Sans',Arial,sans-serif;
  padding: 20px 10px 16px 16px;
  box-shadow: 0 -8px 18px 0 rgba(33,129,72,0.18);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  z-index: 1500;
  animation: cookieBannerIn 0.45s cubic-bezier(0.54,0,0.52,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(64px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-message {
  flex: 2 1 350px;
  font-size: 1rem;
  margin-right: 16px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 10px;
  flex: 1 1 auto;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 9px;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 18px;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  margin: 0 2px;
}
.accept-cookies {
  background: #218148;
  color: #fff;
}
.accept-cookies:hover,
.accept-cookies:focus {
  background: #1B6638;
  color: #FFE156;
}
.reject-cookies {
  background: #fff;
  color: #218148;
  border: 1.7px solid #218148;
}
.reject-cookies:hover,
.reject-cookies:focus {
  background: #E5F6DC;
  color: #1B6638;
}
.settings-cookies {
  background: #FFE156;
  color: #218148;
  border: 1.5px solid #218148;
}
.settings-cookies:hover,
.settings-cookies:focus {
  background: #fff;
  color: #1B6638;
}
@media (max-width: 570px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 5px 10px 5px;
    gap: 12px;
  }
  .cookie-consent-banner .cookie-actions {
    flex-direction: column;
    gap: 5px;
    align-items: stretch;
    width: 100%;
  }
}

/* Cookie preferences modal popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1900;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(43, 52, 20, 0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.28s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(33,129,72,0.18);
  padding: 36px 24px 24px 24px;
  min-width: 300px;
  max-width: 420px;
  width: 95vw;
  color: #214D35;
  position: relative;
  animation: modalPopIn 0.35s cubic-bezier(0.32,1.2,0.21,1);
}
@keyframes modalPopIn {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #218148;
  font-size: 1.18rem;
  margin-bottom: 9px;
}
.cookie-modal .cookie-category {
  background: #E5F6DC;
  border-radius: 8px;
  padding: 13px 10px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  width: 34px;
  height: 22px;
  position: relative;
  display: inline-block;
}
.cookie-modal .cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  border: 2px solid #218148;
  border-radius: 22px;
  transition: background 0.18s;
}
.cookie-modal .cookie-toggle input:checked + .cookie-slider {
  background: #218148;
  border-color: #218148;
}
.cookie-modal .cookie-slider::before {
  content: '';
  position: absolute;
  left: 4px; top: 2px;
  width: 13px; height: 13px;
  background: #E5F6DC;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-modal .cookie-toggle input:checked + .cookie-slider::before {
  transform: translateX(10px);
  background: #FFE156;
}
.cookie-modal .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .close-cookie-modal {
  background: none;
  border: none;
  color: #1B6638;
  font-size: 1.7rem;
  position: absolute;
  top: 13px; right: 18px;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.17s, color 0.17s;
  padding: 2px 6px;
}
.cookie-modal .close-cookie-modal:hover,
.cookie-modal .close-cookie-modal:focus {
  background: #E5F6DC;
  color: #218148;
}

/* ==========================
   UTILITIES & ORGANIC STYLE
   ========================== */
/* Earth tone palette and green accent as per brand */
.organic-divider {
  height: 2px;
  background: #EDE2CF;
  border-radius: 4px;
  margin: 28px 0;
}
.organic-bg {
  background: #E5F6DC;
}
.organic-shape {
  background: #FFE156;
  border-radius: 41% 59% 62% 38% / 61% 35% 65% 40%;
  opacity: 0.12;
  width: 80px; height: 49px;
  position: absolute;
  right: 7%; top: 42px;
  z-index: 0;
}

/* Spacing and sizing helpers */
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-20 { margin-top: 20px; }
.mt-32 { margin-top: 32px; }
.p-16 { padding: 16px; }
.p-24 { padding: 24px; }
.gap-24 { gap: 24px; }

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ====================
   PRINT BASIC SUPPORT
   ==================== */
@media print {
  header, footer, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; }
  .container, .section { box-shadow: none !important; background: #fff !important; }
}

/* ==========================
   ANIMATIONS & TRANSITIONS
   ========================== */
.fade-in {
  animation: fadeInUp 0.74s cubic-bezier(0.38,0.91,0.39,1.05);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.scale-in {
  animation: scaleIn 0.36s cubic-bezier(0.54,0,0.52,1);
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
