/* =========================
   CSS RESET & BASE SETTINGS
=========================== */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22403D;
  background-color: #F6E7D8;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.03em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #B94816;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #32514E;
  text-decoration: underline;
}

/* =========================
   TYPOGRAPHY
=========================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #22403D;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
}
.subheadline {
  color: #32514E;
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.policy-text h2 {
  font-size: 1.25rem;
  margin: 24px 0 6px 0;
  color: #32514E;
}
.policy-text h3 {
  font-size: 1rem;
  margin-top: 20px;
}
.policy-text {
  color: #32514E;
}
.confirmation-message {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #22403D;
}

/* =========================
   LAYOUT CONTAINERS
=========================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff7ef;
  border-radius: 28px;
  box-shadow: 0 4px 24px 0 rgba(50,81,78, 0.04);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
  }
  .container {
    padding: 0 8px;
  }
}

/* =========================
   FLEXBOX UTILITIES (MANDATED)
=========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #faf7f3;
  border-radius: 24px;
  box-shadow: 0 2px 12px 0 rgba(34,64,61,0.08);
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(50,81,78, 0.15);
}

.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;
    gap: 20px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffeedd;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 rgba(34,64,61, 0.07);
  color: #22403D;
}
.testimonial-card p {
  flex: 1;
  font-size: 1.08rem;
  font-family: 'Merriweather', Georgia, serif;
}
.testimonial-card .user {
  font-size: 0.95rem;
  color: #B94816;
  font-style: italic;
}
.testimonial-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .testimonial-row {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* OTHER FLEXBOX-BASED COMPONENTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 8px 0 8px 0;
}
.feature-grid > li, .feature-grid > div {
  background: #f3ede0;
  border-radius: 18px;
  flex: 1 1 245px;
  padding: 24px 20px 18px 20px;
  min-width: 240px;
  max-width: 340px;
  box-shadow: 0 2px 12px 0 rgba(34,64,61, 0.03);
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-height: 124px;
  transition: box-shadow 0.24s;
}
.feature-grid > li:hover, .feature-grid > div:hover {
  box-shadow: 0 8px 32px 0 rgba(34,64,61, 0.09);
}
.feature-grid img {
  width: 36px;
  height: 36px;
}
@media (max-width: 1100px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid > li, .feature-grid > div {
    min-width: 210px;
    max-width: 300px;
    padding: 16px 10px 15px 14px;
  }
}
@media (max-width: 760px) {
  .feature-grid {
    flex-direction: column;
    gap: 15px;
  }
  .feature-grid > li, .feature-grid > div {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
}
.service-list {
  display: flex;
  flex-direction: row;
  gap: 22px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.service-list li {
  flex: 1 1 230px;
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(34,64,61,0.06);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.service-list .price {
  font-weight: bold;
  color: #B94816;
  font-size: 1.02rem;
}
@media (max-width: 1100px) {
  .service-list {
    gap: 14px;
  }
  .service-list li {
    min-width: 180px;
    max-width: 320px;
    padding: 16px 10px;
  }
}
@media (max-width: 760px) {
  .service-list {
    flex-direction: column;
    gap: 10px;
  }
  .service-list li {
    min-width: unset;
    width: 100%;
    padding: 14px 8px;
  }
}
.service-highlights {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f3ede0;
  padding: 26px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(34, 64, 61, 0.04);
}

.recipe-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 18px;
  margin: 16px 0 18px 0;
  justify-content: flex-start;
}
.recipe-category-list li {
  background: #f3ede0;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 1.1rem;
  color: #32514E;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 560px) {
  .recipe-category-list {
    flex-direction: column;
    gap: 10px 0;
  }
  .recipe-category-list li {
    padding: 10px 12px;
    font-size: 1rem;
  }
}

.seasonal-overview {
  padding: 18px 12px;
  background: #e2efd8;
  color: #32514E;
  border-radius: 12px;
  font-size: 1.08rem;
  margin-bottom: 24px;
  box-shadow: 0 1px 5px 0 rgba(50,81,78, 0.05);
}
.seasonal-overview ul {
  list-style: disc inside;
}

.text-section, .policy-text, .next-steps {
  background: #fffdfa;
  border-radius: 18px;
  padding: 20px 18px 18px 18px;
  box-shadow: 0 2px 12px 0 rgba(34, 64, 61, 0.04);
  margin-bottom: 20px;
}
.text-section ul, .policy-text ul, .next-steps ul {
  margin-left: 24px;
  margin-top: 10px;
  margin-bottom: 12px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #e6ede0;
  color: #22403D;
  border-radius: 13px;
  padding: 16px 18px;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px 0 rgba(34, 64, 61, 0.04);
}


/* =========================
   HEADER & NAVBAR
=========================== */
header {
  background: #fff7ef;
  box-shadow: 0 1px 10px 0 rgba(50,81,78, 0.08);
  min-height: 70px;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: flex-start;
  padding: 15px 20px 10px 20px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
  z-index: 1100;
}
.main-nav img {
  width: 44px;
  height: 44px;
  margin-right: 14px;
}
.main-nav a {
  color: #22403D;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 10px;
  background: transparent;
  transition: background 0.19s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #e2efd8;
  color: #B94816;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
    padding: 8px 12px 8px 6px;
  }
  .main-nav img {
    width: 36px;
    height: 36px;
    margin-right: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}

/* BURGER MENU (MOBILE) */
.mobile-menu-toggle {
  display: none;
  background: #B94816;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 10px;
  padding: 6px 16px;
  margin: 11px 16px 11px auto;
  cursor: pointer;
  z-index: 1201;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #32514E;
}
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 10px;
    top: 8px;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff7ef;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.6,.04,.98,.335);
  z-index: 1300;
  box-shadow: -1px 0 8px 1px rgba(50,81,78, 0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 18px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: #B94816;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  padding: 2px 20px 8px 8px;
  margin-right: 16px;
  border-radius: 9px;
  cursor: pointer;
  opacity: 0.90;
  transition: background 0.22s, color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #32514E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 24px;
  gap: 10px 0;
  padding-left: 25px;
}
.mobile-nav a {
  color: #22403D;
  font-size: 1.2rem;
  padding: 16px 0 8px 0;
  width: 94%;
  border-bottom: 1px solid #f4dfcc;
  margin-bottom: 2px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e2efd8;
  color: #B94816;
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}

/* OVERLAY for Mobile menu */
.mobile-menu::before {
  content: '';
  display: block;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,64,61, 0.06);
  pointer-events: none;
  z-index: -1;
}

/* =========================
   BUTTONS & CALLS-TO-ACTION
=========================== */
.cta {
  display: inline-block;
  border: none;
  border-radius: 22px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 36px;
  transition: background 0.22s, color 0.18s, box-shadow 0.22s;
  background: #B94816;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(185, 72, 22, 0.10);
  margin-bottom: 10px;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.cta.primary {
  background: #B94816;
  color: #fff;
}
.cta.secondary {
  background: #e2efd8;
  color: #B94816;
  border: 1.5px solid #B94816;
}
.cta:hover, .cta:focus {
  background: #32514E;
  color: #fff;
  box-shadow: 0 5px 20px 0 rgba(50,81,78, 0.13);
  text-decoration: none;
}
.cta.secondary:hover {
  background: #fbeee4;
  color: #32514E;
}

.recipe-filter {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin: 18px 0 9px 0;
}
.recipe-filter button {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 17px;
  border: none;
  background: #e2efd8;
  color: #32514E;
  font-weight: 600;
  padding: 9px 20px;
  cursor: pointer;
  margin-bottom: 5px;
  transition: background 0.17s, color 0.16s;
}
.recipe-filter button:hover, .recipe-filter button.active {
  background: #B94816;
  color: #fff;
}
@media (max-width: 540px) {
  .recipe-filter {
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================
   FOOTER
=========================== */
footer {
  background: #22403D;
  color: #fff7ef;
  padding: 38px 0 18px 0;
}
footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-contact, .footer-links, .footer-social {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-contact h3 {
  color: #e2efd8;
  font-size: 1.1rem;
}
.footer-links {
  gap: 8px;
}
.footer-links a {
  color: #e2efd8;
  text-decoration: underline;
  margin-bottom: 2px;
  font-size: 1rem;
}
.footer-links a:hover {
  color: #B94816;
  text-decoration: none;
}
.footer-social {
  flex-direction: row;
  gap: 12px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: saturate(0.6) contrast(1.2);
  transition: filter 0.16s;
}
.footer-social img:hover {
  filter: saturate(1.3) contrast(1.1) brightness(1.06);
}
@media (min-width: 900px) {
  footer .content-wrapper {
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-contact, .footer-links, .footer-social {
    flex: 1 1 0;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .footer-contact, .footer-links, .footer-social {
    gap: 5px;
    font-size: 0.97rem;
  }
}

/* =========================
   COOKIE CONSENT BANNER
=========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9999;
  background: #fff7ef;
  color: #22403D;
  padding: 24px 20px;
  box-shadow: 0 -6px 28px 0 rgba(50,81,78, 0.15);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px 24px;
  align-items: center;
  justify-content: center;
  animation: cookie-fadein 0.48s;
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-text {
  flex: 2;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  min-width: 170px;
  margin-bottom: 7px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  border-radius: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 24px;
  margin-bottom: 2px;
  transition: background 0.21s, color 0.17s;
}
.cookie-banner .cookie-accept {
  background: #B94816;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #32514E;
  color: #fff;
}
.cookie-banner .cookie-reject {
  background: #e2efd8;
  color: #22403D;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #B94816;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #fff7ef;
  color: #B94816;
  border: 1.5px solid #B94816;
}
.cookie-banner .cookie-settings:hover {
  background: #f3ede0;
  color: #22403D;
}
@media (max-width: 580px) {
  .cookie-banner {
    flex-direction: column;
    gap: 9px;
    padding: 18px 4vw 18px 4vw;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(34,64,61, 0.19);
  z-index: 10002;
  transition: opacity 0.22s;
  animation: fadein .35s;
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 55%;
  transform: translate(-50%,-50%);
  min-width: 300px; max-width: 95vw; width: 420px;
  background: #fffdfa;
  border-radius: 19px;
  box-shadow: 0 9px 42px 0 rgba(50,81,78,0.18);
  z-index: 10003;
  padding: 30px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: slideup .38s;
}
@keyframes slideup {
  from { opacity: 0; transform: translate(-50%,15%); }
  to   { opacity: 1; transform: translate(-50%,-50%); }
}
.cookie-modal h2 {
  font-size: 1.18rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 12px 0;
  gap: 10px 18px;
}
.cookie-modal .category-title {
  font-size: 1.05rem;
  font-weight: 600;
  min-width: 118px;
  color: #32514E;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px; height: 22px;
  border-radius: 11px;
  background: #e2efd8;
  position: relative;
  outline: none;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle:checked {
  background: #B94816;
}
.cookie-modal .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  background: #B94816;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.21s;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: #32514E;
}
@media (max-width: 500px) {
  .cookie-modal {
    width: 96vw;
    min-width: unset;
    padding: 18px 6px 15px 8px;
  }
}

/* =========================
   GENERAL UTILITIES & MICRO-INTERACTIONS
=========================== */
::-webkit-scrollbar {
  width: 11px;
  background: #F6E7D8;
}
::-webkit-scrollbar-thumb {
  background: #e2efd8;
  border-radius: 9px;
}
::-webkit-scrollbar-thumb:hover {
  background: #B94816;
}

hr {
  border: none;
  border-top: 1px solid #e6ede0;
  margin: 32px 0;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 14px;
  margin-top: 7px;
}
li {
  margin-bottom: 7px;
}
strong {
  color: #B94816;
  font-weight: 700;
}

input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  color: #22403D;
}

/* =========================
   ORGANIC/NATURE SHAPES & TEXTURES (Subtle)
=========================== */
section, .card, .feature-grid > li, .feature-grid > div, .testimonial-card, .service-list li, .service-highlights, .text-section, .policy-text, .next-steps {
  border-radius: 24px 19px 29px 14px/21px 18px 24px 11px;
  /* organic irregular radii for biomorphic feel */
}

/* Subtle paper/fiber effect for backgrounds (repeating)
   Only where not strong for readability*/
body, .container, .content-wrapper {
  background: #F6E7D8;
  /* texture will be handled via real imagery files in production */
}

/* Green accent bar (optional for headers/titles) */
h2:after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: #e2efd8;
  border-radius: 2px;
  margin: 9px 0 0 0;
}

/* ========== RESPONSIVE FONT SIZES ========== */
@media (max-width: 620px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.1rem; }
  h3 { font-size: 1rem; }
  body, .section, .feature-grid, .service-list li { font-size: 0.97rem; }
  .cookie-banner .cookie-text { font-size: 0.97rem; }
}

/* ========= MISC PAGE LAYOUTS ========== */
main {
  min-height: 70vh;
}

/* Hide visually irrelevant alt text icons for print */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cta, .footer-social { display: none !important; }
  header, footer { box-shadow: none !important; border: none; }
  body { background: #fff !important; color: #22403D; }
}

/* ========= A11Y: FOCUS STATES (Universal) ========== */
a:focus, button:focus, .cookie-banner button:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #B94816;
  outline-offset: 2px;
}

/* ========== PAGE CLASS ADJUSTMENTS ========== */
.next-steps ul { margin-bottom: 0; margin-top: 7px; }
footer .container, footer .content-wrapper {
    background: #22403d;
}
section {
  padding: 10px 0;
}
/**** End of CSS ****/
