/* CSS RESET & BASE STYLES */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #434636;
  background: #F8F9FA;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-color: #f5f4ef;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #2D6A4F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #B8401F;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Open Sans', Arial, sans-serif;
  color: #2D6A4F;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
h1 { font-size: 2.4rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; }
h4, h5, h6 { font-size: 1rem; }
p, li, blockquote { font-size: 1rem; }
.subtitle {
  color: #52796F;
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 24px;
}
strong { color: #2D6A4F; font-weight: bold; }

ol, ul {
  margin: 0 0 20px 20px;
  padding-left: 0px;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}


/****************** LAYOUT STRUCTURE *******************/

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(45, 106, 79, 0.06);
}

/****************** HEADER & NAV *******************/

header {
  background-color: #fff;
  box-shadow: 0 3px 18px 0 rgba(45, 106, 79, 0.1);
  padding: 0;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  padding: 8px 0;
  color: #2D6A4F;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B8401F;
  border-bottom: 2px solid #B8401F;
}
.button-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  background-color: #2D6A4F;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(45, 106, 79, 0.08);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  outline: none;
  margin-left: 20px;
}
.button-primary:hover, .button-primary:focus {
  background-color: #40916C;
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.16);
  color: #fff;
}
.button-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 28px;
  background: #E07A5F;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
  margin-top: 10px;
}
.button-secondary:hover, .button-secondary:focus {
  background: #B8401F;
  color: #fff;
}

/****************** BURGER MOBILE MENU *******************/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 202;
  background: #2D6A4F;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(45, 106, 79, 0.09);
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #B8401F;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #eaf4ea;
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.45,.05,.55,.95);
  box-shadow: 32px 0px 22px -14px rgba(45, 106, 79, 0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #2D6A4F;
  font-size: 2rem;
  border: none;
  margin: 20px 0 0 24px;
  align-self: flex-start;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #c7e1cd;
  color: #B8401F;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 40px 0 0 32px;
}
.mobile-nav a {
  color: #274D36;
  font-size: 1.25rem;
  padding: 8px 0;
  border-bottom: 1px solid #C2C4AE;
  transition: color 0.18s, background 0.18s;
  border-radius: 8px;
}
.mobile-nav a:active, .mobile-nav a:hover {
  color: #B8401F;
  background: #e0efe1;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  header .container {
    gap: 12px;
  }
  .button-primary {
    margin-left: 10px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 8px;
    padding: 12px 8px;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    justify-content: space-between;
  }
  .main-nav {
    display: none;
  }
  .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 480px) {
  .mobile-menu {
    padding-left: 0px;
  }
  .mobile-nav {
    margin-left: 16px;
  }
}

/******************* SECTIONS & FLEX LAYOUTS ********************/

.feature-grid, .category-grid, .recipe-teasers, .story-cards, .ideas-grid, .blog-card-grid, .recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.feature,
.category,
.recipe-card,
.story-card,
.idea,
.blog-card,
.teaser {
  background: #F8F9FA;
  border-radius: 16px 32px 32px 16px;
  box-shadow: 0 1px 10px 0 rgba(45, 106, 79, 0.06);
  padding: 28px 24px;
  flex: 1 1 280px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature:hover,
.category:hover,
.recipe-card:hover,
.story-card:hover,
.idea:hover,
.blog-card:hover,
.teaser:hover {
  box-shadow: 0 5px 26px 0 rgba(45,106,79,0.18);
  transform: translateY(-2px) scale(1.018);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffffa;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(45,106,79,0.07);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
}
.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;
}
.benefits-list, .tips-list, .team-bios, .tradition-highlights ul, .blog-categories, .popular-posts ul, .thematic-lists ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/******* Responsive section/grid layouts ******/
@media (max-width: 992px) {
  .feature-grid, .category-grid, .recipe-teasers, .story-cards, .ideas-grid, .blog-card-grid, .recipe-cards {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .category-grid, .recipe-teasers, .story-cards, .ideas-grid, .blog-card-grid, .recipe-cards {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 24px 4px;
  }
  h1 { font-size: 1.62rem; }
  h2 { font-size: 1.22rem; }
}

/********************* PROCESS STEPS / ACCORDION / FAQ *******************/
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}
.infographic {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: bold;
  color: #B8401F;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #effaf1;
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 1px 7px 0 rgba(45,106,79,0.07);
}
.faq-item h3 {
  margin-bottom: 10px;
  cursor: pointer;
  color: #2D6A4F;
}
.faq-answer {
  color: #274D36;
  font-size: 0.98rem;
}

/********************** TESTIMONIALS *********************/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  border-radius: 20px;
  background: #fdfdf9;
  border: 2px solid #C2C4AE;
  min-width: 260px;
  max-width: 360px;
  box-shadow: 0 2px 16px 0 rgba(45, 106, 79, 0.12);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s;
}
.testimonial-card blockquote {
  color: #2D6A4F;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
}
.testimonial-meta span {
  color: #52796F;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(45, 106, 79, 0.12);
}

/*********************** FOOTER ***********************/
footer {
  background: #f5f4ef;
  margin-top: 40px;
  border-top: 1px solid #DFE8DF;
  padding-top: 36px;
  padding-bottom: 24px;
}
footer .container {
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #2D6A4F;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 2px 0;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B8401F;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact span {
  color: #2D6A4F;
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-branding img {
  height: 60px;
  width: auto;
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}

/****************** CONTACT & MAP PLACEHOLDER *******************/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.contact-details img {
  margin-right: 8px;
}
.map-embed {
  background: #eff4eb;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  font-size: 1rem;
  color: #868b7a;
  margin-top: 8px;
}
.map-placeholder {
  font-style: italic;
  color: #A5B38A;
}

/***************** SEARCH FORM & FILTER BAR **********************/
.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.search-form input {
  padding: 10px 14px;
  border-radius: 15px;
  border: 1px solid #C2C4AE;
  font-size: 1rem;
  min-width: 160px;
  outline: none;
  transition: border 0.18s;
  background: #f5f4ef;
}
.search-form input:focus {
  border-color: #2D6A4F;
}
.filter-bar {
  display: flex;
  align-items: center;
  background: #ECF4EE;
  border-radius: 15px;
  padding: 10px 16px;
  color: #587b64;
  font-size: 0.98rem;
  margin-bottom: 10px;
  margin-top: 10px;
}

/**************** PAGINATION ******************/
.pagination {
  display: flex;
  flex-direction: row;
  gap: 8px;
  margin-top: 20px;
}
.pagination span, .pagination a {
  padding: 8px 14px;
  border-radius: 14px;
  border: 1px solid #C2C4AE;
  background: #fff;
  color: #2D6A4F;
  font-weight: 600;
  font-size: 1.02rem;
  transition: background 0.16s, color 0.16s;
}
.pagination a:hover, .pagination a:focus {
  background: #e6f7ed;
  color: #B8401F;
}
.pagination span {
  background: #2D6A4F;
  color: #fff;
  border-color: #2D6A4F;
}

/***************** ANIMATIONS & MICRO-INTERACTIONS ***************/
section, .card, .feature, .category, .teaser, .story-card, .idea, .blog-card, .testimonial-card {
  transition: box-shadow 0.18s, transform 0.14s;
}
button, a.button-primary, a.button-secondary {
  transition: background 0.2s, color 0.18s, transform 0.14s, box-shadow 0.14s;
}
button:active, a.button-primary:active, a.button-secondary:active {
  transform: scale(0.96);
}

/**************** COOKIE CONSENT BANNER ****************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 400;
  background: #F8F9FA;
  border-top: 2px solid #C2C4AE;
  padding: 24px 10px 24px 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  box-shadow: 0 -6px 32px 0 rgba(45,106,79,0.11);
  transition: transform 0.32s cubic-bezier(.59,.09,.18,.96);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner-message {
  color: #274D36;
  font-size: 1rem;
  flex: 1 1 200px;
  margin-right: 6px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button, .cookie-settings-btn {
  padding: 9px 22px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  background: #2D6A4F;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(45, 106, 79, 0.09);
}
.cookie-banner .cookie-settings-btn {
  background: #E07A5F;
  color: #fff;
}
.cookie-banner button.reject {
  background: #DFE8DF;
  color: #2D6A4F;
}
.cookie-banner button:hover, .cookie-banner .cookie-settings-btn:hover {
  background: #B8401F;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 8px 16px 12px;
  }
  .cookie-banner .cookie-banner-message {
    margin-right: 0;
    margin-bottom: 6px;
  }
}

/******** COOKIE MODAL **********/
.cookie-modal-overlay {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  background: rgba(45,106,79,0.11);
  z-index: 401;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #FEFFE7;
  border-radius: 30px;
  box-shadow: 0 8px 70px 0 rgba(45,106,79,0.23);
  padding: 36px 28px 24px 28px;
  min-width: 320px;
  max-width: 95vw;
  color: #274D36;
}
.cookie-modal h2 {
  color: #2D6A4F;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal label {
  color: #52796F;
  font-size: 0.98rem;
}
.cookie-modal input[type="checkbox"] {
  width: 20px;
  height: 20px;
}
.cookie-modal .cookie-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 24px;
  padding: 4px 10px;
  color: #B8401F;
  font-size: 1.45rem;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.14s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #DFE8DF;
}

/****************** MISCELLANEOUS / UTILS ********************/
.text-section {
  margin-bottom: 22px;
}
.mission-section {
  background: #ECF4EE;
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 18px;
  color: #274D36;
}
.team-overview {
  background: #f7f4e8;
  border-radius: 16px;
  padding: 26px 24px;
  margin-bottom: 22px;
  box-shadow: 0 1px 12px rgba(45,106,79,0.06);
}

.popular-tips, .popular-posts, .thematic-lists {
  background: #effaf1;
  border-radius: 10px;
  padding: 16px 16px;
  margin-bottom: 20px;
}

.category, .story-card, .idea, .blog-card {
  min-width: 220px;
  max-width: 340px;
}

@media (max-width: 600px) {
  .feature, .category, .story-card, .idea, .blog-card {
    max-width: 100%;
    min-width: 180px;
    padding: 16px 10px;
  }
  .team-overview, .mission-section {
    padding: 14px 8px;
  }
}

/*********** VISUAL ELEMENTS, ORNAMENTS (Organic Shapes) ***********/
.feature, .category, .story-card, .idea, .blog-card {
  border-radius: 18px 38px 22px 18px;
  box-shadow: 0 8px 34px 0 rgba(45, 106, 79, 0.06);
  position: relative;
  overflow: hidden;
}
.feature::after, .category::after, .story-card::after, .idea::after, .blog-card::after {
  content: '';
  display: block;
  position: absolute;
  right: -34px;
  bottom: -24px;
  width: 78px;
  height: 54px;
  background: #eaf4ea;
  border-radius: 36% 68% 60% 50%;
  z-index: 0;
}
/******************** TYPOGRAPHY SCALE ********************/
/* 14px 16px 18px 24px 32px 48px */
h1 { font-size: 2.4rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
p, li { font-size: 1rem; }
@media (max-width:600px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.13rem; }
}

/********************** COLOR PALETTE (Organic, Earth Tones) ********************/
body { background: #f5f4ef; }
.section, .feature, .category, .story-card, .idea, .blog-card, .card {
  background: #fff;
  color: #274D36;
}
.teaser, .recipe-card, .testimonial-card {
  background: #fdfdf9;
}

/**************** ACCESSIBILITY & FOCUS STATES *******************/
:focus {
  outline: 2px solid #E07A5F;
  outline-offset: 2px;
}
.button-primary:focus, .button-secondary:focus, .mobile-nav a:focus, .main-nav a:focus {
  outline: 2px solid #E07A5F;
  outline-offset: 2px;
}

/*********************** END *******************/
