/* =============================================================
   CSS RESET & NORMALIZATION (Mobile-first, wide support)
   ============================================================= */
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;
}
body {
  background: #FAF9F6;
  color: #3C3C3C;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}
button { cursor: pointer; }

/* ======================
   BRAND COLORS & VARS
   ====================== */
:root {
  --primary: #31572C;
  --primary-darker: #223d1e;
  --surface: #FFFFFF;
  --accent: #FFC857;
  --accent-dark: #E6B244;
  --earth-brown: #A58A6A;
  --earth-green: #487A4F;
  --nature-bg: #F2F1EB;
  --border: #D8D5C3;
  --shadow: rgba(49, 87, 44, 0.06);
  --danger: #B55439;
  --success: #5B8927;
}

/* =============================
   TYPOGRAPHY: NATURE-ORGANIC
   (Heading: Montserrat, Body: Open Sans)
   ============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  line-height: 1.14;
}
h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 24px; }
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 20px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.125rem; font-weight: 500; }
p, ul, ol, li {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #3C3C3C;
  line-height: 1.7;
  margin-bottom: 1.5em;
}
.subheadline {
  color: var(--earth-green);
  font-size: 1.125rem;
  margin-bottom: 24px;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}

/* Links */
a, .category-tags a {
  color: var(--earth-green);
  text-decoration: none;
  font-weight: 500;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
a:hover, .category-tags a:hover {
  color: var(--surface);
  background: var(--accent);
  text-decoration: none;
  padding: 2px 6px;
}

/* ========================
   LAYOUT STRUCTURES
   ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding-top: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--nature-bg);
  border-radius: 36px;
  box-shadow: 0 3px 32px var(--shadow);
}
.section:last-child {
  margin-bottom: 0;
}

/* Flex containers for reusable patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--surface);
  border-radius: 24px;
  box-shadow: 0 2px 20px var(--shadow);
  padding: 24px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(49,87,44,0.10);
  transform: translateY(-2px) scale(1.01);
}
.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;
  background: var(--surface);
  margin-bottom: 20px;
  border-left: 6px solid var(--accent);
  border-radius: 20px;
  box-shadow: 0 1px 12px var(--shadow);
  font-size: 1.1rem;
  color: #26311B;
  flex-direction: column;
}
.testimonial-card span {
  color: var(--primary);
  font-size: 0.97rem;
  font-weight: 600;
  margin-top: 10px;
  align-self: flex-end;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 1px 12px var(--shadow);
  padding: 18px 18px 18px 18px;
  flex: 1 1 230px;
  min-width: 220px;
}

/**** Specific Structural Layouts ****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.category-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.category-overview ul li {
  font-family: inherit;
  font-size: 1.02rem;
}
.category-tags {
  margin: 16px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.category-tags a {
  margin-right: 8px;
  font-size: 1rem;
}
.recipe-listings,
.quick-recipe-list,
.classic-recipe-list,
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.recipe-item, .article-list article {
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 1px 12px var(--shadow);
  padding: 18px;
  flex: 1 1 260px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow .2s, transform .2s;
}
.recipe-item:hover, .article-list article:hover {
  box-shadow: 0 6px 24px rgba(49,87,44,0.12);
  transform: translateY(-2px) scale(1.01);
}

/**** Helper layouts ****/
.short-tips ul, .regional-specialties ul, .cooking-advice ul, .time-saving-tips ul, .kitchen-hacks ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 12px;
}
.regional-specialties, .history-notes, .ingredient-guides, .time-saving-tips, .kitchen-hacks, .cooking-advice {
  margin-bottom: 24px;
  background: var(--nature-bg);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 1px 8px var(--shadow);
}
.address-section {
  margin-bottom: 28px;
  background: var(--surface);
  box-shadow: 0 1px 8px var(--shadow);
  border-radius: 14px;
  padding: 16px 18px;
}

/**** Newsletter + CTA Section ****/
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

/**** Cookie Consent Banner ****/
.cookie-banner {
  position: fixed;
  z-index: 2942;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nature-bg);
  box-shadow: 0 -2px 24px var(--shadow);
  border-radius: 28px 28px 0 0;
  padding: 22px 18px;
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.cookie-banner .cookie-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.cookie-banner button {
  padding: 9px 24px;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: none;
  transition: background 0.18s, box-shadow 0.19s, color 0.17s;
  margin: 0 2px;
}
.cookie-banner .accept {
  background: var(--success);
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #39642b;
}
.cookie-banner .reject {
  background: var(--danger);
  color: #fff;
}
.cookie-banner .reject:hover {
  background: #913b25;
}
.cookie-banner .settings {
  background: var(--surface);
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.cookie-banner .settings:hover {
  background: var(--primary);
  color: #fff;
}

/**** Cookie Modal ****/
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4001;
  background: rgba(60, 50, 35, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: var(--surface);
  padding: 36px 28px 28px 28px;
  border-radius: 24px;
  width: 95%;
  max-width: 410px;
  box-shadow: 0 5px 36px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
}
.cookie-modal-content .close-modal {
  position: absolute;
  top: 13px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 1.3em;
  color: var(--primary);
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0px;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category label {
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.cookie-switch {
  width: 40px;
  height: 22px;
  background: var(--border);
  border-radius: 11px;
  display: flex;
  align-items: center;
  transition: background 0.2s;
  position: relative;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-switch .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  transition: left 0.2s, background 0.18s;
}
.cookie-switch input:checked ~ .slider {
  left: 21px;
  background: var(--success);
}
.cookie-modal-content .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 22px;
}
.cookie-modal-content button {
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  background: var(--accent);
  color: var(--primary);
  border: none;
  transition: background 0.18s, color 0.11s;
}
.cookie-modal-content button:hover { background: var(--accent-dark); }

/* =========================
   HEADER & NAV
   ========================= */
header {
  background: var(--surface);
  box-shadow: 0 2px 28px var(--shadow);
  width: 100%;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img {
  height: 38px;
  width: auto;
  border-radius: 10px;
}
nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
nav a {
  padding: 7px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: var(--primary);
  transition: background 0.17s, color 0.14s;
}
nav a:hover, nav a.active {
  background: var(--accent);
  color: var(--primary);
}
.cta.primary {
  background: var(--primary);
  color: #fff !important;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--shadow);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 11px 26px;
  margin-left: 12px;
  transition: background 0.14s, box-shadow .15s, color 0.13s;
  border: none;
  outline: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--primary-darker);
  color: #FFD;
  box-shadow: 0 6px 18px rgba(49,87,44,0.13);
}
.cta.secondary {
  background: var(--accent);
  color: var(--primary);
  border-radius: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 22px;
  box-shadow: 0 1px 10px var(--shadow);
  border: none;
  outline: none;
  margin-top: 12px;
  transition: background 0.14s, color 0.13s, box-shadow 0.15s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--accent-dark);
  color: var(--primary);
}

/**** Hamburger & Mobile Menu ****/
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 13px;
  font-size: 2em;
  cursor: pointer;
  margin-left: 16px;
  z-index: 1101;
  transition: background 0.17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--accent-dark);
}
.mobile-menu {
  position: fixed;
  z-index: 3999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--nature-bg);
  box-shadow: 0 2px 32px var(--shadow);
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.74,.23,.18,.97);
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--surface);
  color: var(--primary);
  font-size: 2.1em;
  border-radius: 50%;
  border: 1.5px solid var(--earth-brown);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 28px;
  top: 18px;
  z-index: 501;
  transition: background 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--accent);
  color: var(--primary-darker);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 94px;
  padding: 38px 32px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.24rem;
  color: var(--primary);
  font-weight: 500;
  padding: 12px 8px;
  border-radius: 8px;
  min-width: 120px;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: #183818;
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 960px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 961px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================
   MAIN & SECTION SPACING
   ===================== */
main {
  width: 100%;
  margin-bottom: 0;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 0;
  background: none;
  box-shadow: none;
}
section > .container {
  padding-top: 0;
  padding-bottom: 0;
}
section > .container > .content-wrapper {
  padding: 0;
}

/**** Inputs and Search ****/
input[type="search"] {
  width: 100%;
  max-width: 370px;
  padding: 12px 19px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 1.08rem;
  color: #222c20;
  margin: 19px 0 20px 0;
  outline: none;
  transition: border 0.2s, box-shadow 0.25s;
  box-shadow: 0 1px 9px var(--shadow);
}
input[type="search"]:focus {
  border-color: var(--accent);
  box-shadow: 0 2px 16px rgba(49,87,44,0.10);
}

/**** Tables (Text Sections, rare on this site) ****/
table {
  border-collapse: collapse;
  width: 100%;
  background: var(--nature-bg);
  margin-bottom: 32px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 8px var(--shadow);
}
thead {
  background: var(--earth-green);
  color: #fff;
  font-weight: bold;
}
th, td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
tr:last-child td {
  border-bottom: none;
}


/* ======================
   FOOTER
   ===================== */
footer {
  background: var(--nature-bg);
  width: 100%;
  margin-top: 58px;
  padding-top: 34px;
  padding-bottom: 42px;
  border-radius: 36px 36px 0 0;
  color: var(--primary);
  box-shadow: 0 -1px 18px var(--shadow);
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer .content-wrapper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-menu a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  padding: 7px 11px;
  transition: background 0.13s, color 0.13s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--accent);
  background: #fff7e1;
}
.brand-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
}
.brand-info img {
  height: 32px;
  border-radius: 8px;
}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #49723D;
  font-size: 0.97rem;
}
footer .contact-info img {
  height: 17px;
  width: auto;
  vertical-align: -3px;
  margin-right: 7px;
  mix-blend-mode: multiply;
}

/* ==============================
   ORGANIC EARTHY/NATURAL EFFECTS
   ============================== */
.section, .feature-item, .card, .testimonial-card, .recipe-item, .article-list article {
  border-radius: 32px 40px 28px 32px/36px 36px 38px 32px;
  /* organic visual rounding */
}
.feature-grid, .category-overview ul {
  /* creates visual flow and mimics free-form organization */
}
/* Emulate natural textures via soft shadows, color blocks, organic radii: done above */

/**** Subtle hover for cards ****/
.card, .feature-item, .recipe-item, .article-list article {
  transition: box-shadow .18s, transform .12s;
}
.card:hover, .feature-item:hover, .recipe-item:hover, .article-list article:hover {
  box-shadow: 0 5px 24px rgba(49,87,44,0.11);
  transform: scale(1.015);
}

/**** Green accent divider ****/
hr {
  width: 60px;
  border: none;
  border-top: 4px solid var(--primary);
  border-radius: 2px;
  margin: 24px 0 30px 0;
}

/* ======================
   ANIMATION FOR UI MICRO-INTERACTIONS
   ====================== */
.cta.primary, .cta.secondary, .footer-menu a, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.17s, box-shadow 0.17s, color 0.15s, transform .09s;
}
.cta.primary:active, .cta.secondary:active, .footer-menu a:active {
  transform: scale(0.96);
  box-shadow: 0 0px 8px #e9dda9;
}
.recipe-item, .feature-item {
  transition: box-shadow .18s, transform .13s;
}

/* ====================== 
   RESPONSIVE DESIGN: MOBILE-FIRST
   ====================== */
@media (max-width: 1040px) {
  .container, .content-wrapper {
    max-width: 97vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-wrapper {
    max-width: 98vw;
  }
}
@media (max-width: 850px) {
  .content-wrapper {
    padding: 0 4px;
  }
  .section {
    padding: 32px 8px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 22px 8px;
    border-radius: 20px;
  }
  .card-container, .feature-grid, .content-grid, .quick-recipe-list, .classic-recipe-list, .article-list {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-card {
    padding: 15px;
    border-radius: 15px;
    font-size: 1rem;
  }
  h1 { font-size: 2rem; margin-bottom: 16px; }
  h2 { font-size: 1.34rem; margin-bottom: 15px; }
  h3 { font-size: 1.07rem; }
  .footer-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .brand-info {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .card, .recipe-item, .article-list article {
    padding: 15px;
    min-width: 130px;
    border-radius: 13px 17px 14px 14px/17px 15px 16px 14px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.19rem; }
  h2 { font-size: 1.03rem; }
  .card, .feature-item, .recipe-item, .article-list article {
    border-radius: 10px 12px 10px 10px/12px 11px 12px 10px;
    padding: 12px;
    min-width: 90px;
  }
  .footer-menu {
    padding-bottom: 6px;
  }
  .brand-info img {
    height: 22px;
  }
}

/* ==========================
   Miscellaneous/Utility
   ========================== */
.text-section {
  margin: 22px 0;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: 0 1px 10px var(--shadow);
  padding: 24px 22px;
}

/**** Visual Dividers ****/
.text-section hr {
  margin: 16px 0;
}

/**** Organic Touch: Decorative Leaves & Elements (optional SVG abs positions) ****/
.organic-leaf {
  position: absolute;
  z-index: 1;
  opacity: 0.13;
  pointer-events: none;
}

/**** Visual Separation for List Blocks ****/ 
ul li, ol li {
  margin-bottom: 7px;
  padding-left: 0;
}

/* ==========================
   ICON ALIGNMENT/GAPS
   ========================== */
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}

/**** Prevent Card/Text Overlapping ****/
.card, .feature-item, .card-container > *, .content-grid > *, .feature-grid > *, .category-overview ul > *, .article-list > *, .recipe-listings > *, .quick-recipe-list > *, .classic-recipe-list > * {
  margin-bottom: 20px;
}

/**** Also, ensure adequate spacing for all groups ****/ 
.card-container, .feature-grid, .content-grid, .category-overview ul, .article-list, .quick-recipe-list, .classic-recipe-list, .recipe-listings {
  gap: 20px;
}

/**** Hide focus outlines, but show on tab-focus accessibility ****/
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px dashed var(--accent);
  outline-offset: 1px;
}

/**** Animations for opening/closing ****/
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
@keyframes slideInBottom {
  from { transform: translateY(65px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.mobile-menu.open {
  animation: slideInLeft .32s cubic-bezier(.74,.23,.18,.97);
}
.cookie-banner {
  animation: slideInBottom 0.5s;
}

/****** Z-INDEX STRATEGY *******/
header { z-index: 2952; position: relative; }
.mobile-menu { z-index: 3999; }
.mobile-menu-toggle { z-index: 4000; }
.cookie-banner { z-index: 2942; }
.cookie-modal { z-index: 4001; }

/*
  END - ALL STYLES ARE FLEXBOX-BASED, MOBILE-FIRST, AND ALL LAYOUT STRUCTURES AVOID CSS-GRID AND CSS-COLUMN PROPERTIES.
  THE DESIGN IS CONSISTENT WITH THE "NATURE_ORGANIC" MODERN EARTHY LOOK.
*/