/* ==================================================
   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;
  vertical-align: baseline;
  font: inherit;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F4EBD9;
  color: #40331d;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul, ol {
  padding-left: 1.25em;
  margin-bottom: 1.25em;
}
a {
  color: #A67926;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #27374D;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  color: #27374D;
  margin-bottom: 0.75em;
}
h1 { font-size: 2.5rem; line-height: 1.2; letter-spacing: -1px; }
h2 { font-size: 2rem; line-height: 1.25; margin-bottom: 0.5em; }
h3 { font-size: 1.4rem; line-height: 1.3; }
h4 { font-size: 1.16rem; }
strong { font-weight: 700; }
p {
  margin-bottom: 1.25em;
  font-size: 1rem;
}
blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.25rem;
  color: #5C4636;
  background: #F9F3ED;
  border-left: 6px solid #A67926;
  padding: 18px 24px;
  margin-bottom: 15px;
  margin-top: 0;
  border-radius: 6px;
}

/* Vintage Retro COLORS and Patterns */
:root {
  --primary: #27374D;
  --secondary: #F4EBD9;
  --accent: #A67926;
  --vintage-dark: #40331d;
  --vintage-light: #F9F3ED;
  --vintage-red: #BC4B36;
  --vintage-blue: #476990;
  --vintage-mustard: #946111;
  --vintage-card: #FFF9F0;
}

/* ===============================
   BASIC LAYOUT CONTAINERS
=============================== */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===============================
   HEADER & NAVIGATION
=============================== */
header {
  background: var(--vintage-card) url('../assets/patterns/dots.png') repeat;
  border-bottom: 4px solid var(--accent);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 16px 0 rgba(166, 121, 38, 0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 21px;
}
.logo img {
  height: 54px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
}
.main-nav a {
  color: var(--primary);
  padding: 6px 9px;
  border-radius: 8px;
  position: relative;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #fff;
}
.cta.primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Merriweather', serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 11px 26px;
  border-radius: 35px;
  box-shadow: 0 2px 6px 0 rgba(166, 121, 38, 0.08);
  border: none;
  cursor: pointer;
  margin-left: 21px;
  transition: background 0.2s, box-shadow 0.2s, color 0.15s;
  text-shadow: 1px 1px 0 #B38E5D19;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--primary);
  color: #ffd36a;
  box-shadow: 0 8px 24px 0 rgba(39,55,77,0.15);
}
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 7px 13px;
  border-radius: 50%;
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.12s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: #ffd36a;
  box-shadow: 0 2px 8px 0 rgba(39,55,77,0.09);
}
/* ===============================
   MOBILE NAVIGATION
=============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw;
  height: 100vh;
  background: var(--secondary);
  box-shadow: 0 4px 28px 0 #94611140;
  z-index: 3000;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(.87,-0.01,.37,1.02);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: none;
  color: var(--primary);
  border: none;
  margin: 24px 28px 0 0;
  cursor: pointer;
  z-index: 4000;
  line-height: 1;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  flex-direction: column;
  display: flex;
  gap: 22px;
  width: 100%;
  padding: 42px 34px;
  margin-top: 18px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--primary);
  background: none;
  border-radius: 7px;
  padding: 12px 14px;
  display: block;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  transition: background 0.21s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--accent);
  color: #fff;
}
/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none!important; }
}

/* ===============================
   HERO BANNER
=============================== */
.hero {
  background: var(--primary) url('../assets/patterns/vintage-crosshatch.png') repeat;
  color: #fff;
  padding: 56px 0 44px 0;
  margin-bottom: 0;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  color: #fff;
  max-width: 600px;
}
.hero h1, .hero h2, .hero h3, .hero p {
  color: #fff;
  text-shadow: 0 1px 0 #27374d44;
}
.hero .cta.primary {
  margin-top: 11px;
  background: var(--accent);
}

/* ===============================
   FEATURES / CARDS / CATEGORIES
=============================== */
.features {
  background: var(--vintage-card);
  border-top: 4px dotted var(--vintage-mustard);
  border-bottom: 4px dotted var(--vintage-mustard);
  padding-bottom: 0;
}
.features .content-wrapper {
  gap: 30px;
  align-items: flex-start;
  padding-bottom: 0;
}
.feature-grid, .category-grid, .recipe-list, .recipe-grid, .regional-recipe-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: flex-start;
}
.feature-item, .category-item, .recipe-item, .region-item {
  background: var(--vintage-light);
  border-radius: 13px;
  border: 2px solid #e4d5c1;
  box-shadow: 0 2px 10px 0 #a6792621;
  padding: 30px 22px;
  margin-bottom: 20px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.2s;
   border-style: double;
}
.feature-item:hover,
.category-item:hover,
.recipe-item:hover,
.region-item:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 18px 0 #a6792623;
}
.feature-item img,
.category-item img,
.recipe-item img {
  width: 38px;
  height: 38px;
  filter: sepia(0.16) saturate(0.62) brightness(0.97) hue-rotate(-5deg);
}
.features h3, .category-item h3, .feature-item h3 {
  font-size: 1.23rem;
  color: var(--vintage-mustard);
  font-family: 'Merriweather', serif;
  margin-bottom: 0;
}
.features p, .feature-item p, .category-item p, .recipe-item p {
  color: var(--vintage-dark);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 0.99rem;
}
.services .daily-recipe, .seasonal-recommendations, .origin-stories, .quality-promise, .cooking-tips, .regional-facts {
  background: var(--vintage-light);
  border-radius: 11px;
  border: 1.5px dashed var(--accent);
  padding: 20px 22px 18px 22px;
  margin-bottom: 18px;
  font-size: 1.04rem;
}
.filter-options {
  margin-top: 17px;
  margin-bottom: 9px;
  font-size: 1.09rem;
  font-weight: bold;
}
.filter-options strong {
  color: var(--accent);
  font-size: 1.1em;
  font-family: 'Merriweather', serif;
}

/* ===============================
   TESTIMONIALS
=============================== */
.testimonials {
  background: #e4d5c1;
  padding: 44px 0 16px 0;
}
.testimonials .content-wrapper {
  gap: 27px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff2e0;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 #9461111f;
  border: 2.5px double var(--accent);
  color: #27374D;
}
.testimonial-card blockquote {
  font-size: 1.02rem;
  background: none;
  color: #27374D;
  border: none;
  margin: 0;
  padding: 0;
  font-style: italic;
}
.testimonial-card span {
  font-size: 0.98rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #946111;
  margin-left: 16px;
}

/* ===============================
   Footer
=============================== */
footer {
  background: var(--primary) url('../assets/patterns/vintage-crosshatch.png') repeat;
  color: #fff;
  padding: 30px 0 17px 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px 48px;
}
.footer-menu {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}
.footer-menu a {
  color: #ffd791;
  font-size: 0.97rem;
  font-family: 'Merriweather', serif;
  transition: color 0.19s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fffde3;
}
footer a img {
  margin: 0 19px 0 0;
}
.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}
.social-links img {
  height: 23px;
  filter: grayscale(35%) sepia(22%) brightness(1.07);
  transition: filter 0.15s;
  cursor: pointer;
}
.social-links img:hover,
.social-links img:focus {
  filter: grayscale(0%) sepia(0%) brightness(1.34);
}
.footer-contact {
  font-size: 0.94rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #FFD791;
  margin-top: 0.7em;
}

/* ===============================
   FORMATTED LISTS, GUIDES, WERTELISTEN
=============================== */
.value-list, .guidelines-list, .quick-tip-list, .cooking-tips ul, .regional-facts ul, .legal ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 15px;
}
.value-list li::before, .guidelines-list li::before, .quick-tip-list li::before, .cooking-tips ul li::before, .regional-facts ul li::before, .legal ul li::before {
  content: '\2605'; /* star/unicode vintage symbol */
  color: var(--accent);
  margin-right: 8px;
  font-size: 1.02em;
  font-family: 'Merriweather', serif;
  vertical-align: middle;
}
.value-list li,
.guidelines-list li,
.quick-tip-list li,
.cooking-tips ul li,
.regional-facts ul li,
.legal ul li {
  font-size: 1.01rem;
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
}

/**************************
 BRAND CONTACT INFO/CARDS
***************************/
.brand-contact-info {
  border: 2px dotted var(--vintage-mustard);
  border-radius: 11px;
  background: var(--vintage-card);
  padding: 20px 18px 15px 18px;
  margin-bottom: 21px;
  font-size: 1.03rem;
}
.brand-contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  list-style: none;
  margin-bottom: 8px;
}
.brand-contact-info li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--primary);
  font-size: 1rem;
}
.brand-contact-info img {
  width: 19px;
  height: 19px;
  opacity: 0.88;
}

/* ===============================
   LEGAL SECTION
=============================== */
.legal {
  background: var(--vintage-light);
  box-shadow: 0 1px 12px 0 #b39c8114;
  border-radius: 13px;
  margin-top: 35px;
  margin-bottom: 65px;
}
.legal .content-wrapper {
  gap: 18px;
}
.legal h1, .legal h2 {
  color: var(--primary);
}
.legal ul li {
  margin-bottom: 0.7em;
}

/* ===============================
   CONFIRMATION SECTION
=============================== */
.confirmation {
  background: #FFF9F0;
  border: 2px dashed var(--accent);
  border-radius: 15px;
  margin: 38px 0 45px 0;
  padding: 44px 0;
}
.confirmation .cta.primary {
  margin-top: 19px;
}

/* ===============================
   RESPONSIVE LAYOUTS!
=============================== */
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 11px;
  }
  .main-nav { gap: 13px; }
  .footer-menu { gap: 9px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .hero {
    padding: 38px 0 27px 0;
  }
  .features .content-wrapper,
  .testimonials .content-wrapper {
    gap: 17px;
    padding: 0;
  }
  .footer-menu {
    flex-direction: column;
    gap: 11px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .feature-grid, .category-grid, .recipe-list, .recipe-grid, .regional-recipe-list {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 560px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .features, .hero, .section, .confirmation {
    padding: 30px 2vw;
  }
  .feature-item, .category-item, .recipe-item, .region-item {
    padding: 18px 9px;
    min-width: 0;
    max-width: 100vw;
  }
}

/* ===============================
   SPACING RULES
=============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--vintage-card);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 #94611123;
  padding: 24px 18px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============================
   BUTTONS, SECONDARY CTA, ETC
=============================== */
.cta.secondary {
  display: inline-block;
  background: #fff;
  color: var(--accent);
  font-family: 'Merriweather', serif;
  border-radius: 35px;
  padding: 10px 28px;
  border: 2px solid var(--accent);
  outline: none;
  cursor: pointer;
  transition: background 0.19s, color 0.14s, border 0.2s;
  box-shadow: 0 1px 8px 0 #94611119;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--accent);
  color: #fff;
  border-color: var(--primary);
}
button:focus, .cta:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 3px;
}

/* ===============================
   TABLES FOR LEGAL/COOKIES LISTS
=============================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0 2em 0;
  background: #fffbe8;
  border: 2px double var(--vintage-mustard);
}
th, td {
  border: 1px solid #e4d5c1;
  padding: 10px 12px;
  font-size: 1rem;
}
th {
  background: #F4EBD9;
  color: var(--primary);
  font-family: 'Merriweather', serif;
  font-size: 1.07rem;
  font-weight: 600;
}

/* ===============================
   MICRO-INTERACTIONS & EFFECTS
=============================== */
.card, .feature-item, .category-item, .recipe-item, .region-item {
  transition: box-shadow 0.21s, border-color 0.18s, transform 0.18s;
}
.card:hover, .feature-item:hover, .category-item:hover, .recipe-item:hover, .region-item:hover {
  box-shadow: 0 8px 21px 0 #A6792699;
  border-color: var(--accent);
  transform: translateY(-2px) scale(1.025);
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
=============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg,#F4EBD9 80%,#fff3df 100%);
  border-top: 3px dashed var(--vintage-mustard);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 26px 18px 32px;
  z-index: 6000;
  box-shadow: 0 -2px 12px #A6792620;
  font-size: 1.02rem;
  color: #40331d;
  animation: cookieSlideIn 0.66s cubic-bezier(.81,.22,.66,1.18);
  will-change: transform, opacity;
}
@keyframes cookieSlideIn {
  from { transform: translateY(140px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
  margin-left: auto;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 32px;
  padding: 11px 23px;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Open Sans', Arial, sans-serif;
  box-shadow: 0 1px 5px #94611113;
  margin-right: 4px;
  background: var(--accent);
  color: #fff;
  transition: background 0.18s, color 0.15s, box-shadow 0.19s;
}
.cookie-consent-banner button:last-child { margin-right: 0; }
.cookie-consent-banner button.cookie-settings {
  background: #fff;
  color: var(--accent);
  border: 2px solid var(--accent);
  font-weight: 600;
}
.cookie-consent-banner button.cookie-settings:hover, .cookie-consent-banner button.cookie-settings:focus {
  background: var(--accent);
  color: #fff;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--primary);
  color: #ffd791;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 6600;
  left: 0; right: 0; top: 0; bottom: 0;
  background: #27374d66;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.37s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff9f3;
  border-radius: 17px;
  padding: 39px 22px 29px 29px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 6px 42px 0 #27374d33;
  position: relative;
  animation: modalIn 0.3s cubic-bezier(.9,.43,.68,1.19);
}
@keyframes modalIn {
  from { transform: translateY(120px) scale(.95); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.15rem;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  align-items: center;
}
.cookie-category label {
  font-size: 1.01rem;
  color: var(--accent);
  font-weight: bold;
}
/* Toggle Switch for modal */
.cookie-switch {
  position: relative;
  width: 42px; height: 24px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-slider {
  position: absolute; cursor: pointer;
  background: #efdbc4;
  border-radius: 15px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.16s;
}
.cookie-switch input:checked + .cookie-slider { background: var(--accent); }
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 3px; top: 2px;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s cubic-bezier(.54,.-0.36,.43,1.37);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(17px);
  background: #ffd791;
}
.cookie-modal .cookie-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 21px;
}
.cookie-modal-close {
  position: absolute;
  right: 9px;
  top: 8px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.16s;
  padding: 2px 8px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--primary);
}

@media (max-width: 650px) {
  .cookie-consent-banner {
    padding: 19px 8px 20px 7vw;
    font-size: 0.99rem;
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .cookie-consent-banner .cookie-buttons {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
    gap: 13px;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 19px 8vw 19px 8vw;
  }
}

/* ===============================
   MISC: Accessibility, Remove Focus Outlines for Mouse Users
=============================== */
:focus:not(:focus-visible) {
  outline: none;
}

/* ===============================
   PRINT STYLES
=============================== */
@media print {
  *, *:before, *:after { color: #111!important; background: none!important; box-shadow: none!important; text-shadow: none!important; }
  body { background: #fff!important; }
  header, footer, .cookie-consent-banner, .mobile-menu { display: none!important; }
}

/* END OF NOBLE KOCHKUNST VINTAGE RETRO CSS */
