/* 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,
main, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F9F6F2;
  color: #2a372d;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #20614C;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover,
a:focus {
  color: #C06504;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-top: 16px;
}
li {
  margin-bottom: 12px;
  font-size: 1rem;
}
strong, b {
  font-weight: 600;
}

/* TYPOGRAPHY ------------------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20614C;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, .subheadline {
  font-size: 1.13rem;
  color: #384032;
  margin-bottom: 16px;
  line-height: 1.7;
}
.subheadline {
  font-style: italic;
  color: #50806A;
}
.text-section p, .content-wrapper p {
  margin-bottom: 16px;
}
address {
  font-style: normal;
  color: #384032;
  margin-bottom: 10px;
}

/* LAYOUT CONTAINERS ----------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
}

/* SECTIONS, SPACING, FLEXBOX ------------------------- */
.section,
.hero-section,
.features-overview,
.features-section,
.services,
.testimonials,
.cta-section,
.team-section,
.about-section,
.contact-section,
.recipe-list,
.pricing-section,
.benefits-section,
.steps-section,
.approach-section,
.audience-section,
.workshop-list-section,
.legal-section,
.thank-you-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 16px 0 rgba(32, 97, 76, 0.06);
  position: relative;
}

@media (max-width: 768px) {
  .section,
  .hero-section,
  .features-overview,
  .features-section,
  .services,
  .testimonials,
  .cta-section,
  .team-section,
  .about-section,
  .contact-section,
  .recipe-list,
  .pricing-section,
  .benefits-section,
  .steps-section,
  .approach-section,
  .audience-section,
  .workshop-list-section,
  .legal-section,
  .thank-you-section {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: 16px;
  }
}

.card-container, .feature-grid, .features, .recipe-cards, .content-grid, .team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  background: #fffefb;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(32,97,76,0.08);
  padding: 30px 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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: 18px;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F9F6F2;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(32,97,76,0.08);
  margin-bottom: 22px;
  color: #2a372d;
  border-left: 6px solid #20614C;
  min-width: 0;
}
.testimonial-card p {
  margin: 0 0 6px 0;
  font-size: 1.09rem;
  color: #2a372d;
}
.testimonial-card span {
  color: #50806A;
  font-size: 1rem;
  font-style: italic;
}

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

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 10px;
  list-style: none;
  padding: 0;
}
.feature-grid li {
  background: #f6f5ee;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 rgba(32,97,76,0.06);
  padding: 24px 20px 18px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  color: #20614C;
  margin-bottom: 10px;
}
.feature-grid li img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
}
.feature-grid li span {
  display: block;
  color: #94846E;
  font-size: 0.97rem;
  margin-top: 8px;
}
.feature-grid li:hover,
.feature-grid li:focus {
  box-shadow: 0 4px 18px 0 rgba(32, 97, 76, 0.17);
  transform: translateY(-2px) scale(1.015);
}

.recipe-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.recipe-cards .text-section {
  background: #f6f5ee;
  border-radius: 16px;
  box-shadow: 0 1px 10px 0 rgba(32,97,76,0.07);
  padding: 26px 20px 18px 20px;
  min-width: 240px;
  flex: 1 1 272px;
  min-width: 220px;
  margin-bottom: 12px;
}

@media (max-width: 820px) {
  .feature-grid,
  .card-container,
  .content-grid,
  .recipe-cards {
    gap: 16px;
  }
  .feature-grid li,
  .recipe-cards .text-section {
    min-width: 160px;
    flex: 1 1 155px;
  }
}

@media (max-width: 600px) {
  .feature-grid,
  .card-container,
  .content-grid,
  .recipe-cards {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid li,
  .recipe-cards .text-section {
    min-width: 0;
    width: 100%;
  }
}

.text-section {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
ol li {
  margin-bottom: 12px;
}

/* HERO SECTIONS -------------------------------------- */
.hero-section {
  background: #eaf7ee url('../assets/hero-leaves.svg') no-repeat right bottom;
  background-size: contain;
  position: relative;
  overflow: hidden;
  margin-bottom: 64px;
  border-radius: 34px;
  min-height: 310px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 24px 0 rgba(32, 97, 76, 0.12);
}
.hero-section .container {
  position: relative;
  z-index: 1;
}
@media (max-width: 800px) {
  .hero-section {
    background-size: cover;
    min-height: 200px;
    border-radius: 20px;
  }
}
.hero-section h1,
.hero-section .subheadline {
  color: #20614C;
}
.hero-section .cta-button {
  margin-top: 16px;
}

/* CTA BUTTONS ---------------------------------------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  background: #20614C;
  color: #ffffff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  border: none;
  border-radius: 32px;
  padding: 15px 34px;
  box-shadow: 0 2px 12px 0 rgba(32,97,76,0.1);
  margin: 0;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.2s, color 0.16s, transform 0.2s;
  outline: none;
}
.cta-button:hover,
.cta-button:focus {
  background: #C06504;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(192,101,4,0.20);
  transform: translateY(-2px) scale(1.008);
}

/* NAVIGATION ------------------------------------------ */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: flex-start;
  background: transparent;
  padding: 24px 0 12px 0;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #20614C;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 16px;
  transition: background 0.15s;
}
.main-nav > a.cta-button {
  margin-left: auto;
}
.main-nav > a:not(.cta-button):hover,
.main-nav > a:not(.cta-button):focus {
  background: #eaf7ee;
}
.main-nav img {
  height: 44px;
  width: auto;
  margin-right: 15px;
}
@media (max-width: 1200px) {
  .main-nav {
    gap: 15px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 9px;
    font-size: 0.97rem;
  }
  .main-nav img {
    height: 39px;
    margin-right: 9px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
}

/* MOBILE MENU ---------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 22px;
  background: #fff;
  border: none;
  border-radius: 8px;
  font-size: 2.2rem;
  color: #20614C;
  z-index: 2100;
  padding: 4px 12px 4px 10px;
  cursor: pointer;
  box-shadow: 0 1px 8px 0 rgba(32,97,76,0.10);
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #eaf7ee;
  color: #C06504;
}
@media (max-width: 800px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #20614C;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
  z-index: 4000;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 8px 0 38px 0 rgba(32,97,76,0.16);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  margin: 22px 18px 12px 0;
  cursor: pointer;
  z-index: 4100;
  transition: color 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #C06504;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin: 40px 0 0 34px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background 0.16s, color 0.17s;
  font-weight: 500;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #eaf7ee;
  color: #20614C;
}
@media (min-width: 801px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER --------------------------------------------- */
footer {
  background: #eaf7ee;
  padding: 38px 0 16px 0;
}
footer .container {
  padding: 0 15px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
}
footer a img, .footer-social img {
  height: 38px;
  width: auto;
  margin-bottom: 9px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #20614C;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C06504;
}
.footer-contact p, .footer-contact a {
  color: #384032;
  font-size: 1rem;
}
.footer-social {
  /* social icons */
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width:900px) {
  footer .content-wrapper {
    gap: 24px;
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 20px 0 8px 0;
  }
}

/* COOKIE BANNER & MODAL ----------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 8000;
  background: #20614C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 16px 22px 28px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 20px 0 rgba(32, 97, 76,0.27);
  width: calc(100% - 16px);
  margin: 0 8px 0 8px;
  font-size: 1.05rem;
  animation: cookie-banner-in 0.54s cubic-bezier(0.7,0,0.3,1);
}
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    font-size: 0.98rem;
    padding: 18px 8px 18px 10px;
    width: calc(100% - 6px);
    margin: 0 3px 0 3px;
  }
}
@keyframes cookie-banner-in {
  from { transform: translateY(70px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}

.cookie-banner .cookie-buttons {
  display: flex;
  gap: 17px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 12px 24px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  margin: 0 1px;
  background: #fff;
  color: #20614C;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner button.cookie-settings {
  background: #C06504;
  color: #fff;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #eaf7ee;
  color: #20614C;
}
.cookie-banner button.cookie-settings:hover,
.cookie-banner button.cookie-settings:focus {
  background: #fff;
  color: #C06504;
}

/* COOKIE MODAL -------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,97,76,0.11);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9000;
}
.cookie-modal.open {
  display: flex;
  animation: cookie-modal-in 0.46s cubic-bezier(0.7,0,0.3,1);
}
@keyframes cookie-modal-in {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.cookie-modal .modal-content {
  background: #fff;
  color: #20614C;
  border-radius: 22px;
  box-shadow: 0 6px 38px 0 rgba(32,97,76,0.23);
  min-width: 0;
  max-width: 92vw;
  width: 400px;
  padding: 34px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 500px) {
  .cookie-modal .modal-content {
    width: 99vw;
    padding: 20px 8px 16px 8px;
  }
}
.cookie-modal .close-modal {
  position: absolute;
  top: 16px; right: 17px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #C06504;
  cursor: pointer;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  color: #20614C;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  color: #20614C;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: #20614C;
}
.cookie-category .essential {
  font-style: italic;
  color: #aaa;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 21px;
  border: none;
  border-radius: 20px;
  background: #20614C;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal .modal-actions button.secondary {
  background: #C06504;
}
.cookie-modal .modal-actions button:hover,
.cookie-modal .modal-actions button:focus {
  background: #F9F6F2;
  color: #20614C;
}

/* LEGAL & INFO SECTIONS ------------------------------ */
.legal-section {
  background: #faf8f5;
  border-radius: 28px;
  box-shadow: 0 2px 14px 0 rgba(32,97,76,0.08);
}
.legal-section h1, .legal-section h2 {
  margin-top: 22px;
  color: #20614C;
}
.legal-section .text-section h2 {
  font-size: 1.13rem;
  margin-top: 12px;
}
.legal-section .text-section {
  margin-bottom: 0;
}


/* THANK YOU / MESSAGE ------------------------------- */
.thank-you-section {
  background: #eaf7ee;
  border-radius: 28px;
  box-shadow: 0 2px 14px 0 rgba(32,97,76,0.10);
  text-align: center;
  align-items: center;
  justify-content: center;
}
.thank-you-section h1 {
  font-size: 2.1rem;
  margin-bottom: 20px;
  text-align: center;
}
.thank-you-section p {
  font-size: 1.12rem;
  color: #50806A;
  margin-bottom: 18px;
  text-align: center;
}

/* MISC ----------------------------------------------- */
::-webkit-input-placeholder { color: #aaa; }
::-moz-placeholder { color: #aaa; }
:-ms-input-placeholder { color: #aaa; }
::placeholder { color: #aaa; }

/* SPACING UTILS -------------------------------------- */
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mt-20 { margin-top: 20px !important; }

/* ORGANIC EFFECTS & DETAILS -------------------------- */
.section, .hero-section, .card, .feature-grid li, .recipe-cards .text-section, .testimonial-card, .thank-you-section {
  /* Organic organic edge & shadow touch */
  border-radius: 24px 24px 18px 32px / 30px 28px 44px 18px;
}

/* NATURAL TEXTURE - optional (svg/texture overlay idea) */
.section, .hero-section,
.features-overview, .features-section,
.testimonials, .about-section, .cta-section, .thank-you-section {
  background-blend-mode: soft-light;
}

/* SHADOWS -------------------------------------------- */
.card, .feature-grid li, .testimonial-card, .thank-you-section {
  box-shadow: 0 4px 22px 0 rgba(32,97,76,0.08);
}

/* HOVER / MICRO-INTERACTION -------------------------- */
a, .cta-button, button, .feature-grid li, .recipe-cards .text-section {
  transition: background 0.13s, box-shadow 0.18s, color 0.15s, transform 0.19s;
}

.cta-button:active, .cookie-banner button:active {
  transform: scale(0.97);
}

.card:focus-within, .feature-grid li:focus-within, .recipe-cards .text-section:focus-within,
.card:active, .feature-grid li:active, .recipe-cards .text-section:active {
  box-shadow: 0 4px 30px 0 rgba(32, 97, 76, 0.22);
  outline: 2px solid #50806A;
}

/* COLOR UTILITIES ------------------------------------ */
.bg-primary { background: #20614C; color: #fff; }
.bg-secondary { background: #F9F6F2; color: #20614C; }
.bg-accent { background: #C06504; color: #fff; }

.text-primary { color: #20614C !important; }
.text-secondary { color: #648065 !important; }
.text-accent { color: #C06504 !important; }

/* FOCUS VISIBLE STYLES ------------------------------- */
button:focus-visible,
a:focus-visible,
.cta-button:focus-visible {
  outline: 2px solid #C06504;
  outline-offset: 2px;
}

/* SCROLLBAR STYLE: earthy touch ---------------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #eaf7ee;
}
::-webkit-scrollbar-thumb {
  background: #20614C;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C06504;
}

/* MEDIA QUERIES: Responsive Utility ------------------ */
@media (max-width: 1040px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width:700px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.18rem; }
  .content-wrapper {
    gap: 11px;
  }
}

/* NATURE ORGANIC MOODS (leaf/organic circles) --------- */
.section:before, .hero-section:before {
  content: '';
  display: block;
  position: absolute;
  right: -35px; bottom: -32px;
  width: 150px;
  height: 80px;
  background: url('../assets/leaf-texture.svg') no-repeat right bottom;
  background-size: contain;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 550px) {
  .section:before, .hero-section:before { width: 80px; height: 37px; right: -12px; bottom: -10px; }
}

/* PRINT & ACCESSIBILITY ------------------------------ */
@media print {
  nav, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
  main, .section, .container { background: #fff !important; color: #000 !important; }
}

/*********************** END OF CSS *********************/
