/* 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 {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  background: linear-gradient(135deg, #F0DBAA 0%, #fff 80%);
  color: #22403B;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #317B49;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #1E4229;
  text-decoration: underline;
}
ul, ol {
  margin: 0 0 1em 1.2em;
}
li {
  margin: 0 0 0.6em 0;
}

/* FONT SCALES & TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  color: #1E4229;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
@media (max-width:600px) {
  h1, .h1 { font-size: 1.7rem; }
}
h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.8rem;
  color: #317B49;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
}
@media (max-width:600px) {
  h2, .h2 { font-size: 1.2rem; }
}
h3, .h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  color: #1E4229;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.2;
}
@media (max-width:600px) {
  h3, .h3 { font-size: 1rem; }
}
h4, .h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #317B49;
  margin-bottom: .5em;
}
p, ul, ol {
  font-size: 1rem;
  color: #22403B;
  margin-bottom: 1em;
}
strong, b {
  font-weight: 700;
  color: #1E4229;
}
small {
  font-size: 0.92em;
  color: #48725A;
}

/* CONTAINER & LAYOUTS (flex only!) */
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 600px) {
  .section { padding: 28px 8px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 20px rgba(49,123,73,.08), 0 1.5px 8px rgba(49,123,73,.03);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  position: relative;
  transition: box-shadow .22s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 28px rgba(49,123,73,.14), 0 3px 14px rgba(49,123,73,.04);
  transform: translateY(-3px) scale(1.012);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(49, 123, 73, .10);
  color: #22403B;
  margin: 14px 0 16px 0;
  width: 100%;
  font-size: 1.08rem;
}
.testimonial-card small {
  color: #48725A;
  font-weight: bold;
  padding-left: 18px;
}

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

/* HERO/BANNER & CTA BUTTONS */
.cta-btn {
  display: inline-block;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 32px;
  background: linear-gradient(90deg, #317B49 60%, #1E4229 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: .01em;
  border: none;
  box-shadow: 0 2px 12px rgba(49, 123, 73, .13);
  margin-top: 12px;
  margin-bottom: 8px;
  transition: background .18s, box-shadow .18s, transform .18s;
  cursor: pointer;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #25643a 60%, #1E4229 100%);
  box-shadow: 0 6px 32px rgba(49, 123, 73, .16);
  text-decoration: none;
  transform: translateY(-2px) scale(1.019);
}

/* PRIMARY SITE NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, #fff 70%, #F0DBAA 100%);
  box-shadow: 0 3px 16px rgba(49,123,73,0.07);
  position: relative;
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
header nav a {
  color: #22403B;
  transition: color .22s;
  border-radius: 20px;
  padding: 7px 12px;
  font-size: 1.01rem;
}
header nav a.cta-btn {
  margin-left: auto;
  order: 2;
}
header nav a:hover, header nav a:focus {
  color: #317B49;
  background: #F0DBAA;
  text-decoration: none;
}
header nav img {
  height: 40px;
  width: auto;
  margin-right: 12px;
}

@media (max-width: 1000px) {
  header nav {
    gap: 8px;
    font-size: 0.96rem;
  }
  header nav img {
    height: 32px;
  }
}
@media (max-width: 870px) {
  header nav {
    flex-wrap: wrap;
    gap: 4px;
    padding: 10px 8px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 18px;
    top: 16px;
    background: #317B49;
    color: #fff;
    font-size: 2.1rem;
    border: none;
    border-radius: 8px;
    line-height: 1;
    padding: 7px 14px 7px 12px;
    z-index: 101;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(49,123,73,0.12);
    transition: background .2s;
  }
}
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 11111;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #F1CB7A 0%, #317B49 65%);
  visibility: hidden;
  opacity: 0;
  transition: opacity .33s cubic-bezier(.23,1.1,.13,1), visibility .33s;
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity .32s, transform .37s cubic-bezier(.17,.81,.39,.97);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #22403B;
  background: #F1CB7A;
  border: none;
  border-radius: 8px;
  margin: 26px 22px 18px 18px;
  z-index: 120;
  align-self: flex-end;
  padding: 6px 20px 6px 14px;
  box-shadow: 0 2px 9px rgba(49,123,73,.10);
  transition: background .18s, color .18s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD577;
  color: #1E4229;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100vw;
  padding: 10px 46px 0 38px;
  align-items: flex-start;
}
.mobile-nav a {
  color: #22403B;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  text-decoration: none;
  padding: 14px 0 10px 0;
  border-radius: 6px;
  transition: background .17s, color .18s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #317B49;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

/* FOOTER */
footer {
  width: 100%;
  background: linear-gradient(270deg, #F0DBAA 0%, #fff 55%);
  box-shadow: 0 -2px 16px rgba(49,123,73,0.07);
  margin-top: 50px;
  padding-top: 22px;
  padding-bottom: 16px;
}
footer .container {
  padding: 0 22px;
}
footer .content-wrapper {
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  align-items: center;
}
footer nav a {
  color: #22403B;
  font-size: .97rem;
  opacity: 0.8;
  letter-spacing: .01em;
  padding: 2px 6px;
  border-radius: 7px;
  transition: opacity .2s, background .2s, color .16s;
}
footer nav a:hover, footer nav a:focus {
  color: #317B49;
  background: #F0DBAA;
  opacity: 1;
}
.footer-contact {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-top: 8px;
  flex-wrap: wrap;
}
.footer-contact img {
  height: 48px;
  min-width: 48px;
}
.footer-contact p, .footer-contact a {
  font-size: .98rem;
  color: #22403B;
  opacity: 0.89;
}
.footer-contact a:hover { color: #1E4229; }
@media (max-width: 600px) {
  .footer-contact {
    flex-direction: column;
    gap: 6px;
  }
  footer .container { padding: 0 7px; }
}

/* PAGE-SPECIFIC & MINI COMPONENTS*/
.features-grid, .recipes-teaser, .recipes-list, .blog-list, .team-bios, .benefit-grid, .faq-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.features-grid > div, .recipes-teaser > div, .recipes-list > div,
.benefit-grid > div, .team-bios > div, .faq-list > div, .services-list > div {
  flex: 1 1 275px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(49, 123, 73, .07);
  padding: 22px 19px 20px 19px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .17s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features-grid > div:hover,
.team-bios > div:hover,
.benefit-grid > div:hover,
.recipes-teaser > div:hover,
.recipes-list > div:hover,
.services-list > div:hover {
  box-shadow: 0 6px 32px rgba(49, 123, 73, .11);
  transform: translateY(-2px) scale(1.012);
}
.features-grid img {
  height: 48px;
  width: 48px;
  margin-bottom: 5px;
}
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 7px 0 14px 0;
}
.category-chips span {
  background: #F1CB7A;
  color: #22403B;
  border-radius: 20px;
  padding: 7px 18px;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-size: 1em;
  font-weight: 500;
  transition: background .16s, color .16s;
  cursor: pointer;
  margin-bottom: 8px;
}
.category-chips span:hover,
.category-chips span:focus {
  background: #317B49;
  color: #fff;
}
.recipe-search {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0 14px 0;
  width: 100%;
}
.recipe-search input[type='search'] {
  padding: 12px 16px;
  border: 1px solid #E6E6E6;
  border-radius: 18px;
  font-size: 1rem;
  min-width: 160px;
  width: 100%;
  background: #fcfcfb;
  transition: border-color .2s, box-shadow .14s;
}
.recipe-search input[type='search']:focus {
  border-color: #317B49;
  box-shadow: 0 1px 6px #F0DBAA;
  outline: none;
}
.pagination {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  padding: 7px 13px;
  border-radius: 9px;
  background: #F0DBAA;
  color: #317B49;
  font-weight: 600;
  cursor: pointer;
  margin-right: 4px;
  transition: background .18s, color .17s;
}
.pagination span:hover, .pagination span:focus {
  background: #317B49;
  color: #fff;
}
.pagination span:first-child, .pagination span:last-child {
  background: #EFE6C9;
  color: #253F2F;
}

.blog-list {
  gap: 32px;
  flex-wrap: wrap;
}
.blog-post-card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(49, 123, 73, 0.07);
  padding: 19px 16px 16px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: box-shadow .18s, transform .14s;
}
.blog-post-card:hover {
  box-shadow: 0 7px 26px rgba(49, 123, 73, .12);
  transform: translateY(-2px) scale(1.013);
}

.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #FCFAF5;
  border-radius: 16px;
  box-shadow: 0 1.5px 11px rgba(49,123,73,0.06);
  padding: 20px 16px;
  margin: 8px 0 0 0;
}

.next-steps-info {
  background: #F1CB7A;
  border-radius: 12px;
  padding: 16px 18px;
  color: #22403B;
  margin-bottom: 18px;
}

/* FAQ STYLE */
.faq-list > div {
  background: #fff;
  border-left: 4px solid #317B49;
  box-shadow: 0 1px 8px rgba(49, 123, 73, 0.04);
  padding: 16px 14px 16px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}
.faq-list h3 {
  font-size: 1.01em;
  color: #317B49;
  font-weight: 600;
}

/* CONTENT PAGES */
.privacy-policy-content, .gdpr-content, .cookie-policy-content, .terms-and-conditions-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 11px rgba(49,123,73,0.06);
  padding: 26px 22px 18px 22px;
  margin-top: 18px;
  margin-bottom: 24px;
  color: #22403B;
}

/* CONTACT-DETAILS & BOXES */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #FCFAF5;
  border-radius: 12px;
  box-shadow: 0 1.5px 11px rgba(49,123,73,0.06);
  padding: 18px 14px;
  margin-bottom: 18px;
}

/* CONSULTATION PACKAGES & PRICING */
.consultation-packages, .pricing {
  background: #FCFAF5;
  border-radius: 11px;
  padding: 16px 13px 14px 13px;
  margin: 21px 0 16px 0;
  width: 100%;
  box-shadow: 0 1.5px 10px rgba(49,123,73,0.04);
}
.consultation-packages ul, .pricing ul {
  margin-left: 2em;
  margin-bottom: 0;
}

/* BUTTON STYLE OVERRIDES (FOR COOKIE + MODALS) */
button, .button, input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  background: #317B49;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 13px 28px;
  cursor: pointer;
  box-shadow: 0 1.5px 11px rgba(49,123,73,0.08);
  transition: background .18s, color .16s, box-shadow .16s;
}
button:hover, .button:hover, input[type="submit"]:hover,
button:focus, .button:focus, input[type="submit"]:focus {
  background: #25643a;
  outline: none;
}

/* RESPONSIVE FLEXBOX FINE(GRAINED) ADJUSTMENTS */
@media (max-width: 600px) {
  .container {
    padding: 0 4px;
  }
  .features-grid, .recipes-teaser, .recipes-list, .team-bios, .benefit-grid, .faq-list, .services-list, .blog-list {
    flex-direction: column;
    gap: 16px;
  }
  .features-grid > div,
  .recipes-teaser > div,
  .recipes-list > div,
  .benefit-grid > div,
  .team-bios > div,
  .faq-list > div,
  .services-list > div {
    width: 100%;
    min-width: 0;
    padding: 16px 10px;
    font-size: 0.99rem;
  }
}

/* TRANSITIONS & MICRO-ANIMATIONS */
*:focus {
  outline: 2px solid #F1CB7A;
  outline-offset: 2px;
  z-index: 100;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(90deg, #fff 60%, #F1CB7A 100%);
  box-shadow: 0 -8px 32px rgba(49,123,73,0.09);
  align-items: center;
  justify-content: space-between;
  z-index: 99999;
  padding: 18px 38px 18px 24px;
  gap: 20px;
  font-size: 1.05rem;
  transition: transform .4s cubic-bezier(.5,1.47,.4,1.01), opacity .3s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
}
.cookie-banner-message {
  color: #22403B;
  margin-right: 22px;
  line-height: 1.5;
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner .cookie-btn {
  min-width: 130px;
  border-radius: 20px;
  border: none;
  margin-left: 0;
  margin-right: 3px;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 18px;
  transition: background .18s, color .13s;
}
.cookie-banner .cookie-btn.accept {
  background: #317B49;
  color: #fff;
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #1E4229;
  color: #fff;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #317B49;
  border: 1px solid #317B49;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #F1CB7A;
  color: #1E4229;
}
.cookie-banner .cookie-btn.settings {
  background: #F0DBAA;
  color: #22403B;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #317B49;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 8px 20px 8px;
    gap: 9px;
    font-size: .97rem;
  }
  .cookie-banner-message { margin-right: 0; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-preferences-modal {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 100001;
  background: rgba(35,60,47,0.19);
  align-items: center;
  justify-content: center;
  transition: opacity .3s;
  opacity: 0;
  pointer-events: none;
}
.cookie-preferences-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-preferences-box {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 10px 60px rgba(49,123,73,0.19);
  padding: 32px 34px 26px 34px;
  width: 95%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal .36s cubic-bezier(.35,.85,.43,1.5) both;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(.97) translateY(40px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-preferences-title {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #317B49;
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.cookie-preferences-category {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 1.04rem;
}
.cookie-preferences-category label {
  font-weight: 500;
  color: #22403B;
}
.cookie-preferences-modal .toggle-switch {
  width: 38px;
  height: 22px;
  background: #F0DBAA;
  border-radius: 11px;
  position: relative;
  margin-left: 6px;
  border: 1px solid #EFE6C9;
  transition: background .17s;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.cookie-preferences-modal .toggle-switch input {
  display: none;
}
.cookie-preferences-modal .toggle-switch .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #317B49;
  transition: left .2s, background .16s;
}
.cookie-preferences-modal .toggle-switch input:not(:checked) + .slider {
  left: 2px; background: #B2B2B2;
}
.cookie-preferences-modal .toggle-switch input:checked + .slider {
  left: 18px;
  background: #317B49;
}
.cookie-preferences-modal .cookie-preferences-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-preferences-modal .cookie-btn {
  flex: 1 1 auto;
  min-width: 80px;
}

/* UTILITY CLASSES */
.hide { display: none !important; }

/*== GENERAL RESPONSIVE FIXES ==*/
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.3rem; }
  h2, .h2 { font-size: 1.02rem; }
  h3, .h3 { font-size: 1rem; }
  .content-wrapper { padding: 0 0; }
  .card, .blog-post-card { padding: 13px 8px; }
  .card-container, .content-grid, .blog-list {
    gap: 10px;
  }
  .card { min-width: 0; }
  .feature-item { gap: 7px; }
}
@media (max-width: 430px) {
  .footer-contact img { height: 34px; min-width: 34px; }
}

/*****************************************************
 * THIS STYLE.CSS FILE USES ONLY FLEXBOX FOR LAYOUTS *
 * NO CSS GRID, NO COLUMNS, ALL SPACING VIA MARGINS *
 *****************************************************/
