/* --- CSS RESET & NORMALIZATION --- */
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;
}
/* Remove default list styles on ul, ol elements */
ul, ol {
  list-style: none;
}
a {  
  color: inherit;
  text-decoration: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
/* Set box-sizing globally */
*, *:before, *:after {
  box-sizing: inherit;
}

/* --- ROOT VARIABLES FOR BRAND/NATURE/ORGANIC STYLE --- */
:root {
  --color-primary: #2B4D1F;   /* Waldgrün */
  --color-secondary: #F1E9DB; /* Sand/helles Beige */
  --color-accent: #B25324;    /* Erdiges Terracotta */
  --color-highlight: #DF8148; /* Orange Akzent from logo */
  --color-bg: #fffdf8;        /* Sehr helles, warmes weiß */
  --color-card: #F9F6F0;      /* Card background */
  --color-border: #E3D5BE;    /* Helles sandiges Grau */
  --color-shadow: 0 4px 20px 0 rgba(43, 77, 31, 0.07);
  --color-focus: #DF8148;

  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}

/* --- TYPOGRAPHY SCALE --- */
h1, .hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
  letter-spacing: -1.5px;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-primary);
}
h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-primary);
}
h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-accent);
}
p, li, label {
  font-size: 1rem;
  color: var(--color-primary);
}
.subheadline {
  font-size: 1.125rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.legal h1, .legal h2, .legal h3, .legal h4 {
  color: var(--color-primary);
}

/* --- LAYOUT UTILITIES & SPACING --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(43,77,31,0.14);
}
.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: var(--color-secondary);
  border-radius: 16px;
  box-shadow: var(--color-shadow);
  padding: 20px;
  color: #262F22;
  margin-bottom: 20px;
  flex: 1 1 340px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FLEXBOX-GENERATED GRIDS (NO GRID/COLUMNS) --- */
.feature-grid, .blog-list, .values-list, .seasonal-recipe-highlights,
.season-tip-cards, .blog-preview-grid, .recipe-tile-grid, .tipps-list,
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid > div, .seasonal-recipe-highlights > div, .season-tip-cards > div, .values-list > div, .blog-preview-grid > article, .recipe-tile, .blog-list > article {
  flex: 1 1 290px;
  min-width: 260px;
  background: var(--color-card);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--color-shadow);
  transition: box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-grid > div:hover, .blog-preview-grid > article:hover, .recipe-tile:hover, .values-list > div:hover {
  box-shadow: 0 8px 32px 0 rgba(43,77,31,0.18);
}

.team-profiles > li {
  background: var(--color-card);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 6px;
  box-shadow: 0 2px 7px 0 rgba(43,77,31,0.06);
}

.tipps-list > li {
  background: var(--color-card);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 8px;
  box-shadow: 0 2px 7px 0 rgba(43,77,31,0.05);
}

/* --- HEADER/NAVIGATION --- */
header {
  background: var(--color-secondary);
  box-shadow: 0 3px 10px 0 rgba(43,77,31,0.04);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 18px 20px;
}
header img {
  height: 38px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
  font-weight: 500;
  position: relative;
}
.main-nav a.cta {
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 999px;
  margin-left: 10px;
}
.main-nav a:not(.cta):hover,
.main-nav a:not(.cta):focus {
  background: var(--color-primary);
  color: #fff;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: var(--color-highlight);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.1s;
  margin-left: 12px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-highlight);
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(236, 233, 221, 0.97);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.85,0,0.15,1.1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
}
.mobile-menu-close {
  background: var(--color-accent);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  border: none;
  width: 46px;
  height: 46px;
  margin: 28px 30px 18px 0;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-highlight);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  padding: 0 40px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: var(--font-display);
  color: var(--color-primary);
  padding: 14px 0;
  border-radius: 9px;
  width: 100%;
  font-weight: 500;
  transition: background 0.12s, color 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* --- HERO SECTIONS --- */
.hero {
  background: url('../assets/bg-hero-organic.svg'), linear-gradient(135deg, #f9f6f0 55%, #e3d5be 100%);
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom-left-radius: 48px 36px;
  border-bottom-right-radius: 60px 38px;
  box-shadow: 0 12px 36px 0 rgba(43,77,31, 0.06);
  padding-top: 40px;
  padding-bottom: 56px;
}
.hero .container {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  gap: 16px;
  text-align: center;
}
.hero input[type=search] {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  font-size: 1rem;
  width: 100%;
  max-width: 360px;
  margin-top: 14px;
  background: #fff;
  box-shadow: 0 2px 6px 0 rgba(43,77,31,0.07);
}
.hero input[type=search]:focus {
  border-color: var(--color-accent);
}

/* --- CTA BUTTONS --- */
.cta {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 10px 32px;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 1px 6px 0 rgba(43,77,31,0.07);
  letter-spacing: 0.01em;
  transition: background 0.12s, color 0.12s, transform 0.13s;
}
.cta:hover, .cta:focus {
  background: var(--color-highlight);
  transform: translateY(-2px) scale(1.025);
  color: #fff;
}

/* --- FILTER AND FORM ELEMENTS --- */
.category-filter {
  margin-bottom: 40px;
  background: var(--color-secondary);
  border-radius: 38px 38px 12px 12px / 32px 32px 10px 10px;
  padding: 32px 20px 24px 20px;
  box-shadow: 0 4px 14px 0 rgba(43,77,31,0.03);
}
.category-filter .categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 28px 0;
}
.category-filter .categories-list li span {
  background: var(--color-primary);
  color: #fff;
  padding: 8px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.category-filter .categories-list li span:hover, 
.category-filter .categories-list li span:focus {
  background: var(--color-accent);
  color: #fff;
  cursor: pointer;
}
.category-filter .filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.category-filter label {
  font-weight: 500;
  color: var(--color-primary);
}
.category-filter input[type=text],
.category-filter select {
  padding: 9px 13px;
  border-radius: 9px;
  border: 1px solid var(--color-border);
  font-size: 1rem;
  margin-right: 8px;
  background: #fff;
  min-width: 150px;
}
.category-filter input[type=text]:focus,
.category-filter select:focus {
  outline: 2px solid var(--color-accent);
  border-color: var(--color-accent);
}

/* --- PAGINATION --- */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}
.pagination span,
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: var(--color-card);
  color: var(--color-primary);
  border-radius: 50%;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  box-shadow: 0 2px 7px 0 rgba(43,77,31,0.05);
  transition: background 0.13s, color 0.13s;
}
.pagination span {
  background: var(--color-primary);
  color: #fff;
}
.pagination a:hover, .pagination a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* --- FAQ ACCORDION AND LISTS --- */
.faq-accordion > div {
  background: var(--color-card);
  border-radius: 13px;
  padding: 16px 18px;
  margin-bottom: 11px;
  box-shadow: 0 1px 6px 0 rgba(43,77,31,0.05);
}
.faq-accordion h4 {
  color: var(--color-accent);
  margin-bottom: 2px;
  font-weight: 600;
}

/* --- BLOG CATEGORIES --- */
.blog-categories {
  margin: 28px 0 0 0;
  font-family: var(--font-display);
}
.blog-categories h4 {
  margin-bottom: 6px;
  color: var(--color-primary);
}
.blog-categories span {
  padding: 7px 16px;
  background: var(--color-bg);
  border-radius: 7px;
  margin-right: 8px;
  color: var(--color-accent);
  font-size: 1rem;
  font-weight: 500;
}

/* --- FOOTER --- */
footer {
  background: var(--color-secondary);
  margin-top: 60px;
  padding: 38px 0 18px 0;
  border-top-left-radius: 58px 34px;
  border-top-right-radius: 68px 42px;
  box-shadow: 0 -8px 32px 0 rgba(43,77,31,0.06);
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  color: var(--color-primary);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-brand img {
  max-width: 56px;
  margin-bottom: 10px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-display);
  min-width: 165px;
}
.footer-menu a {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-primary);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 80px;
}
.footer-social a {
  display: inline-flex;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  box-shadow: 0 1px 8px 0 rgba(43,77,31,0.07);
  transition: background 0.13s;
}
.footer-social a:hover, .footer-social a:focus {
  background: var(--color-accent);
}
.footer-social img {
  width: 22px;
  height: 22px;
}

/* --- TESTIMONIAL CARDS --- */
.testimonials {
  background: var(--color-bg);
  border-radius: 28px;
  box-shadow: 0 3px 14px 0 rgba(43,77,31,0.055);
  padding: 40px 20px;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: #262F22;
  margin-bottom: 6px;
  line-height: 1.5;
}
.testimonial-card cite {
  font-style: normal;
  color: var(--color-accent);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* --- ORGANIC, NATURE-INSPIRED DECORATION (OPTIONAL SHAPES) --- */
section, .card, .testimonial-card, .cta, .category-filter, .seasonal-recipe-highlights > div {
  border-radius: 28px 16px 22px 38px / 22px 24px 32px 28px;
}

/* Organic shape for large sections, used on hero, featured, etc. */
.hero, .about-short, .seasonal-features, .thank-you {
  border-radius: 48px 44px 38px 52px / 34px 44px 42px 48px;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 11000;
  background: var(--color-card);
  color: var(--color-primary);
  box-shadow: 0 -4px 24px 0 rgba(43,77,31,0.09);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 26px 26px 23px 26px;
  font-size: 1rem;
  font-family: var(--font-body);
  animation: slideUpCookie 0.36s cubic-bezier(.5,1.25,.6,1);
}
@keyframes slideUpCookie {
  0% { transform: translateY(100%); opacity: 0; }
  60% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 20px;
}
.cookie-btn {
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 30px;
  cursor: pointer;
  transition: background 0.13s, transform 0.13s;
  box-shadow: 0 2px 7px 0 rgba(43,77,31,0.07);
}
.cookie-btn.accept {
  background: var(--color-accent);
}
.cookie-btn.settings {
  background: var(--color-primary);
}
.cookie-btn.reject {
  background: #BC7154;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-highlight);
  color: #fff;
  transform: scale(1.04);
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 56%;
  transform: translate(-50%,-50%) scale(0.98);
  background: var(--color-card);
  color: var(--color-primary);
  z-index: 12000;
  padding: 38px 26px 28px 26px;
  border-radius: 32px;
  box-shadow: 0 2px 30px 6px rgba(43, 77, 31, 0.13);
  max-width: 400px;
  width: 98%;
  font-family: var(--font-body);
  animation: fadeInModal 0.25s cubic-bezier(.5,1.15,.7,1.09);
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: translate(-50%, -70%) scale(0.94); }
  65% { opacity: 1; }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 13px;
  color: var(--color-accent);
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.45rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .14s;
}
.cookie-modal-close:hover {
  background: var(--color-primary);
}
.cookie-toggle {
  width: 38px;
  height: 21px;
  border-radius: 999px;
  background: #D0D7CC;
  display: inline-block;
  position: relative;
  transition: background 0.15s;
}
.cookie-toggle[data-checked="true"] { background: var(--color-accent); }
.cookie-toggle-switch {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 2px 0 #bbb;
  transition: left 0.15s;
}
.cookie-toggle[data-checked="true"] .cookie-toggle-switch{ left: 19px; }
.cookie-category[aria-disabled=true] .cookie-toggle {
  opacity: 0.7;
  background: #C5CAAC;
  pointer-events: none;
}
.cookie-category[aria-disabled=true] label {
  opacity: 0.65;
}

/* --- SEASON SWITCHER --- */
.season-switcher {
  display: flex;
  gap: 8px;
  margin: 10px 0 0 0;
  justify-content: center;
}
.season-switcher a {
  color: var(--color-accent);
  font-weight: 600;
  font-family: var(--font-display);
  transition: color 0.13s;
  padding: 4px 8px;
  border-radius: 7px;
}
.season-switcher a:hover, .season-switcher a:focus {
  color: var(--color-primary);
  background: var(--color-card);
}

/* --- THANK YOU SECTION --- */
.thank-you-message {
  margin-bottom: 22px;
  font-size: 1.13rem;
  color: var(--color-primary);
}

/* --- CONTACT DATA/MAP --- */
.contact-data .content-wrapper {
  gap: 36px;
  flex-direction: row;
  align-items: flex-start;
}
.contact-data .text-section {
  flex: 2 1 260px;
  background: var(--color-card);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(43,77,31,0.07);
  padding: 22px 26px;
}
.contact-data .map {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  background: var(--color-border);
  border-radius: 16px;
  padding: 18px;
}
.contact-data .map img {
  width: 92px;
  height: auto;
}

/* --- LEGAL TEXT SECTIONS --- */
.legal .text-section {
  background: var(--color-card);
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(43,77,31,0.07);
  padding: 30px 32px;
  margin: 14px 0 0 0;
  font-size: 1.065rem;
  line-height: 1.7;
}
.legal .text-section h2 {
  margin-top: 28px;
  font-size: 1.1rem;
  color: var(--color-accent);
}

/* --- ORGANIC BUTTON/INPUT STYLE --- */
input, select, textarea {
  border-radius: 12px;
  outline: none;
  border: 1px solid var(--color-border);
  padding: 10px 16px;
  font-size: 1rem;
  background: #fff;
  transition: border 0.12s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-accent);
  outline: 2px solid var(--color-accent);
}

/* --- ANIMATION CLASSES --- */
.fade-in {
  animation: fadeInEl 0.6s;
}
@keyframes fadeInEl {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE DESIGN / MOBILE FIRST ADJUSTMENTS --- */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .footer-menu { min-width: 120px; }
  .footer-brand { max-width: 220px; }
}
@media (max-width: 900px) {
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 28px;
  }
  .feature-grid, .blog-list, .values-list, .seasonal-recipe-highlights, .season-tip-cards, .blog-preview-grid, .recipe-tile-grid, .tipps-list, .team-profiles {
    flex-wrap: wrap;
    gap: 20px;
  }
  .feature-grid > div, .seasonal-recipe-highlights > div, .season-tip-cards > div, .values-list > div, .blog-preview-grid > article, .recipe-tile, .blog-list > article {
    flex: 1 1 220px;
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; gap: 0; }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    border-radius: 28px 24px 18px 36px / 22px 22px 28px 18px;
    padding-top: 18px;
    padding-bottom: 28px;
  }
  .hero .container { min-height: unset; }
  .feature-grid, .values-list, .seasonal-recipe-highlights, .season-tip-cards, .blog-preview-grid, .recipe-tile-grid {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 18px;
  }
  .feature-grid > div, .seasonal-recipe-highlights > div, .season-tip-cards > div, .values-list > div, .blog-preview-grid > article, .recipe-tile, .blog-list > article {
    min-width: 95%;
    flex-basis: 95%;
    padding: 18px 16px;
  }
  .about .content-wrapper > div, .contact-data .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .contact-data .map {
    min-width: unset; 
    padding: 10px;
    justify-content: flex-start;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 500px) {
  .container { padding: 0 8px; }
  .section, .about-short, .seasonal-features, .thank-you, .testimonials { padding: 18px 6px; }
  .contact-data .text-section, .legal .text-section { padding: 12px 7px; }
  .cookie-banner { padding: 15px 7px 18px 7px; flex-direction: column; gap: 18px; }
  .cookie-modal { padding: 16px 5px 18px 7px; }
}

/* --- UTILITIES --- */
.hide { display: none !important; }

/* --- ACCESSIBILITY --- */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
}
::-webkit-input-placeholder { color: #89816D; opacity: 1;}
::-moz-placeholder { color: #89816D; opacity: 1;}
:-ms-input-placeholder { color: #89816D; opacity: 1;}
::placeholder { color: #89816D; opacity: 1;}

/* --- END OF STYLE.CSS --- */
