/* ---- CSS RESET & NORMALIZATION ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #2D4B2F;
  background: #FFF9F4;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, Helvetica, sans-serif;
  color: #2D4B2F;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
p {
  margin-bottom: 1em;
}
strong {
  font-weight: 600;
}

/* ---- COLOR VARIABLES ---- */
:root {
  --primary: #2D4B2F;
  --primary-dark: #21401F;
  --secondary: #F4D6B0;
  --accent: #DA854A;
  --accent-dark: #C16218;
  --bg: #FFF9F4;
  --white: #fff;
  --black: #2D4B2F;
  --shadow: 0 6px 32px 0 rgba(218, 133, 74, 0.10), 0 1.5px 4px 0 rgba(45, 75, 47, 0.08);
  --border-radius: 18px;
  --border: 1px solid #F8E7D5;
  --transition: 0.18s cubic-bezier(.48,.32,.55,.86);
}

/* ---- CONTAINER, LAYOUT & FLEXBOX PATTERNS ---- */
.container {
  width: 100%;
  max-width: 1100px;
  padding: 0 18px;
  margin: 0 auto;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.13s, box-shadow 0.13s;
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 32px 0 rgba(218,133,74,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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF7ED;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px 0 rgba(45,75,47,0.08);
  margin-bottom: 20px;
  color: #2D4B2F;
  font-size: 1.08rem;
  min-width: 0;
}
.testimonial-card p {
  margin-bottom: 0.25em;
  color: #2D4B2F;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---- HERO SECTION ---- */
.hero-section {
  background: linear-gradient(90deg, #FFF9F4 70%, #F4D6B0 100%);
  margin-bottom: 60px;
  padding: 0;
}
.hero-section .container {
  display: flex;
  align-items: center;
  min-height: 340px;
  justify-content: center;
}
.hero-section .content-wrapper {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  align-items: flex-start;
  padding: 40px 0;
  gap: 18px;
}
.hero-section h1 {
  color: var(--primary-dark);
}
.hero-section p {
  max-width: 480px;
  font-size: 1.1rem;
  color: #395b3c;
}

/* ---- FEATURE & SERVICE LISTS ---- */
.feature-list, .services-list, .service-grid, .usp-list, .recipe-category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  margin-bottom: 24px;
}
.feature-list li, .service-grid li, .recipe-category-grid li {
  flex: 1 1 220px;
  background: var(--secondary);
  border-radius: var(--border-radius);
  padding: 28px 22px 22px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  gap: 10px;
}
.feature-list li:hover, .service-grid li:hover, .recipe-category-grid li:hover {
  box-shadow: 0 8px 32px rgba(45,75,47,0.16);
  transform: translateY(-2px) scale(1.02);
}
.feature-list img, .service-grid img, .recipe-category-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.services-list li {
  background: #FFF9F4;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 22px 20px 18px 24px;
  margin-bottom: 20px;
  width: calc(50% - 20px);
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.services-list h3 span {
  float: right;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
.usp-list {
  flex-direction: column;
  gap: 16px;
}
.usp-list li {
  background: #FFEAD6;
  border-radius: 13px;
  padding: 14px 18px;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(218,133,74,0.08);
}
.recipe-category-grid {
  gap: 20px;
}
@media (max-width: 900px) {
  .feature-list li, .service-grid li, .recipe-category-grid li {
    flex: 1 1 160px;
  }
}
@media (max-width: 670px) {
  .feature-list, .service-grid, .usp-list, .services-list, .recipe-category-grid {
    flex-direction: column;
  }
  .feature-list li, .service-grid li, .recipe-category-grid li, .services-list li {
    width: 100%;
    min-width: 0;
  }
}

/* ---- STEP LISTS & BENEFITS ---- */
.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
  flex-direction: column;
}
.step-list li {
  background: #FCF3E7;
  border-radius: var(--border-radius);
  box-shadow: 0 1.5px 6.5px rgba(218,133,74,0.05);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.05rem;
  margin-bottom: 13px;
}
.step-list img {
  width: 40px;
  height: 40px;
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.benefits-list li {
  background: #FFF7EC;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 1rem;
  box-shadow: 0 1px 4px rgba(45,75,47,0.06);
  white-space: nowrap;
}

/* ---- BUTTONS ---- */
.btn-primary, .btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: none;
  outline: none;
  padding: 13px 32px;
  min-width: 135px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s, transform 0.15s;
  box-shadow: 0 2px 11px rgba(218,133,74,0.08);
  margin-top: 12px;
  margin-bottom: 6px;
}
.btn-primary {
  color: var(--white)!important;
  background: var(--primary);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-dark);
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(45,75,47,0.16);
  transform: translateY(-2px) scale(1.03);
}
.btn-accent {
  color: var(--white);
  background: var(--accent);
}
.btn-accent:hover, .btn-accent:focus {
  background: var(--accent-dark);
  color: #fff !important;
  box-shadow: 0 4px 24px rgba(218,133,74,0.17);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary:active, .btn-accent:active {
  transform: scale(0.98);
}

/* ---- NAVIGATION ---- */
header {
  background: var(--white);
  box-shadow: 0 2px 18px rgba(45,75,47,0.067);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  height: 74px;
  margin-left: 18px;
}
.logo img {
  max-height: 46px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-left: 38px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  color: var(--primary);
  border-radius: 22px;
  padding: 8px 17px;
  transition: background 0.15s, color 0.17s;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  background: var(--secondary);
  color: var(--accent-dark);
}
.main-nav .btn-primary {
  margin-left: 12px;
}
header {
  display: flex;
  align-items: center;
  height: 74px;
}
header > * {
  flex-shrink: 0;
}
@media (max-width: 1050px) {
  .main-nav {
    gap: 4px;
    margin-left: 14px;
  }
  header {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---- MOBILE NAVIGATION ---- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  font-size: 1.8rem;
  border: none;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: 16px;
  transition: background 0.14s;
  z-index: 41;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--accent-dark);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(244,214,176,0.97);
  z-index: 99;
  display: flex;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.43s cubic-bezier(.68,.16,.2,.78);
  box-shadow: 0 4px 32px rgba(45,75,47,0.07);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: var(--accent);
  color: var(--white);
  font-size: 2rem;
  border: none;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
  z-index: 120;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent-dark);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 80px 24px 24px 36px;
  width: 100vw;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.mobile-nav a {
  display: block;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--primary);
  padding: 12px 6px;
  border-radius: 11px;
  width: 100%;
  transition: background 0.14s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}
.mobile-nav a:not(:last-child) {
  margin-bottom: 0.5em;
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .logo {
    margin: 0 0 0 10px;
  }
  header {
    height: 64px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ---- FOOTER ---- */
footer {
  background: var(--primary);
  color: #fff;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  padding: 36px 0 18px 0;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-top img {
  height: 45px;
}
.brand-slogan {
  font-size: 1.12rem;
  color: #fff1e1;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff8f0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.92;
  transition: color 0.15s, opacity 0.15s;
  padding: 2px 8px;
  border-radius: 7px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent);
  background: #fff2e9;
  opacity: 1;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-bottom: 7px;
}
footer p {
  font-size: 0.98em;
  color: #ffe7ce;
  opacity: 0.88;
  margin-top: 5px;
}

/* ---- CONTACT DETAILS & TEXT BLOCKS ---- */
.contact-details {
  margin-bottom: 18px;
  background: #FFF7EC;
  padding: 20px 24px;
  border-radius: 15px;
  box-shadow: 0 1.7px 5px rgba(45,75,47,0.042);
  font-size: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact-details dt {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.contact-details dd {
  margin-left: 0;
  margin-bottom: 6px;
}
.contact-details a {
  color: var(--accent-dark);
  font-weight: 500;
  transition: text-decoration 0.15s, color 0.12s;
  text-decoration: underline dotted 1.5px;
  word-break: break-all;
}
.contact-details a:hover {
  color: var(--primary);
  text-decoration: underline solid 1.5px;
}
.text-section {
  margin-bottom: 12px;
}
.text-section ul {
  margin: 10px 0 0 0;
  padding-left: 20px;
}
.text-section ul li {
  margin-bottom: 8px;
}

/* ---- TESTIMONIALS ---- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 780px) {
  .testimonial-list {
    flex-direction: column;
  }
  .content-wrapper, .section {
    padding: 26px 9px;
  }
}
.testimonial-card strong {
  display: block;
  font-size: 0.99em;
  color: var(--accent-dark);
  margin-top: 4px;
  font-weight: 700;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--secondary);
  color: #2D4B2F;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 22px;
  font-size: 1.07rem;
  box-shadow: 0 -3px 28px rgba(45,75,47,0.09);
  border-top: 2px solid var(--accent);
  z-index: 1500;
  animation: bannerSlideIn 0.53s cubic-bezier(.57,1.73,.21,.83);
}
@keyframes bannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 auto;
  min-width: 0;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-banner__btn, .cookie-banner__btn--settings {
  border: none;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow .14s, transform 0.12s;
}
.cookie-banner__btn {
  background: var(--accent);
  color: #fff;
}
.cookie-banner__btn:hover, .cookie-banner__btn:focus {
  background: var(--accent-dark);
}
.cookie-banner__btn--reject {
  background: #fff;
  color: #C16218;
  border: 1.5px solid var(--accent);
}
.cookie-banner__btn--reject:hover, .cookie-banner__btn--reject:focus {
  background: #ffeada;
  color: var(--primary);
}
.cookie-banner__btn--settings {
  background: var(--primary-dark);
  color: #fff;
}
.cookie-banner__btn--settings:hover, .cookie-banner__btn--settings:focus {
  background: var(--primary);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 8px;
    font-size: 0.96rem;
  }
  .cookie-banner__actions {
    width: 100%;
    gap: 8px;
  }
}

/* ---- COOKIE MODAL ---- */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45,75,47,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeInModal 0.27s cubic-bezier(.79,.21,.57,1.66);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal__content {
  background: #fff;
  border-radius: 15px;
  padding: 36px 28px 28px 28px;
  min-width: 310px;
  max-width: 90vw;
  box-shadow: 0 7px 48px rgba(218,133,74,0.09);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn 0.31s cubic-bezier(.56,1.06,.37,1.3);
  position: relative;
}
@keyframes modalPopIn {
  from { transform: scale(0.88) translateY(32px); opacity: 0.5; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 10px;
  right: 17px;
  background: none;
  border: none;
  color: var(--accent-dark);
  font-size: 2rem;
  cursor: pointer;
  border-radius: 100px;
  transition: background 0.12s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #FFF7EC;
}
.cookie-modal__title {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 13px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  background: #FCF3E7;
  border-radius: 10px;
  padding: 13px 16px;
}
.cookie-modal__category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal__toggle {
  margin-left: auto;
  appearance: none;
  width: 42px;
  height: 24px;
  background: #f6dbc1;
  border-radius: 14px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal__toggle:checked {
  background: var(--primary);
}
.cookie-modal__toggle::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: transform 0.19s;
  box-shadow: 0 1px 4px rgba(218,133,74,0.09);
}
.cookie-modal__toggle:checked::before {
  transform: translateX(18px);
  background: var(--primary);
}
.cookie-modal__category--essential .cookie-modal__toggle,
.cookie-modal__category--essential .cookie-modal__toggle:checked {
  background: #e0e0e0 !important;
  pointer-events: none;
}
.cookie-modal__category--essential {
  opacity: 0.82;
}
.cookie-modal__actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}
.cookie-modal__actions button {
  border-radius: 100px;
  border: none;
  padding: 13px 27px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.cookie-modal__actions .cookie-modal__accept {
  background: var(--accent);
  color: #fff;
}
.cookie-modal__actions .cookie-modal__accept:hover {
  background: var(--accent-dark);
}
.cookie-modal__actions .cookie-modal__reject {
  background: #fff;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
}
.cookie-modal__actions .cookie-modal__reject:hover {
  background: #ffeada;
  color: var(--primary);
}

/* ---- GENERAL RESPONSIVE ---- */
@media (max-width: 680px) {
  .container {
    max-width: 99vw;
    padding: 0 6px;
  }
  .content-wrapper, .section {
    padding: 18px 3px;
    margin-bottom: 38px;
  }
  .hero-section .content-wrapper {
    padding: 21px 3px;
  }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.27rem; }
  h3 { font-size: 1.08rem; }
}
@media (max-width: 480px) {
  footer {
    padding: 22px 0 9px 0;
    border-radius: 20px 20px 0 0;
  }
}

/* ---- ACCESSIBILITY ---- */
:focus {
  outline: 2px dashed var(--accent-dark);
  outline-offset: 2.5px;
}

/* ---- UTILITY CLASSES ---- */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-12 { margin-bottom: 12px !important; }
/* ---- SMOOTH MICRO-INTERACTIONS ---- */
.card, .feature-list li, .service-grid li, .recipe-category-grid li,
.btn-primary, .btn-accent, .cookie-banner__btn, .cookie-banner__btn--settings, .mobile-menu-toggle,
.services-list li, a {
  transition: box-shadow 0.18s, background 0.18s, transform 0.15s, color 0.13s;
}
