/* --- 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #fff;
  color: #111;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #161616;
  background: #fff;
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: inside;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* --- TYPOGRAPHY --- */
h1, .h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
  text-transform: uppercase;
}
h2, .h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}
h3, .h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.33rem;
  font-weight: 500;
  color: #252525;
  margin-bottom: 8px;
  line-height: 1.2;
  text-transform: none;
}
h4, .h4 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  color: #222;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.12rem;
  color: #444;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
p {
  margin-bottom: 18px;
  color: #222;
}
strong {
  font-weight: 600;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  z-index: 20;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo-link img {
  height: 48px;
  width: auto;
  display: block;
}
.main-navigation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.main-navigation a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 4px 0 4px 0;
  color: #161616;
  position: relative;
  transition: color 0.18s;
}
.main-navigation a:hover {
  color: #222;
  text-decoration: underline;
}
.main-navigation .cta-btn {
  background: #111;
  color: #fff;
  border-radius: 24px;
  padding: 10px 28px;
  margin-left: 12px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 6px rgba(20,20,20,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.main-navigation .cta-btn:hover {
  background: #fff;
  color: #111;
  border: 1.5px solid #111;
  box-shadow: 0 2px 10px rgba(50, 50, 50,0.12);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #111;
  font-size: 2rem;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: background .22s, color .18s;
  z-index: 1202;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #161616;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.23);
  z-index: 1200;
  transform: translateX(-105vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(.67,.23,.61,1.16), opacity .2s;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #111;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 1210;
  transition: background .18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #161616;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.25rem;
  color: #161616;
  padding: 14px 0;
  border-radius: 6px;
  width: 85vw;
  text-align: center;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #fff;
  background: #161616;
}

/* Show/hide nav depending on screen */
@media (max-width: 1024px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .main-navigation {
    display: flex;
  }
}

/* --- HERO SECTION --- */
.hero {
  background: #f7f7f8;
  border-bottom: 1px solid #e0e0e0;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.hero .container {
  justify-content: center;
  align-items: center;
  min-height: 270px;
}
.hero h1 {
  color: #161616;
}
.hero .subheadline {
  color: #222;
}

/* --- SECTION SPACING (MANDATORY) --- */
.section,
.features,
.services,
.about-section,
.contact-section,
.testimonials,
.contact-snippet {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(24,24,24,0.05);
}

/* --- FLEXBOX UTILITY CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(24,24,24,0.06);
  padding: 24px;
  transition: box-shadow .22s, transform .17s;
  position: relative;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(32,32,32,0.13);
  transform: translateY(-3px) scale(1.012);
}
.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;
  background: #f6f6f8;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(26,26,26,0.08);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 5px solid #161616;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(28,28,28,0.04);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 280px;
  margin-bottom: 20px;
  border: 1px solid #ececec;
  transition: box-shadow .18s, border-color .18s, transform .18s;
}
.feature-item:hover {
  box-shadow: 0 6px 24px rgba(24,24,24,0.13);
  border-color: #161616;
  transform: translateY(-2px) scale(1.008);
}
.feature-item h3 {
  font-size: 1.15rem;
  color: #111;
  font-weight: 600;
}
.feature-item img {
  height: 36px;
  width: 36px;
  margin-bottom: 8px;
  opacity: 0.93;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* --- OTHER SECTION SPECIFIC --- */
.numbers-highlight ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 0 0;
  padding: 0;
}
.numbers-highlight li {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  color: #111;
  background: #f3f3f5;
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 110px;
  font-weight: 500;
  margin-bottom: 12px;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.category-list li {
  margin-bottom: 0;
}
.category-list a {
  background: #fff;
  color: #161616;
  border-radius: 18px;
  border: 1.2px solid #e0e0e0;
  padding: 7px 20px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.13s, color 0.14s, border-color .17s;
}
.category-list a:hover {
  color: #fff;
  background: #111;
  border-color: #111;
}

.recipe-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.recipe-highlights article {
  background: #f7f7f9;
  border-radius: 14px;
  padding: 22px 16px;
  flex: 1 1 260px;
  box-shadow: 0 1px 7px rgba(20,20,20,0.04);
  min-width: 240px;
  margin-bottom: 20px;
  transition: background .12s, transform .15s;
}
.recipe-highlights article:hover {
  background: #f0f0f2;
  transform: scale(1.01);
}

.user-recommendations ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 0;
}
.user-recommendations li {
  font-size: 1rem;
  color: #222;
}

.quick-recipe-list ul,
.regional-specials ul,
.seasonal-highlights ul,
.latest-posts ul,
.popular-categories ul,
.next-steps ul,
.guest-posts ul,
.cooking-tips ul,
.faq-list {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.next-steps ul {
  margin-bottom: 18px;
}

.map-snippet {
  background: #f8f8f8;
  border-left: 3.5px solid #161616;
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 18px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.contact-details li,
.contact-snippet ul li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #222;
}
.contact-details img,
.contact-snippet img {
  width: 20px;
  height: 20px;
  opacity: 0.85;
}

/**** TESTIMONIALS ****/
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card p {
  color: #1a1a1a;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 5px;
}
.testimonial-card span {
  color: #111;
  font-weight: 600;
  font-size: .97rem;
  margin-left: 10px;
}

/* -- FAQ -- */
.faq-list {
  gap: 24px;
  margin-bottom: 12px;
}
.faq-item {
  background: #f7f7f7;
  padding: 16px 22px;
  border-radius: 10px;
  border-left: 3px solid #111;
  box-shadow: 0 1px 8px rgba(24,24,24,0.05);
}

/* --- BUTTONS --- */
.cta-btn, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 28px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 14px 32px;
  letter-spacing: 0.01em;
  margin-top: 4px;
  transition: background 0.18s, color .18s, box-shadow .18s;
  box-shadow: 0 2px 7px rgba(24,24,24,0.06);
}
.cta-btn:hover, .cookie-btn:hover {
  background: #fff;
  color: #111;
  border: 1.5px solid #161616;
  box-shadow: 0 3px 16px rgba(36,36,36,0.16);
}

.cookie-btn-light {
  background: #fff;
  color: #111;
  border: 1.5px solid #161616;
  margin-right: 10px;
}
.cookie-btn-light:hover {
  background: #161616;
  color: #fff;
}

/* --- FOOTER --- */
footer {
  background: #131313;
  color: #e5e5e5;
  padding: 44px 0 24px 0;
  margin-top: 60px;
  font-size: .97rem;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  justify-content: center;
}
.footer-navigation a {
  color: #cecece;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  transition: color .15s;
}
.footer-navigation a:focus,
.footer-navigation a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-logo {
  margin: 10px 0;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
.social-links {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}
.social-links img {
  width: 27px;
  height: 27px;
  opacity: 0.85;
  transition: opacity .15s, filter .14s;
}
.social-links img:hover {
  opacity: 1;
  filter: brightness(0.0) invert(1);
}
.footer-copy {
  color: #bababa;
  font-size: .91rem;
  margin-top: 10px;
  text-align: center;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #19191b;
  color: #fff;
  box-shadow: 0 -2px 24px rgba(24, 24, 24, 0.15);
  z-index: 2222;
  padding: 26px 14px 22px 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 32px;
  animation: fadeInUp .5s ease;
}
@keyframes fadeInUp {
  from { transform: translateY(48px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  color: #fff;
  font-size: 1rem;
  flex: 1;
  max-width: 540px;
  margin-right: 24px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  min-width: 128px;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 10px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
  }
}

/* --- COOKIE MODAL --- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2250;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,18,18,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #161616;
  border-radius: 20px;
  box-shadow: 0 6px 47px rgba(18,18,18,0.24);
  padding: 36px 28px 26px 28px;
  max-width: 410px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  animation: cookiePop .33s .04s cubic-bezier(.40,1.21,.44,1.01);
}
@keyframes cookiePop {
  from { transform: scale(.94) translateY(32px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.34rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.cookie-modal ul {
  margin: 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1.02rem;
  color: #1b1b1b;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 21px;
  top: 16px;
  background: none;
  color: #161616;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  border: none;
  font-size: 1.3rem;
  transition: background .16s;
}
.cookie-modal-close:hover {
  background: #f3f3f3;
}
.toggle-switch {
  width: 38px;
  height: 22px;
  background: #e3e3e7;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: background 0.16s;
}
.toggle-switch input {
  display: none;
}
.toggle-switch .slider {
  background: #161616;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 2px;
  top: 2px;
  transition: left 0.17s, background .17s;
}
.toggle-switch input:checked + .slider {
  left: 18px;
  background: #151c22;
}
.toggle-switch.disabled,
.toggle-switch[aria-disabled='true'] {
  background: #cecece;
  cursor: not-allowed;
}
.toggle-switch.disabled .slider {
  background: #999;
}

/* --- RESPONSIVE --- */
@media (max-width:1100px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width:900px) {
  .feature-grid,
  .recipe-highlights,
  .card-container,
  .testimonial-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 97vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .hero,
  .section,
  .features,
  .about-section,
  .testimonials,
  .services,
  .contact-section,
  .contact-snippet {
    padding: 26px 4px;
    margin-bottom: 36px;
  }
  .feature-item {
    min-width: 180px;
    padding: 18px 8px;
  }
  .feature-grid,
  .recipe-highlights,
  .card-container,
  .testimonial-list,
  .numbers-highlight ul {
    flex-direction: column;
    gap: 12px;
  }
  .footer-navigation {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .section,
  .features,
  .about-section,
  .contact-section,
  .testimonials,
  .services {
    border-radius: 10px;
  }
  .content-grid,
  .card-container {
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .numbers-highlight ul {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  h2, .h2 {
    font-size: 1.18rem;
  }
  h1, .h1 {
    font-size: 1.33rem;
  }
  .feature-item h3 {
    font-size: 1rem;
  }
}

/* --- MONOCHROME SOPHISTICATED OVERRIDES --- */
body, html {
  background: #fff;
  color: #111;
}
.section, .about-section, .features, .testimonials, .services, .contact-section, .contact-snippet {
  background: #fff;
}
.card, .feature-item, .testimonial-card, .faq-item {
  background: #fff;
  color: #191919;
}
h1, h2, h3, .logo-link img, .footer-logo img, .cta-btn {
  color: #111;
}
.button, .cta-btn, .cookie-btn {
  background: #111;
  color: #fff;
}
::selection {
  background: #111;
  color: #fff;
}

/* Enhanced contrast for testimonials/reviews */
.testimonial-card, .user-recommendations li {
  background: #fff;
  border-left: 5px solid #161616;
  color: #101010;
}
.testimonial-card p, .testimonial-card span, .user-recommendations li {
  color: #101010;
}

/* --- HOVER STATES FOR INTERACTIVE ELEMENTS --- */
.card:hover, .feature-item:hover, .faq-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(24,24,24,0.18);
  background: #fafafd;
  border-color: #111;
}
a.cta-btn:active, a.cta-btn:focus,
.button:active, .button:focus {
  outline: 2px solid #161616;
  outline-offset: 2px;
}

/* --- MICRO-INTERACTIONS --- */
.card, .feature-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.18s, background 0.18s, border-color 0.15s, transform 0.11s;
}

/* --- Z-INDEX ENSURE --- */
.mobile-menu, .cookie-banner, .cookie-modal-backdrop {
  z-index: 1200;
}

/* --- VISUAL HIERARCHY/WHITESPACE --- */
.section, .features, .about-section, .testimonials, .services, .contact-section, .contact-snippet {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature-item, .testimonial-card, .faq-item {
  margin-bottom: 20px;
}
.card-container, .content-grid, .text-image-section, .testimonial-list, .feature-grid {
  gap: 24px;
}

/* --- FORM ELEMENTS --- */
input, textarea, select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 1rem;
  background: #fafafb;
  color: #181818;
  margin-bottom: 16px;
  transition: border-color .19s, background .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #161616;
  background: #fff;
}

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