/* RESET & BASE TYPOGRAPHY */
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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #fff;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #274E13;
  background-color: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  padding-left: 1.6em;
  margin-bottom: 20px;
}
a {
  color: #274E13;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A01613;
  outline: none;
}

/***************************/
/* BRAND TYPOGRAPHY SCALE */
/***************************/
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}
@media (min-width: 600px) {
  h1, .h1 { font-size: 2.75rem; }
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.22;
}
@media (min-width: 600px) {
  h2, .h2 { font-size: 2rem; }
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
}
@media (min-width: 600px) {
  h3, .h3 { font-size: 1.25rem; }
}

h4, .h4 { font-weight: 700; }
strong { font-weight: 700; }
p, li { font-size: 1rem; }

/*********************/
/* CONTAINER & LAYOUTS */
/*********************/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(39,78,19,0.04);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(39,78,19,0.07);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 26px 0 rgba(39,78,19,0.12);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #faf9f5;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(39,78,19,0.06);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(39,78,19,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.category-tags, .category-grid, .feature-grid, .value-grid, .seasonal-recipe-grid, .topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.category-tags span {
  background: #FCEBB2;
  color: #274E13;
  font-size: 0.95rem;
  border-radius: 14px;
  padding: 6px 18px;
  margin-right: 6px;
  margin-bottom: 6px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.category-tags span:hover {
  background: #274E13;
  color: #fff;
}

/*********************/
/* HEADER & NAVIGATION */
/*********************/
header {
  background: #fff;
  border-bottom: 1px solid #EAEEF2;
  padding: 0;
  z-index: 100;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  min-height: 78px;
}
header nav {
  display: flex;
  gap: 22px;
  margin-left: 32px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a:focus {
  background: #FCEBB2;
  color: #A01613;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #274E13;
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px 28px;
  font-size: 1rem;
  font-weight: 600;
  margin-left: auto;
  margin-right: 14px;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(39,78,19,0.07);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #A01613;
  color: #fff;
  box-shadow: 0 7px 32px 0 rgba(160,22,19,0.06);
}

/*********************/
/* BURGER & MOBILE MENU */
/*********************/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  line-height: 1;
  color: #274E13;
  cursor: pointer;
  margin-left: 16px;
  z-index: 201;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FCEBB2;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 94vw;
  max-width: 360px;
  background: #fff;
  box-shadow: -4px 0 32px 0 rgba(39,78,19,0.14);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.79,.14,.15,.86);
  z-index: 210;
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px 24px;
  gap: 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #274E13;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  z-index: 211;
  margin-bottom: 20px;
  height: 44px;
  width: 44px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FCEBB2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  color: #274E13;
  padding: 13px 5px 13px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCEBB2;
  color: #A01613;
}

/* Nav Responsive */
@media (max-width: 980px) {
  header .container {
    flex-wrap: wrap;
    gap: 8px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: auto;
    margin-right: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/**********************/
/* HERO, FEATURE & GRIDS */
/**********************/
.hero {
  background: #FCEBB2;
  border-radius: 0 0 30px 30px;
  margin-bottom: 50px;
  padding: 45px 0 40px;
  display: flex;
  align-items: center;
  min-height: 320px;
  box-shadow: 0 8px 64px 0 rgba(39,78,19,0.04);
}
.hero .container {
  display: flex;
  flex-direction: column;
}
.hero h1 {
  color: #274E13;
}
.hero p {
  font-size: 1.15rem;
  color: #274E13;
  margin-bottom: 18px;
  font-weight: 400;
}
.feature-grid, .category-grid, .value-grid, .seasonal-recipe-grid, .topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}
.feature-grid > div,
.category-grid > div,
.value-grid > div,
.seasonal-recipe-grid > div,
.topic-grid > div {
  flex: 1 1 220px;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(39,78,19,0.07);
  padding: 24px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
  transition: box-shadow 0.22s;
}
.feature-grid > div:hover, .category-grid > div:hover, .value-grid > div:hover {
  box-shadow: 0 8px 26px 0 rgba(39,78,19,0.13);
}

/**********************/
/* RECIPE & LISTS     */
/**********************/
.recipe-list, .ingredient-seasonality-list, .tips-list {
  margin-bottom: 20px;
  margin-top: 0;
  padding-left: 1.6em;
}
.recipe-list li,
.ingredient-seasonality-list li,
.tips-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.7;
}
.pagination {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}
.pagination a, .pagination span {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  border-radius: 7px;
  padding: 6px 13px;
  background: #FCEBB2;
  color: #274E13;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  transition: background 0.16s, color 0.16s;
}
.pagination a:hover, .pagination a:focus {
  background: #274E13;
  color: #fff;
}
.pagination span {
  background: #274E13;
  color: #fff;
}

/********************/
/* SECTIONS & CALLS */
/********************/
.seasonal-highlight, .seasonal-overview, .newsletter, .thank-you, .contact, .faq, .legal, .recipe-listing, .tips-listing {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(39,78,19,0.05);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.info-callout {
  background: #FCEBB2;
  color: #274E13;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 1rem;
  margin-top: 9px;
}
.cta {
  background: #FCEBB2;
  border-radius: 18px;
  padding: 40px 20px;
  box-shadow: 0 2px 16px 0 rgba(39,78,19,0.05);
  margin-bottom: 60px;
}
.text-section {
  margin-bottom: 18px;
  color: #274E13;
  font-size: 1.05rem;
}
@media (min-width: 800px) {
  .thank-you .thank-you-message {
    font-size: 1.22rem;
    margin-top: 10px;
  }
}

/**************/
/* FORMS (NEWSLETTER) */
/**************/
.signup-form-info ul {
  margin-bottom: 6px;
}
.signup-form-info li {
  padding-left: 0.2em;
  margin-bottom: 7px;
}

/**************/
/* FILTER BAR */
/**************/
.filter-bar {
  display: flex;
  margin-top: 18px;
  margin-bottom: 10px;
  gap: 14px;
}
.filter-bar input[type="search"] {
  background: #fff;
  border: 1px solid #EAEEF2;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 1rem;
  color: #274E13;
  width: 100%;
  max-width: 330px;
  outline: none;
  transition: border-color 0.17s;
}
.filter-bar input[type="search"]:focus {
  border-color: #A01613;
}

/**************/
/* FAQ        */
/**************/
.faq h3 {
  margin-top: 2px;
  margin-bottom: 8px;
}
.faq strong {
  display: block;
  margin-top: 18px;
  margin-bottom: 3px;
  color: #274E13;
  font-weight: 600;
}
.faq div {
  margin-bottom: 8px;
  color: #444;
}

/*********************/
/* TESTIMONIALS      */
/*********************/
.testimonials {
  background: #FAFAF6;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonial-card {
  background: #fff;
  color: #274E13;
  border-radius: 12px;
  box-shadow: 0 2px 14px 0 rgba(39,78,19,0.07);
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  padding: 22px 24px;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #274E13;
}
.testimonial-card span {
  font-size: 1.3rem;
  font-weight: 700;
  color: #A01613;
}
.testimonial-card div:last-child {
  color: #6B8367;
  font-size: 0.95rem;
  margin-left: auto;
  font-style: italic;
}

/*****************/
/* FOOTER        */
/*****************/
footer {
  background: #fff;
  border-top: 1px solid #EAEEF2;
  padding: 36px 0 12px 0;
  color: #274E13;
  margin-top: 60px;
}
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-wrap nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-width: 158px;
}
.footer-wrap nav a {
  color: #274E13;
  font-size: 1rem;
  padding: 3px 0;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.footer-wrap nav a:hover, .footer-wrap nav a:focus {
  background: #FCEBB2;
  color: #A01613;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
}
.footer-contact div img {
  height: 1em;
  width: 1em;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
}
.legal-links {
  font-size: 0.9rem;
  margin-top: 14px;
  color: #6B8367;
  gap: 7px;
  display: flex;
}
.legal-links a {
  color: #6B8367;
  margin: 0 4px;
  text-decoration: underline;
  transition: color 0.18s;
}
.legal-links a:hover { color: #A01613; }

/*********************/
/* RESPONSIVE RULES  */
/*********************/
@media (max-width: 980px) {
  .footer-wrap {
    flex-direction: column;
    gap: 26px;
    align-items: stretch;
  }
  .footer-contact {
    margin-top: 6px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
}
@media (max-width: 600px) {
  .section, .seasonal-highlight, .seasonal-overview, .newsletter, .thank-you, .contact, .faq, .legal, .recipe-listing, .tips-listing, .testimonials, .cta {
    padding: 19px 6px;
    border-radius: 10px;
    margin-bottom: 36px;
  }
  .hero {
    border-radius: 0 0 13px 13px;
    padding: 28px 0 18px;
    min-height: 160px;
  }
  .content-grid, .card-container, .feature-grid, .category-grid, .value-grid, .seasonal-recipe-grid, .topic-grid {
    flex-direction: column;
    gap: 11px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 7px;
    padding: 14px 10px;
  }
}

/**********************/
/* COOKIE CONSENT BAR */
/**********************/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: #fffbe5;
  color: #274E13;
  border-top: 1px solid #FCEBB2;
  box-shadow: 0 -2px 24px 0 rgba(39,78,19,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  gap: 28px;
  padding: 14px 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.34s, transform 0.34s;
}
.cookie-consent-banner.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 14px;
}
.cookie-consent-banner .cookie-btn {
  background: #FCEBB2;
  color: #274E13;
  border: none;
  border-radius: 8px;
  padding: 8px 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  box-shadow: 0 2px 8px 0 rgba(39,78,19,0.04);
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-consent-banner .cookie-btn.accept {
  background: #274E13;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.accept:hover {
  background: #A01613;
  color: #fff;
}
.cookie-consent-banner .cookie-btn.reject {
  background: #fff;
  color: #A01613;
  border: 1px solid #A01613;
}
.cookie-consent-banner .cookie-btn.reject:hover {
  background: #FCEBB2;
  color: #274E13;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #fff;
  color: #274E13;
  border: 1px solid #274E13;
}
.cookie-consent-banner .cookie-btn.settings:hover {
  background: #FCEBB2;
  color: #A01613;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    font-size: 0.99rem;
    min-height: 0;
    padding: 13px 5px;
  }
  .cookie-consent-banner .cookie-buttons {
    flex-direction: column;
    gap: 7px;
    width: 100%;
  }
  .cookie-consent-banner .cookie-btn {
    width: 100%;
  }
}

/**************************/
/* COOKIE PREFS MODAL UI  */
/**************************/
.cookie-modal {
  position: fixed;
  z-index: 20001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,78,19,0.33);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 18px;
  max-width: 410px;
  width: 92vw;
  padding: 38px 28px 26px 28px;
  box-shadow: 0 24px 64px 0 rgba(39,78,19,0.17);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookiepop 0.3s cubic-bezier(.77,.11,.3,1.11);
  position: relative;
}
@keyframes cookiepop {  0% {transform:scale(0.94);}  100%{transform:scale(1);} }

.cookie-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.cookie-modal .modal-header h2 {
  font-size: 1.31rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin: 0;
}
.cookie-modal .modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #A01613;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  text-align: center;
  transition: background 0.15s;
}
.cookie-modal .modal-close:hover { background: #FCEBB2; }

.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid #F3F4F8;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category .category-label {
  font-weight: 600;
  color: #274E13;
}
.cookie-category .category-toggle {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cookie-category .toggle-switch {
  appearance: none;
  width: 44px;
  height: 24px;
  background: #F3F4F8;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  border: 1px solid #EAEEF2;
}
.cookie-category .toggle-switch:checked {
  background: #274E13;
}
.cookie-category .toggle-switch:before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(39,78,19,0.06);
  transition: transform 0.18s;
}
.cookie-category .toggle-switch:checked:before {
  transform: translateX(20px);
}
.cookie-category .toggle-switch[disabled], .cookie-category .toggle-switch[aria-disabled="true"] {
  background: #EEE;
  opacity: 0.6;
  cursor: not-allowed;
}

/************************/
/* ACCESSIBILITY & HOVER */
/************************/
:focus {
  outline: 2px solid #A01613;
  outline-offset: 2px;
}
button:focus, a:focus {
  outline: 2px solid #A01613;
}

/**********************/
/* MICRO-INTERACTIONS */
/**********************/
button, .cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.17s;
}
button:active, .cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
}

/**********************/
/* ADDITIONAL UTILITIES */
/**********************/
.hidden { display: none !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/**********************/
/* CUSTOM SCROLLBARS (minimalist) */
/**********************/
::-webkit-scrollbar {
  width: 8px;
  background: #FCEBB2;
}
::-webkit-scrollbar-thumb {
  background: #EAEEF2;
  border-radius: 4px;
}

/* END OF STYLE.CSS */
