/* ===================================================================
   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 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background: #F7F4E9;
}
body {
  color: #23401F;
  background: #F7F4E9;
  font-family: 'Roboto', Arial, sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #3A5C35;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #A15B10;
  outline: none;
}
ul, ol {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
}
/* Hide scrollbars on mobile-menu overlay */
.mobile-menu {
  -webkit-overflow-scrolling: touch;
}

/* ===================================================================
   BRAND COLORS (CSS VARIABLES FOR EXTENSION)
   =================================================================== */
:root {
  --color-primary: #3A5C35;
  --color-secondary: #F7F4E9;
  --color-accent: #A1783C;
  --color-accent2: #A15B10;
  --color-bg: #F7F4E9;
  --color-bg-card: #FFFFFF;
  --color-text-dark: #23401F;
  --color-text-light: #f9f8f5;
  --color-border: #D4CBBE;
  --color-shadow: rgba(60,85,68,0.10);
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.12;
  margin-bottom: 0.6em;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 0.75em;
}
h2 {
  font-size: 1.6rem;
}
h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
h4 {
  font-size: 1.07rem;
  font-weight: 600;
}
h5,h6 {
  font-size: 1rem;
}
p, li, label {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-text-dark);
  font-size: 1rem;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}

/* ===================================================================
   LAYOUT CONTAINERS & SPACING
   =================================================================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-card);
  border-radius: 18px;
  box-shadow: 0 4px 22px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  transition: box-shadow 0.3s, transform 0.2s;
  border: 1px solid var(--color-border);
}
.card:hover, .card:focus {
  box-shadow: 0 8px 36px rgba(60,85,68,0.16);
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  margin-bottom: 20px;
  background: #F3EFE5;
  box-shadow: 0 2px 10px var(--color-shadow);
  border: 1px solid #e0dccb;
  color: #23401F;
}
.testimonial-card p {
  color: #23401F;
  font-weight: 500;
  font-size: 1.05rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: var(--color-accent2);
  font-family: 'Montserrat', Arial, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ============ FLEX GRIDS ============= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature {
  background: #fff;
  border-radius: 16px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 4px 16px var(--color-shadow);
  border: 1px solid #e5e0d1;
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature img {
  width: 48px;
  height: 48px;
  filter: hue-rotate(-22deg) saturate(0.8);
  opacity: 0.94;
  margin-bottom: 10px;
}
.feature:hover {
  box-shadow: 0 8px 28px rgba(60,85,68,0.14);
  transform: translateY(-2px) scale(1.01);
}

.category-overview, .category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.category-link, .category-item {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 12px 26px;
  border-radius: 25px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  border: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-bottom: 8px;
}
.category-link:hover, .category-link:focus,
.category-item:hover, .category-item:focus {
  background: var(--color-accent2);
  color: #fff;
  box-shadow: 0 6px 18px rgba(161,91,16,0.17);
  outline: none;
}

.usp-bullets, .dish-list, .recipe-highlights ul, .toolbox-overview ul, .quick-tip-cards ul, .filter-options ul, .faq-list ul, .values-list ul {
  list-style: disc inside;
  background: none;
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--color-text-dark);
  padding-left: 1em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-box, .story-box, .mission-statement, .tips-box, .quick-tip-cards {
  background: #e3e6d7;
  border-left: 6px solid var(--color-primary);
  border-radius: 8px 26px 18px 8px/10px 32px 8px 26px;
  padding: 18px 20px;
  font-size: 1rem;
  margin: 20px 0 10px 0;
  box-shadow: 0 2px 6px rgba(58, 92, 53, 0.06);
}
.tips-box h3 {
  margin-bottom: 10px;
  color: var(--color-accent2);
}

.advice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.quick-tip-card {
  flex: 1 1 200px;
  max-width: 340px;
  background: #fffbea;
  border-radius: 16px;
  box-shadow: 0 2.5px 10px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 14px;
  transition: transform 0.17s, box-shadow 0.20s;
  border: 1px solid #e6dfc7;
}
.quick-tip-card img {
  width: 38px;
}
.quick-tip-card:hover {
  box-shadow: 0 5px 20px rgba(161,91,16,0.07);
  transform: scale(1.02);
}

.address-block, .contact-details {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #eef3eb;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}
.address-block img, .contact-details img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  opacity: 0.8;
}
.contact-details a {
  color: var(--color-primary);
}
.contact-details a:hover {
  color: var(--color-accent);
}
.support-options p {
  background: #e3e6d7;
  padding: 12px 18px;
  border-radius: 12px;
  color: var(--color-primary);
  font-size: 1rem;
}

/*******************
 NAVIGATION & HEADER
********************/
header {
  background: #fff;
  box-shadow: 0 4px 16px rgba(58,92,53,0.065);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
}
.logo-link img {
  height: 52px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.main-nav a {
  color: var(--color-primary);
  padding: 9px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 1.08rem;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent2);
  color: #fff;
  outline: none;
}
.mobile-menu-toggle {
  font-size: 2.2rem;
  color: var(--color-primary);
  background: none;
  border: none;
  margin-left: 24px;
  display: none;
  z-index: 21;
}

/*****************
 HERO SECTIONS
******************/
.hero, .hero.thank-you {
  background: linear-gradient(108deg, #f7f4e9 0%, #e4e9df 100%);
  border-radius: 0 0 42px 42px/0 0 36px 36px;
  padding: 56px 0 36px 0;
}
.hero .container,
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p,
.hero .cta {
  font-size: 1.1rem;
}
.hero .cta {
  display: inline-block;
  padding: 13px 34px;
  font-size: 1.1rem;
  border-radius: 30px;
  background: var(--color-primary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.19s, color 0.18s, box-shadow 0.19s;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.hero .cta.primary {
  background: var(--color-accent2);
  color: #fff;
}
.hero .cta:hover, .hero .cta:focus {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 5px 18px rgba(161,123,60,0.11);
}

/*****************
 BUTTONS
******************/
.cta, .category-link, .category-item, .mobile-nav a {
  cursor: pointer;
  text-align: center;
  border: none;
  text-decoration: none;
}
.quick-links .cta {
  margin-top: 12px;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  transition: background 0.18s, color 0.15s, box-shadow 0.19s;
  box-shadow: 0 2px 6px var(--color-shadow);
}
.quick-links .cta:hover, .quick-links .cta:focus {
  background: var(--color-accent2);
  color: #fff;
}

/*****************
 FOOTER
******************/
footer {
  background: #e4e9df;
  border-top: 3px solid var(--color-primary);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px 20px;
  padding: 30px 20px 16px 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: start;
  align-items: flex-start;
  font-size: 1rem;
}
.footer-nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding-bottom: 2px;
  border-bottom: 1.5px dotted var(--color-primary);
  transition: color 0.2s, border-bottom 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent2);
  border-bottom: 1.5px solid var(--color-accent2);
}
.footer-brand img {
  width: 60px;
  opacity: 0.98;
}
.footer-social {
  display: flex;
  gap: 15px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  opacity: 0.82;
  transition: opacity 0.15s, filter 0.15s;
}
.footer-social a:hover img {
  opacity: 1;
}
.footer-contact {
  flex: 1 1 100%;
  margin-top: 15px;
  font-size: 0.98rem;
  color: #5A7D59;
}

/*****************
 MOBILE SLIDE-IN MENU
******************/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(247, 244, 233, 0.97);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.41,1.5,.64,1);
  box-shadow: -8px 0 32px rgba(58, 92, 53, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -9px 0 34px rgba(58,92,53,0.14);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: var(--color-primary);
  z-index: 201;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-accent2);
}
.mobile-nav {
  margin: 90px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  padding: 14px 32px;
  border-radius: 24px;
  margin: 0 0 8px 0;
  background: none;
  transition: background 0.2s, color 0.19s;
  width: 74vw;
  max-width: 350px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent2);
  color: #fff;
  outline: none;
}

/**************************
 COOKIE BANNER
***************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: #f7f4e9;
  color: #23401F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 20px 18px 22px;
  box-shadow: 0 -3px 18px rgba(58, 92, 53, 0.08);
  border-top: 1.5px solid #d1ccb8;
  font-size: 1.05rem;
  transition: transform 0.33s cubic-bezier(.41,1.32,.54,1);
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 21px;
  border: none;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: var(--color-primary);
  color: #fff;
  margin-left: 4px;
  transition: background 0.18s, color 0.14s, box-shadow 0.18s;
  box-shadow: 0 2px 7px var(--color-shadow);
}
.cookie-btn.reject {
  background: #a44b36;
}
.cookie-btn.settings {
  background: var(--color-accent2);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-accent);
  color: #fff;
}

/**************************
 COOKIE SETTINGS MODAL
***************************/
.cookie-modal-overlay {
  position: fixed;
  z-index: 130;
  top: 0; left: 0; right:0; bottom:0;
  background: rgba(34,64,31,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.23s;
  pointer-events: none;
  opacity: 0;
}
.cookie-modal-overlay.active {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  max-width: 420px;
  width: 93vw;
  padding: 36px 22px 28px 22px;
  box-shadow: 0 8px 40px rgba(58,92,53,0.12);
  color: #23401F;
  display: flex;
  flex-direction: column;
  gap: 26px;
  z-index: 132;
  animation: cookiePopIn 0.33s cubic-bezier(.41,1.32,.54,1);
}
@keyframes cookiePopIn {
  0% { transform: translateY(40%) scale(0.95); opacity: 0.7; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #efe9d3;
}
.cookie-modal .category-label {
  font-weight: 600;
  color: var(--color-primary);
  flex: 1;
}
.cookie-modal .category-always-on {
  color: #999;
  font-size: 0.98rem;
  margin-left: 9px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal .cookie-toggle {
  width: 34px;
  height: 20px;
  border-radius: 12px;
  background: #e4e9df;
  border: none;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: background .21s;
}
.cookie-modal .cookie-toggle.enabled {
  background: var(--color-primary);
}
.cookie-modal .cookie-toggle:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  height: 13px;
  width: 13px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-modal .cookie-toggle.enabled:before {
  left: 17px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 10px 16px;
}
.cookie-modal .cookie-btn.cancel {
  background: #e7e2ce;
  color: var(--color-primary);
  box-shadow: none;
}
.cookie-modal .cookie-btn.cancel:hover {
  background: #dbdbdb;
  color: var(--color-accent2);
}

/*************************************************
 MISCELLANEOUS COMPONENTS & PAGE-SPECIFICS
*************************************************/
.faq-list ul {
  margin-top: 3px;
}
.faq-list li {
  margin-bottom: 16px;
  line-height: 1.6;
}
.recipe-highlights h3,
.toolbox-overview h3,
.values-list h3{
  margin-bottom: 12px;
  color: var(--color-accent2);
}

.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.team-member {
  flex: 1 1 220px;
  background: #e9e6d4;
  border-radius: 13px;
  padding: 18px 12px;
  box-shadow: 0 2.5px 8px var(--color-shadow);
  font-size: 1rem;
  color: #23401F;
}
.values-list ul {
  margin-top: 2px;
}
.learning-links {
  display: flex;
  gap: 15px;
  margin-bottom: 16px;
}
.learning-links a {
  background: var(--color-accent2);
  color: #fff;
  padding: 11px 18px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  transition: background 0.17s, color 0.15s;
  margin-bottom: 8px;
}
.learning-links a:hover, .learning-links a:focus {
  background: var(--color-primary);
  color: #fff;
}
.toolbox-overview {
  margin-top: 10px;
}

/***********************
 PAGE: THANK YOU HERO
***********************/
.hero.thank-you h1 {
  color: var(--color-accent2);
}
.hero.thank-you .cta {
  background: var(--color-primary);
}
.hero.thank-you .cta:hover {
  background: var(--color-accent);
}

/*******************************
 RESPONSIVE — MOBILE FIRST
*******************************/
@media (max-width: 1024px) {
  .container {
    max-width: 93vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-nav, .footer-brand, .footer-social, .footer-contact, .footer-nav a {
    font-size: 0.99rem;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .advice-grid, .card-container, .content-grid, .team-bios {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
  }
  .feature, .quick-tip-card, .team-member {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 22px;
  }
  header .container {
    padding: 8px 8px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-brand img {
    width: 44px;
  }
  .section {
    margin-bottom: 34px;
    padding: 24px 6px;
  }
  .category-link, .category-item {
    font-size: 0.98rem;
    padding: 10px 15px;
  }
  .testimonial-card {
    padding: 17px 11px;
    margin-bottom: 17px;
  }
  .hero h1 {
    font-size: 1.38rem;
  }
  .team-bios {
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .footer-nav {
    gap: 9px;
    flex-wrap: wrap;
  }
  .footer-social {
    gap: 10px;
  }
  .hero, .hero.thank-you {
    border-radius: 0 0 20px 20px/0 0 18px 18px;
    padding-left: 0; padding-right: 0;
  }
  .footer-contact {
    font-size: 0.85rem;
    margin-top: 10px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 2px;
  }
}
/******************************
 FLEX DIRECTION & ALIGNMENT ON MOBILE
*******************************/
@media (max-width: 900px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}
/**********************
 ANIMATION UTILS
**********************/
.fade-in {
  opacity: 0;
  animation: fadeIn 0.48s cubic-bezier(.46,.77,.58,1) forwards;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.slide-up-in {
  transform: translateY(30px);
  opacity: 0;
  animation: slideUpIn 0.53s cubic-bezier(.41,1.02,.54,1) forwards;
}
@keyframes slideUpIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/*************************
 SCROLLBAR BRANDING
**************************/
body, .mobile-menu {
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) #e6dfc7;
}
body::-webkit-scrollbar,
.mobile-menu::-webkit-scrollbar {
  width: 9px;
  background: #e6dfc7;
}
body::-webkit-scrollbar-thumb,
.mobile-menu::-webkit-scrollbar-thumb {
  background: var(--color-accent2);
  border-radius: 7px;
}

/**********************
 ORGANIC DECOR SHAPES
***********************/
.feature, .testimonial-card, .highlight-box, .story-box, .about-section, .address-block, .contact-details, .quick-tip-card {
  border-radius: 28px 14px 23px 20px/20px 34px 28px 16px;
}

/*************************
 FORMS (if needed for contact.html)
**************************/
input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 11px 14px;
  margin-bottom: 14px;
  width: 100%;
  background: #fff;
  transition: border 0.18s;
  color: var(--color-text-dark);
  box-sizing: border-box;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--color-accent2);
  outline: none;
}
label {
  font-size: 1rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/*****************************
 COLOR CONTRAST UTILITIES
******************************/
.bg-primary {
  background: var(--color-primary);
  color: #fff;
}
.bg-accent {
  background: var(--color-accent2);
  color: #fff;
}
.bg-secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.bg-card {
  background: var(--color-bg-card);
}

/******************************************************
 ENSURE NO OVERLAPPING/WHITE SPACE and PROPER Z-INDEX
******************************************************/
.section, .card, .testimonial-card, .feature, .quick-tip-card, .highlight-box, .story-box, .mission-statement, .category-link, .category-item, .faq-list, .about-section, .about-recipes, .about-fast, .about-tradition, .team-bios, .values-list, .learning-links, .services, .recipe-highlights, .category-overview, .dish-list, .quick-links {
  margin-bottom: 20px;
}

/*************************
 PRINT
*************************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
}
