/* CSS RESET & BASELINE 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;
}
html, body {
  height: 100%;
  width: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F3F0EA;
  color: #325336;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.07em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #325336;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:focus, a:hover {
  color: #B28B57;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* BRAND TYPOGRAPHY */
h1, .h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #325336;
  margin-bottom: 16px;
  line-height: 1.13;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 2rem; }
}
h2, .h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #325336;
  margin-bottom: 12px;
  line-height: 1.2;
}
@media (max-width: 600px) {
  h2, .h2 { font-size: 1.5rem; }
}
h3, .h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: #325336;
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}

/* GENERAL CONTAINER & LAYOUT STRUCTURE */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    padding: 32px 10px;
    margin-bottom: 40px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(50,83,54,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 340px;
  transition: box-shadow 0.20s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 5px 22px rgba(50,83,54,0.16);
  transform: translateY(-4px) scale(1.02);
}

.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;
  width: 100%;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(50,83,54,0.07);
  margin-bottom: 20px;
  max-width: 350px;
  min-width: 230px;
  flex: 1 1 270px;
}
.testimonial-card p {
  color: #325336;
  font-size: 1.07rem;
  font-style: italic;
  margin-bottom: 10px;
}
.testimonial-card span {
  color: #B28B57;
  font-size: 0.97rem;
  font-family: 'Open Sans', Arial, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 24px 18px;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px rgba(50,83,54,0.07);
  min-width: 210px;
  margin-bottom: 20px;
}

/******* HEADER AND NAVIGATION ******/
header {
  background: #fff;
  border-bottom: 1px solid #ece8df;
  box-shadow: 0 1px 8px rgba(178,139,87,0.06);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 120px;
  margin-right: 36px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1 1 auto;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #325336;
  position: relative;
  padding: 7px 0;
  transition: color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B28B57;
}

.cta-primary {
  background: #325336;
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  text-align: center;
  border-radius: 40px;
  padding: 10px 30px;
  margin-left: 20px;
  box-shadow: 0 1.5px 10px rgba(50,83,54,0.11);
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.2s, color 0.19s, box-shadow 0.2s;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #B28B57;
  color: #fff;
  box-shadow: 0 4px 16px rgba(50,83,54,0.19);
}

/* Burger and Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #325336;
  margin-left: 18px;
  cursor: pointer;
  outline: none;
  z-index: 91;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #B28B57;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 4px 22px rgba(50,83,54,0.13);
  z-index: 98;
  padding: 32px 22px 22px 22px;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.68,0,-0.55,1.96);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #B28B57;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 18px;
  outline: none;
  z-index: 101;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 22px;
}
.mobile-nav a {
  color: #325336;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid #F3F0EA;
  transition: color 0.12s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B28B57;
  background: #F3F0EA;
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 993px) {
  .mobile-menu { display: none !important; }
}

/* Hide CTA Primary on mobile in header (shows as menu link instead) */
@media (max-width: 600px) {
  header .cta-primary {
    display: none;
  }
}

/******* HERO & PAGE STRUCTURE & GENERAL BUTTONS *******/
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 8px 0;
}
.filter-tabs a {
  padding: 6px 18px;
  border-radius: 22px;
  border: 1.5px solid #B28B57;
  color: #B28B57;
  background: #fff;
  font-size: 0.97rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.17s, color 0.17s;
}
.filter-tabs a.active, .filter-tabs a:hover, .filter-tabs a:focus {
  background: #B28B57;
  color: #fff;
}

.quick-filters {
  margin: 24px 0 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .99rem;
  color: #325336;
}
.quick-filters span {
  font-weight: 600;
}
.quick-filters a {
  color: #B28B57;
  text-decoration: underline;
  padding: 2px 6px;
}

.cta-banner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(50,83,54,0.11);
  padding: 28px 16px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  gap: 14px;
}
.cta-banner h2, .cta-banner h3 {
  margin-bottom: 6px;
}

/******* FEATURE GRIDS & CARDS *******/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 11px rgba(50,83,54,0.07);
  padding: 25px 18px;
  min-width: 230px;
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.12s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 25px rgba(178,139,87,0.08);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid h3 {
  margin-top: 8px;
  margin-bottom: 6px;
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 2px;
}

.recipe-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(50,83,54,0.07);
  padding: 22px 18px;
  min-width: 210px;
  min-height: 140px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.14s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.recipe-card:hover {
  box-shadow: 0 5px 16px rgba(178,139,87,0.10);
  transform: translateY(-3px) scale(1.01);
}

/**** Cards, Placeholders, Grids ****/
.map-placeholder {
  background: #ece8df;
  border-radius: 10px;
  padding: 20px;
  color: #325336;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 0.99rem;
  box-shadow: 0 1px 7px rgba(178,139,87,0.10);
}

/****** Trend Themes in Inspiration ******/
.trend-themes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
  color: #325336;
  margin: 22px 0 3px 0;
}
.trend-themes span {
  background: #ece8df;
  border-radius: 20px;
  padding: 6px 15px;
  font-weight: 600;
}

/******* TEXT SECTION & CONTENT ******/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul {
  margin-left: 20px;
  margin-bottom: 2px;
  list-style-type: disc;
  color: #325336;
  font-size: 1rem;
  line-height: 1.6;
}
.text-section ul li {
  margin-bottom: 8px;
  font-weight: 400;
}
.text-section ul li b {
  color: #B28B57;
  font-weight: 700;
}
.text-section a {
  color: #B28B57;
  text-decoration: underline;
  transition: color 0.15s;
}
.text-section a:hover, .text-section a:focus {
  color: #325336;
}

/******* FOOTER ******/
footer {
  background: #fff;
  border-top: 1px solid #ece8df;
  padding: 30px 0 18px 0;
  color: #325336;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #325336;
  font-size: 0.97rem;
  transition: color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B28B57;
}
.footer-contact {
  font-size: 0.97rem;
  line-height: 1.55;
  margin-bottom: 14px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
    margin-top: 16px;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  display: block;
}
.footer-brand span {
  font-size: 0.95rem;
  color: #B28B57;
}

@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}

/******** RESPONSIVE LAYOUTS ********/
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 22px;
    justify-content: flex-start;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 8px; }
  .feature-grid > div, .card, .testimonial-card, .feature-item, .recipe-card {
    min-width: 90vw;
    max-width: 100vw;
    box-sizing: border-box;
  }
}

/******** ACCESSIBILITY FOCUSED *********/
:focus {
  outline: 2px solid #B28B57;
  outline-offset: 1.5px;
}

/********* INTERACTIVE STATES / MICRO-INTERACTIONS ********/ 
button, .cta-primary, .filter-tabs a {
  cursor: pointer;
  transition: background 0.21s, color 0.18s, box-shadow 0.15s, transform 0.10s;
}
button:focus, .cta-primary:focus, .filter-tabs a:focus {
  outline: 2px solid #B28B57;
}

/******* COOKIE BANNER & PREFERENCES MODAL ********/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #325336;
  color: #fff;
  padding: 24px 12px;
  box-shadow: 0 -2px 16px rgba(50,83,54,0.21);
  gap: 32px;
  font-size: 1rem;
  flex-wrap: wrap;
  width: 100vw;
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.04rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  padding: 8px 22px;
  border-radius: 22px;
  background: #B28B57;
  color: #fff;
  border: none;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.19s, color 0.17s, box-shadow 0.17s;
  margin-right: 7px;
}
.cookie-btn:last-child {
  margin-right: 0px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff;
  color: #325336;
  box-shadow: 0 0 12px rgba(50,83,54,0.17);
}
.cookie-btn.cookie-settings {
  background: #F3F0EA;
  color: #325336;
  border: 1.5px solid #B28B57;
}
.cookie-btn.cookie-settings:hover {
  background: #B28B57;
  color: #fff;
}

.cookie-preferences-modal {
  position: fixed;
  z-index: 1001;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 26px rgba(50,83,54,.18);
  padding: 36px 28px 26px 28px;
  min-width: 300px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: appear 0.33s;
}
@keyframes appear {
  from { opacity: 0; transform: translate(-50%,-46%) scale(0.93); }
  to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-preferences-modal h2 {
  margin-bottom: 4px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 2px;
}
.cookie-category label {
  font-size: 1rem;
  color: #325336;
  font-weight: 500;
}
.cookie-category input[type='checkbox'] {
  accent-color: #B28B57;
  margin-left: 0;
  margin-right: 7px;
  width: 18px;
  height: 18px;
}
.cookie-save-btn {
  margin-top: 8px;
  padding: 9px 26px;
  background: #B28B57;
  color: #fff;
  border-radius: 22px;
  border: none;
  font-weight: 600;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: background 0.15s, color 0.15s;
}
.cookie-save-btn:hover, .cookie-save-btn:focus {
  background: #325336;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none; border: none;
  font-size: 1.8rem;
  color: #B28B57;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #325336;
}
@media (max-width: 610px) {
  .cookie-preferences-modal {
    padding: 22px 8px 18px 8px;
    min-width: unset;
  }
}

/******* MISC, ACCENT, NATURAL THEMES ******/
hr {
  border: 0; border-top: 1px solid #ece8df;
  margin: 22px 0;
}
::-webkit-scrollbar {
  width: 10px;
  background: #ece8df;
}
::-webkit-scrollbar-thumb {
  background: #B28B57;
  border-radius: 5px;
}
::-moz-selection { background: #B28B57; color: #fff; }
::selection      { background: #B28B57; color: #fff; }

/************ UTILITIES ***********/
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-12 { margin-top: 12px !important; }

/****** ENSURE NO OVERLAP *****/
section, .feature-grid > div, .card, .testimonial-card, .feature-item, .recipe-card {
  margin-bottom: 20px;
}
section + section {
  margin-top: 10px;
}

/***** ENSURE FLEXBOX SPACING IS ENFORCED *****/
.feature-grid, .content-grid, .card-container, .text-image-section {
  gap: 24px;
}
@media (max-width: 900px) {
  .feature-grid, .content-grid, .card-container {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .content-grid, .card-container, .text-image-section {
    gap: 14px;
  }
}

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