/* RESET & BASE TYPOGRAPHY */
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;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}

body {
  font-family: 'Nunito', Arial, sans-serif;
  color: #181818;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  border: none;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 8px;
}
a {
  color: #181818;
  text-underline-position: under;
  transition: color 0.2s;
  text-decoration-thickness: 2px;
}
a:hover, a:focus {
  color: #000;
  text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #161616;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  line-height: 1.15;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  line-height: 1.18;
}
h4 {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 8px;
}
p, .secondary-text, .subheadline {
  color: #212121;
  margin-bottom: 18px;
}
strong { font-weight: 700; }


/* CONTAINERS & FLEXBOX STRUCTURE */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.flex-header { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 70px; }
.flex-footer { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start; gap: 30px; padding: 40px 0 20px; border-top: 1.5px solid #E8E8E8; margin-top: 48px; }
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1.5px solid #eaeaea;
  position: relative;
  z-index: 60;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: #171717;
  opacity: 0.90;
  text-decoration: none;
  padding: 8px 0px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.23s, color 0.23s;
}
.main-nav a:hover, .main-nav a:focus {
  border-bottom: 2px solid #161616;
  color: #080808;
}

/* Button - primary and secondary (for monochrome, not the green brand) */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  border-radius: 28px;
  padding: 12px 34px;
  margin-top: 8px;
  margin-bottom: 8px;
  background: #181818;
  color: #fff;
  border: 1.5px solid #000;
  cursor: pointer;
  box-shadow: 0 5px 16px -10px rgba(0,0,0,0.20), 0 1.5px 0 #000 inset;
  transition: background 0.17s, color 0.17s, box-shadow 0.22s, border 0.17s;
  text-decoration: none;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff;
  background: #191919;
  border: 1.5px solid #101010;
  box-shadow: 0 8px 26px -10px rgba(0,0,0,0.25);
}
.btn-secondary {
  background: #fff;
  color: #111;
  border: 1.5px solid #bbb;
  box-shadow: 0 1.5px 0 #bbb inset;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #f5f5f5;
  color: #111;
  border: 1.5px solid #222;
  box-shadow: 0 7px 20px -7px rgba(0,0,0,0.11);
}


/* HERO SECTIONS & CTA */
.hero-section {
  background: #fafafa;
  border-bottom: 1.5px solid #ececec;
  padding: 48px 0 40px 0;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.hero-section .container, .cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section h1, .cta-section h2 {
  font-size: 2.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #0F0F0F;
  font-weight: 900;
  margin-bottom: 18px;
  letter-spacing: -0.009em;
  line-height: 1.08;
}
.subheadline {
  font-size: 1.12rem;
  font-family: 'Nunito', Arial, sans-serif;
  color: #232323;
  font-weight: 400;
  margin-bottom: 18px;
}
.cta-section {
  padding: 40px 0 32px;
  background: #f5f5f5;
  border-radius: 0 0 22px 22px;
  margin-bottom: 52px;
}
.cta-section .secondary-text {
  color: #585858;
  font-size: 0.98rem;
}


/* FEATURE, CATEGORY & CARD GRIDS */
.feature-grid, .category-grid, .value-grid, .seasonal-recipe-grid, .blog-list, .technique-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 28px 0 12px 0;
  justify-content: space-between;
}
.feature-grid > div, .category-grid > div, .value-grid > div, .seasonal-recipe-grid > div, .technique-list > div, .blog-list > div {
  flex: 1 1 224px;
  min-width: 210px;
  max-width: 340px;
  background: #fff;
  border: 1px solid #E3E3E3;
  border-radius: 12px;
  padding: 26px 18px 20px;
  box-shadow: 0 3.5px 12px -4px rgba(34,34,34,0.06);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.17s, border-color 0.18s, transform 0.18s;
}
.feature-grid > div:hover, .category-grid > div:hover, .value-grid > div:hover, .seasonal-recipe-grid > div:hover, .technique-list > div:hover, .blog-list > div:hover {
  box-shadow: 0 7px 22px -7px rgba(34,34,34,0.14);
  border-color: #BABABA;
  transform: translateY(-4px) scale(1.022);
}
.feature-grid img, .category-grid img, .seasonal-recipe-grid img, .value-grid img, .technique-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
  filter: grayscale(1) contrast(1.05);
}


/* CARDS, CARD CONTAINER, TESTIMONIALS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 12px -3px rgba(30,30,30,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 20px 22px 22px;
  border: 1px solid #E5E5E5;
  transition: box-shadow 0.2s, border-color 0.17s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 7px 25px -8px rgba(0,0,0,0.14);
  border-color: #d0d0d0;
  transform: scale(1.015);
}


/* TESTIMONIALS */
.testimonial-section {
  background: #f6f6f8;
  border-radius: 18px;
  padding: 44px 0 48px 0;
  margin-bottom: 30px;
  box-shadow: 0 4px 22px -13px rgba(23,23,23,0.08);
}
.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 32px 0 22px 0;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px -10px rgba(20,20,20,0.13);
  border: 1.5px solid #ECECEC;
  margin-bottom: 20px;
  max-width: 320px;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card p {
  font-size: 1rem;
  color: #1A1A1A;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-card .testimonial-name {
  font-size: 0.98rem;
  color: #888;
  font-family: 'Nunito', Arial, sans-serif;
}
.star-rating {
  color: #222;
  letter-spacing: 0.04em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
}


/* MISCELLANEOUS GRIDS & FLEX CONTAINERS */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Blog Specific */
.blog-list {
  margin-bottom: 16px;
  gap: 32px;
}
.blog-list > div {
  border-left: 4px solid #181818;
  box-shadow: 0 3px 12px -7px rgba(34,34,34,0.09);
  border-radius: 8px;
}
.category-tag {
  display: inline-block;
  background: #fff;
  border: 1px solid #bbb;
  color: #353535;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.featured-blog {
  margin: 32px 0 0 0;
  padding: 18px 22px;
  border-radius: 9px;
  background: #F8F8F8;
  border-left: 5px solid #111;
  font-style: italic;
  color: #222;
}


/* SEARCH, FILTERS, QUICK-LINKS */
.search-bar {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 24px 0 18px 0;
  width: 100%;
  max-width: 480px;
}
.search-bar input[type="search"] {
  flex: 1 1 0px;
  border: 1px solid #CFCFCF;
  border-radius: 21px;
  padding: 11px 20px;
  font-size: 1rem;
  outline: none;
  background: #fff;
  color: #2F2F2F;
  transition: border 0.16s;
}
.search-bar input[type="search"]:focus {
  border: 1.5px solid #232323;
}

.category-filters, .season-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 16px 0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.category-filters a, .season-filter a {
  font-size: 0.97rem;
  color: #414141;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  margin: 0 8px 6px 0;
  opacity: 0.87;
  transition: color 0.14s, opacity 0.15s;
}
.category-filters a:hover, .season-filter a:hover {
  color: #161616;
  opacity: 1;
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 19px 0 12px 0;
  font-size: 0.97rem;
  color: #686868;
  opacity: 0.80;
  font-family: 'Montserrat', Arial, sans-serif;
}
.quick-links a {
  color: #353535;
  text-decoration: underline;
  transition: color 0.13s;
}
.quick-links a:hover { color: #000; }

.highlighted-recipes {
  background: #F8F8F8;
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 18px;
  margin-top: 12px;
  border-left: 4px solid #181818;
}
.highlighted-recipes ul {
  list-style-type: disc;
  margin-left: 30px;
}


/* ADDRESS & FOOTER NAV */
address {
  font-style: normal;
  font-size: 0.96rem;
  line-height: 1.7;
  color: #292929;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
address img {
  vertical-align: middle;
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  filter: grayscale(1) contrast(1.07) brightness(0.8);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin: 8px 0;
}
.footer-nav a {
  color: #393939;
  font-size: 0.97rem;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-bottom: 1.5px solid #191919;
}


/* NEWSLETTER SECTION */
.newsletter-section {
  background: #FAFAFA;
  border-radius: 14px;
  padding: 40px 22px 38px 22px;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px -10px rgba(33,33,33,0.09);
}
.newsletter-section ul {
  list-style-type: disc;
  margin-left: 26px;
  margin-bottom: 14px;
}


/* CONTACT & THANK YOU */
.contact-info-section ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.contact-info-section ul li {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.thank-you-message {
  background: #F6F6F6;
  padding: 18px 18px 16px 22px;
  border-radius: 10px;
  margin-bottom: 18px;
}
.next-steps {
  margin-bottom: 20px;
}


/* MODALS & ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInMenu {
  from { transform: translateX(102%); opacity: 0.91; }
  to   { transform: translateX(0);    opacity: 1;  }
}
@keyframes slideOutMenu {
  from { transform: translateX(0);  opacity: 1; }
  to   { transform: translateX(102%); opacity: 0.7; }
}


/* MOBILE MENU (BURGER) */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: #fff;
  border: none;
  font-size: 2.2rem;
  color: #222;
  padding: 8px 14px;
  margin-left: 8px;
  z-index: 102;
  cursor: pointer;
  border-radius: 9px;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-toggle:focus { outline: 2px solid #0F0F0F; }

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 120;
  background: rgba(245,245,245, 0.98);
  animation: fadeIn 0.22s;
  transition: opacity 0.24s;
}
.mobile-menu.open {
  display: flex;
  animation: slideInMenu 0.22s both;
}
.mobile-menu.closing {
  animation: slideOutMenu 0.22s both;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #151515;
  align-self: flex-end;
  margin: 24px 28px 6px 0;
  cursor: pointer;
  border-radius: 9px;
  transition: background 0.18s;
}
.mobile-menu-close:focus {
  outline: 2.5px solid #111;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin: 34px 0 0 34px;
}
.mobile-nav a {
  color: #161616;
  font-size: 1.22rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 0 8.5px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.18s, color 0.2s, background 0.18s;
  width: fit-content;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  border-bottom: 2px solid #151515;
  color: #000;
  background: #fff;
}


/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  background: #1C1C1C;
  color: #fff;
  font-size: 1rem;
  z-index: 2000;
  box-shadow: 0 -4px 30px -8px rgba(10,10,10,0.12);
  padding: 22px 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.25s;
}
.cookie-banner-text {
  margin-bottom: 13px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 22px;
  padding: 9px 22px;
  margin: 0 7px;
  outline: none;
  border: 1.5px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  opacity: 0.93;
  transition: background 0.17s, color 0.13s, border 0.16s;
}
.cookie-btn.accept-all {
  background: #fff;
  color: #111;
  border: 1.5px solid #fff;
}
.cookie-btn.accept-all:hover, .cookie-btn.accept-all:focus {
  background: #ebebeb;
  color: #111;
  border: 1.5px solid #fff;
}
.cookie-btn.reject-all {
  background: #181818;
  color: #fff;
  border: 1.5px solid #b7b7b7;
}
.cookie-btn.reject-all:hover, .cookie-btn.reject-all:focus {
  background: #111;
  border: 1.5px solid #fff;
}
.cookie-btn.settings {
  color: #fff;
  background: #262626;
  border: 1.5px solid #494949;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #1c1c1c;
  border: 1.5px solid #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 3020;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(21,21,21, 0.84);
  display: none;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.18s;
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.19s both;
}
.cookie-modal-content {
  background: #fff;
  color: #161616;
  border-radius: 16px;
  max-width: 410px;
  width: 94vw;
  padding: 34px 30px 28px;
  box-shadow: 0 12px 32px -9px rgba(23,23,23,0.15);
  animation: fadeIn 0.16s;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Nunito', Arial, sans-serif;
}
.cookie-modal-content h3 {
  font-size: 1.32rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 25px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #1C1C1C;
  border-radius: 5px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 10px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #161616;
  font-size: 1.35rem;
  align-self: flex-end;
  margin-top: -10px;
  margin-bottom: 5px;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #EF2525;
}


/* UTILITIES */
.text-section {
  margin-bottom: 24px;
  gap: 13px;
}
.secondary-text {
  font-size: 1rem;
  color: #464646;
}
::-webkit-input-placeholder { color: #9c9c9c; opacity: 1; }
::-moz-placeholder { color: #9c9c9c; opacity:1; }
:-ms-input-placeholder { color: #9c9c9c; opacity:1; }
::placeholder { color: #9c9c9c; opacity:1; }


/* =========== RESPONSIVE DESIGN ============ */
@media (max-width: 1100px) {
  .feature-grid > div, .category-grid > div, .value-grid > div, .seasonal-recipe-grid > div, .technique-list > div, .blog-list > div {
    flex: 1 1 45%;
    max-width: 100%;
  }
  .flex-header, .flex-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .category-grid, .value-grid, .seasonal-recipe-grid, .technique-list, .blog-list {
    gap: 18px;
  }
  .container { padding: 0 10px; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .flex-header, .flex-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-section, .cta-section, .newsletter-section, .testimonial-section { padding-left: 10px; padding-right: 10px; }
  .feature-grid, .category-grid, .value-grid, .seasonal-recipe-grid, .technique-list, .blog-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section { flex-direction: column; gap: 20px; }
  .section { padding: 32px 8px; margin-bottom: 40px; }
  .newsletter-section { padding: 32px 8px; }
  .content-wrapper { padding-left: 0; padding-right: 0; }
}
@media (max-width: 560px) {
  .hero-section h1, .cta-section h2 { font-size: 1.45rem; }
  h2 { font-size: 1.18rem; }
  .feature-grid > div, .category-grid > div, .value-grid > div, .seasonal-recipe-grid > div, .technique-list > div, .blog-list > div {
    padding: 16px 10px 12px;
  }
  .testimonial-card { padding: 13px 8px; }
  .cookie-banner { padding: 11px 4px 9px; }
}

/* ======== VISUAL ENHANCEMENTS ======== */
.card, .feature-grid > div, .category-grid > div, .value-grid > div, .seasonal-recipe-grid > div, .blog-list > div, .testimonial-card {
  transition: box-shadow 0.19s, border-color 0.15s, transform 0.17s;
}
.card:focus-within,
.card:hover,
.feature-grid > div:focus-within,
.feature-grid > div:hover,
.testimonial-card:focus-within,
.testimonial-card:hover {
  box-shadow: 0 12px 38px -12px rgba(34,34,34,0.19);
  transform: translateY(-2.5px) scale(1.02);
}
