/* --- CSS RESET & BASE --- */
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;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #FAFAF6;
  color: #222;
  line-height: 1.5;
  min-height: 100vh;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after { box-sizing: inherit; }
a { color: #355C35; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #B1A16A; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
input, button, select, textarea { font: inherit; }
button { cursor: pointer; border: none; background: none; }


/* --- VARIABLE FALLBACKS (for solid color legacy support) --- */
:root {
  --color-primary: #355C35;
  --color-secondary: #B1A16A;
  --color-accent: #FAFAF6;
  --color-dark: #232323;
  --color-white: #fff;
  --color-gray: #e4e6de;
  --shadow: 0 8px 32px rgba(53,92,53,0.06), 0 1.5px 8px rgba(177,161,106,0.11);
  --radius: 18px;
  --gap: 24px;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #232323;
  margin-bottom: 16px;
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, li, .subheadline {
  font-size: 1.1rem;
  color: #222;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}
.subheadline {
  font-weight: 500;
  color: #355C35;
}
strong, b { font-weight: 700; color: #355C35; }

/* --- CONTAINER & LAYOUT UTILS (FLEXBOX ONLY) --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card-container, .card-grid, .features-list, .highlights-list, .tip-list ul, .how-to-guides ul, .quick-faq ul, .recipe-category-grid, .season-feature-cards, .values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .category-card, .feature-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 220px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .category-card:hover, .feature-card:hover {
  box-shadow: 0 16px 48px rgba(53,92,53,0.10), 0 1.5px 10px rgba(177,161,106,0.12);
  transform: translateY(-4px) scale(1.02);
}
.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 28px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 440px;
}
.testimonial-card p {
  color: #232323;
  font-style: italic;
}
.testimonial-card span {
  color: var(--color-secondary);
  font-size: 1.05rem;
  font-weight: 700;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.newsletter-signup {
  background: #fff6e2;
  border-radius: var(--radius);
  padding: 20px 26px;
  box-shadow: 0 3px 20px rgba(177,161,106,0.13);
  margin-top: 24px;
}
.filter-tags { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0; }
.filter-tag {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 99px;
  padding: 4px 20px;
  font-weight: bold;
  font-size: 0.98em;
  letter-spacing: 0.02em;
}
.quick-access-filters { margin-top: 20px; color: var(--color-primary); font-weight: 600; font-size: 1.05em;  }

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 22px;
}
.highlights-list li {
  font-weight: 600;
  color: var(--color-primary);
  background: #ebefa5;
  border-radius: 8px;
  padding: 10px 18px;
}
.features-list {
  flex-wrap: wrap;
  gap: 24px;
}
.features-list li {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 330px;
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
}
.features-list img { width: 48px; height: 48px; }
.features-list h3 { font-size: 1.2rem; margin-bottom: 0; }

.recipe-category-grid {
  gap: 24px;
}
.category-card h3 { color: var(--color-primary); }

.season-feature-cards {
  gap: 24px;
}
.feature-card h3 { color: var(--color-secondary); margin-bottom: 6px; }

.values-grid {
  gap: 24px 18px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.value-icon {
  flex: 0 0 48px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-description {
  flex: 1 1 220px;
  padding: 8px 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-info img { margin-right: 10px; width: 22px; vertical-align: middle; }
.contact-method { color: #616132; font-size: 1.02rem; font-weight: 500; }

.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.confirmation-message {
  background: #f2ffe5;
  border-radius: var(--radius);
  padding: 24px 22px;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.18rem;
}

/* --- HEADER --- */
header {
  background: #fff;
  box-shadow: 0 1.5px 6px #e4e6de;
  padding: 0;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 200;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 20px 18px 20px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
header nav a {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07em;
  letter-spacing: 0.01em;
  color: #355C35;
  padding: 2px 8px 2px 8px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover, header nav a.active {
  background: #B1A16A;
  color: #fff;
}
header img { max-height: 44px; height: auto; }
.cta-primary {
  padding: 10px 32px;
  background: #355C35;
  color: #fff!important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: bold;
  border: none;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(53,92,53,0.12);
  letter-spacing: 0.03em;
  margin-left: 16px;
  transition: background 0.18s, box-shadow 0.16s, transform 0.18s;
  position: relative;
  z-index: 1;
}
.cta-primary:hover, .cta-primary:focus {
  background: #232323;
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 8px 30px rgba(177,161,106,0.14);
}
.cta-secondary {
  padding: 10px 28px;
  background: #B1A16A;
  color: #fff!important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 100px;
  margin-left: 6px;
  transition: background 0.16s, transform 0.14s, box-shadow 0.18s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #355C35;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 8px 20px rgba(53,92,53,0.11);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  color: #355C35;
  border: none;
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 305;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #B1A16A;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 302;
  padding: 40px 28px 28px 28px;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.57,1.52,.42,.92);
  box-shadow: 2px 0 20px rgba(53,92,53,0.14);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  align-self: flex-end;
  background: none;
  color: #355C35;
  border: none;
  margin-bottom: 34px;
  margin-right: 4px;
  width: 38px; height: 38px;
  cursor: pointer;
  z-index: 310;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #B1A16A; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  color: #355C35;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  padding: 12px 0 12px 8px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  width: 100%;
  display: flex;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #B1A16A;
  color: #fff;
}

@media (max-width: 1024px) {
  .container { max-width: 900px; }
}

@media (max-width: 900px) {
  .container { max-width: 680px; }
  .section { padding: 30px 10px; }
}
@media (max-width: 820px) {
  .features-list, .card-container, .card-grid, .season-feature-cards, .recipe-category-grid, .values-grid, .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
    padding: 9px 10px 9px 10px;
  }
  header nav,
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section {
    padding: 22px 8px;
    margin-bottom: 36px;
  }
  h1 { font-size: 1.7rem; margin-bottom: 12px; }
  h2 { font-size: 1.25rem;  }
  .testimonial-slider,
  .content-grid,
  .values-grid,
  .features-list,
  .card-container,
  .card-grid,
  .season-feature-cards,
  .recipe-category-grid { flex-direction: column; }
  .category-card, .feature-card, .testimonial-card, .card {
    min-width: 0;
    max-width: 100%;
    padding: 16px 10px;
  }
  .newsletter-signup { padding: 14px 6px; }
  .text-image-section { flex-direction: column; gap: 20px; }
}

@media (max-width: 540px) {
  .container { padding-inline: 2vw; }
  .confirmation-message, .newsletter-signup { padding: 10px 4px; }
  .testimonial-card, .card, .feature-card, .category-card {
      padding: 14px 6px;
  }
}

/* --- FOOTER --- */
footer {
  background: #355C35;
  color: #fff;
  width: 100%;
  margin-top: 72px;
  padding: 0;
  position: relative;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 38px;
  padding: 32px 18px 26px 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  font-size: 1.05em;
}
footer nav a {
  color: #fff;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 2px 0;
  transition: color .14s, border-bottom .14s;
}
footer nav a:hover, footer nav a:focus { color: #B1A16A; text-decoration: underline; }
footer img { max-height: 35px; filter: brightness(99); margin-bottom: 10px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
}
.footer-contact p { color: #fff; margin-bottom: 0; }
.footer-contact img { width: 17px; margin-right: 6px; display: inline; vertical-align: middle; }

@media (max-width: 825px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 23px 8px 18px 8px;
  }
}


/* --- FORMS / SEARCH BAR ETC. --- */
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  margin: 14px 0 10px 0;
}
.search-bar input[type=text] {
  flex: 1 1 120px;
  padding: 10px 18px;
  border-radius: 99px;
  border: 1.8px solid #B1A16A;
  font-size: 1.03em;
  outline: none;
  transition: border 0.18s;
  background: #fffbf2;
  color: #355C35;
}
.search-bar input[type=text]:focus {
  border-color: #355C35;
}
.search-bar button { margin: 0; }

input, textarea {
  font-size: 1.05em;
  padding: 10px 12px;
  border-radius: 7px;
  border: 1.1px solid #B1A16A;
  outline: none;
  margin-bottom: 14px;
  width: 100%;
  background: #fff;
}
input:focus, textarea:focus {
  border: 2px solid #355C35;
}

/* --- BANNER & MODALS --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fffdfa;
  padding: 16px 18px 18px 18px;
  box-shadow: 0 -3px 24px rgba(53,92,53,0.11);
  border-radius: 18px 18px 0 0;
  width: 100vw;
  max-width: 100vw;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  animation: slideUpCookie .43s cubic-bezier(.82,-0.03,.19,1.28);
}
@keyframes slideUpCookie {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text { color: #232323; font-size: 1rem; line-height: 1.34; font-weight: 500; flex: 1 1 180px; }
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 99px;
  background: #B1A16A;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  font-size: 1.02rem;
  box-shadow: 0 1.5px 8px #e4e6de;
  transition: background 0.13s, transform 0.13s;
}
.cookie-btn:hover,.cookie-btn:focus { background: #355C35; transform: scale(1.05); }
.cookie-btn.secondary {
  background: #355C35; color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: #B1A16A;
  border: 2px solid #B1A16A;
  font-weight: 700;
}
.cookie-btn.settings:hover { background: #B1A16A; color: #fff; }

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 1050;
  top:0; left:0; right:0; bottom:0;
  background: rgba(53,92,53,.38);
  width: 100vw; height: 100vh;
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
  animation: fadeInCookieModal .36s;
}
@keyframes fadeInCookieModal {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fffdfa;
  width: 95vw;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 14px 44px rgba(53,92,53,0.19);
  padding: 36px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: moveModal .41s cubic-bezier(.4,1.46,.56,1);
  position: relative;
}
@keyframes moveModal {
  from { transform: translateY(70px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #355C35;
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 13px;
}
.cookie-category {
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.cookie-category .category-name {
  font-weight: 700;
  font-size: 1.07em;
  color: #B1A16A;
  min-width: 127px;
}
.cookie-category .category-toggle {
  margin-left: 18px;
  width: 38px;
  height: 22px;
  appearance: none;
  background: #e0e0e0;
  border-radius: 18px;
  outline: none;
  position: relative;
  transition: background 0.17s;
}
.cookie-category .category-toggle:checked {
  background: #355C35;
}
.cookie-category .category-toggle:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.17s;
  box-shadow: 0 1.2px 4px rgba(0,0,0,0.09);
}
.cookie-category .category-toggle:checked:before {
  left: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #355C35;
  position: absolute;
  right: 15px;
  top: 16px;
  font-size: 1.5rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: #B1A16A;
}

/* --- ANIMATIONS / MICRO-INTERACTIONS --- */
a, button, .card-container > .card, .cta-primary, .cta-secondary, .cookie-btn, .mobile-nav a {
  transition: background 0.19s, color 0.19s, box-shadow 0.22s, transform 0.19s;
}

.card, .category-card, .feature-card, .testimonial-card {
  will-change: box-shadow,transform;
}

/* --- GEOMETRIC/STRONG VISUAL CUES --- */
.features-list li, .card, .category-card, .feature-card, .testimonial-card {
  border-bottom: 5px solid #B1A16A;
}
.highlights-list li {
  border-left: 8px solid #B1A16A;
}
.values-grid .value-icon {
  background: #e6ecd3;
  border-radius: 8px;
  width: 52px; height: 52px;
  align-items: center;
  justify-content: center;
}

/* --- SEPARATORS --- */
hr {
  border: none;
  height: 2px;
  background: #e4e6de;
  margin: 24px 0;
}

/* --- UTILITY CLASSES --- */
.hide { display: none!important; }
.mt-2 { margin-top: 12px!important; }
.mb-2 { margin-bottom: 12px!important; }
.mb-3 { margin-bottom: 20px!important; }

/* --- ACCESSIBILITY --- */
:focus { outline: 2.5px dashed #B1A16A !important; outline-offset: 2px; }
::selection { background: #B1A16A; color: #fff; }

/* --- PRINT --- */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-backdrop {
    display: none !important;
  }
  header, footer {
    background: #fff; color: #222;
    box-shadow: none;
  }
}

/* --- END OF STYLES --- */
