/* === 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 {
  height: 100%;
}
body {
  min-height: 100vh;
  background: #FFF;
  color: #26402C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #26402C;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus { outline: 2px dotted #C2491D; outline-offset: 2px; }
a:hover, a:active {
  color: #C2491D;
  text-decoration: underline;
}

/* === BRAND TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: #26402C;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; font-weight: 500; }

p, ul, ol, blockquote {
  font-size: 1rem;
  color: #26402C;
  margin-bottom: 16px;
}
blockquote {
  border-left: 3px solid #C2491D;
  padding-left: 20px;
  font-style: italic;
  background: #F6E6C5;
  color: #26402C;
  margin-bottom: 24px;
}
small { font-size: 0.93rem; color: #6C7A75; }
strong { font-weight: 600; }

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(38,64,44,0.06);
  padding: 40px 24px;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === NAVIGATION & HEADER === */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(38,64,44,0.045);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
}
header img {
  height: 44px;
  width: auto;
}
nav {
  display: flex;
  gap: 28px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #26402C;
  opacity: 0.95;
  padding: 6px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a.active {
  background: #F6E6C5;
  color: #C2491D;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #26402C;
  cursor: pointer;
  margin-left: 16px;
  line-height: 1;
  border-radius: 5px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6E6C5;
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1200;
  box-shadow: 0 2px 16px 2px rgba(38,64,44,0.09);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #26402C;
  margin: 20px 20px 8px 0;
  padding: 0 6px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F6E6C5;
}
.mobile-nav {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #26402C;
  padding: 10px 0;
  border-radius: 8px;
  width: 92%;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F6E6C5;
  color: #C2491D;
}

/* === MAIN LAYOUT SPACING === */
main > section {
  margin-bottom: 60px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* SECTION GAPS for Nested Content */
.card-container, .feature-grid, .category-grid, .content-grid, .featured-articles, .blog-list, .faq-list, .tips-list, .recipes-list, .footer-menu, .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(38,64,44,0.06);
  border-radius: 14px;
  padding: 24px 22px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 22px 0 rgba(38,64,44,0.13);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 20px 20px;
  background: #F6E6C5;
  border-radius: 14px;
  box-shadow: 0 1px 8px 0 rgba(38,64,44,0.06);
  margin-bottom: 20px;
  color: #26402C;
  min-width: 0;
}
.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #6C7A75;
}

/* === BUTTONS === */
.button-primary, button[type="submit"] {
  display: inline-block;
  background: #C2491D;
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 13px 32px;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  letter-spacing: 0.02em;
  margin-top: 8px;
  box-shadow: 0 2px 12px 0 rgba(38,64,44,0.05);
  transition: background 0.2s, box-shadow 0.2s, transform 0.16s;
}
.button-primary:hover, .button-primary:focus, button[type="submit"]:hover, button[type="submit"]:focus {
  background: #36543C;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(194,73,29,0.10);
  transform: translateY(-2px);
}
.button-secondary {
  display: inline-block;
  background: #36543C;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 11px 30px;
  border: none;
  border-radius: 21px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s, transform 0.16s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #C2491D;
  color: #fff;
  transform: translateY(-1.5px);
}

/* === FORMS & INPUTS === */
input[type="email"], input[type="text"], input[type="search"], select {
  background: #FFF;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  padding: 11px 15px;
  width: 100%;
  margin-bottom: 14px;
  transition: border 0.16s;
  outline: none;
}
input[type="email"]:focus, input[type="text"]:focus, input[type="search"]:focus, select:focus {
  border-color: #C2491D;
  background: #FFF7EF;
}
select {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2336543C' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 1.1em center/14px 10px;
}
label {
  font-size: 1rem;
  color: #26402C;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}
form button[type="submit"] {
  min-width: 120px;
}

/* === FOOTER === */
footer {
  background: #fff;
  padding: 30px 0 16px 0;
  border-top: 1px solid #ECF2EC;
  box-shadow: 0 -1px 8px 0 rgba(38,64,44,0.03);
  margin-top: 60px;
}
.footer-menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-menu a {
  font-size: 0.98rem;
  font-weight: 400;
  color: #26402C;
  opacity: 0.74;
  transition: color 0.2s;
  padding: 4px 8px;
  border-radius: 5px;
}
.footer-menu a:hover {
  color: #C2491D;
  background: #F6E6C5;
  opacity: 1;
}
footer p {
  font-size: 0.98rem;
  color: #6C7A75;
  line-height: 1.45;
}

/* === SPECIAL LISTS & GRIDS === */
.feature-grid, .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.feature-grid > div, .category-grid > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px 0 rgba(38,64,44,0.08);
  padding: 24px 18px 18px 18px;
  flex: 1 1 220px;
  min-width: 190px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.feature-grid > div:hover, .category-grid > div:hover {
  box-shadow: 0 2px 18px 0 rgba(38,64,44,0.13);
}
.feature-grid img, .category-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 10px;
}

.featured-articles, .blog-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.featured-articles li, .blog-list li {
  background: #fcfbf8;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 0.5px 3.5px 0 rgba(38,64,44,0.04);
  margin-bottom: 8px;
}

.tips-list, .faq-list, .recipes-list, ul, ol {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.tips-list li, .faq-list li, .recipes-list li, ul li, ol li {
  padding: 0 0 0 16px;
  position: relative;
  color: #26402C;
  background: none;
  font-size: 1rem;
}
.tips-list li:before, .faq-list li:before, .recipes-list li:before, ul li:before {
  content: '–';
  color: #C2491D;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.blog-category {
  display: inline-block;
  background: #F6E6C5;
  color: #C2491D;
  padding: 2px 14px 2px 10px;
  margin-right: 12px;
  font-size: 0.94rem;
  border-radius: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

/* === CALL TO ACTION & SPECIAL SECTIONS === */
.content-wrapper > a.button-primary {
  margin-top: 18px;
}

/* === MAP EMBED & CONTACT === */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.contact-details > div {
  background: #fcfbf8;
  border-radius: 8px;
  padding: 14px 16px 12px 14px;
  flex: 1 1 140px;
  min-width: 160px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1rem;
  box-shadow: 0 0.5px 3.5px 0 rgba(38,64,44,0.04);
}
.contact-details img {
  height: 24px;
  width: 24px;
  margin-bottom: 4px;
}

.map-embed {
  margin-top: 22px;
  background: #F6E6C5;
  border-radius: 10px;
  padding: 18px 16px;
  font-size: 0.99rem;
  color: #26402C;
}

/* === MODALS === */
.cookie-modal-overlay {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  z-index: 1300;
  background: rgba(38,64,44,0.16);
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px 0 rgba(38,64,44,0.13);
  max-width: 400px;
  width: 95%;
  padding: 36px 24px 26px 24px;
  font-size: 1rem;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 18px;
}
.cookie-option-row {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-modal button {
  margin-right: 13px;
  margin-bottom: 4px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 97vw;
  max-width: 500px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 18px 0 rgba(38,64,44,0.13);
  z-index: 1250;
  font-size: 0.98rem;
  color: #26402C;
  opacity: 1;
  transition: opacity 0.23s;
  gap: 14px;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 210px;
  margin-bottom: 0;
  color: #26402C;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-size: 1rem;
  border: none;
  border-radius: 16px;
  padding: 9px 22px;
  font-family: inherit;
  font-weight: 500;
  outline: none;
  transition: background 0.17s, color 0.17s;
  cursor: pointer;
}
.cookie-banner .cookie-accept {
  background: #C2491D;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #36543C;
}
.cookie-banner .cookie-reject {
  background: #fff;
  border: 1.2px solid #36543C;
  color: #36543C;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #F6E6C5;
}
.cookie-banner .cookie-settings {
  background: #36543C;
  color: #fff;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #C2491D;
}

/* === MEDIA QUERIES (Mobile-first) === */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 900px) {
  .feature-grid > div, .category-grid > div {
    min-width: 40%;
    max-width: 100%;
    padding: 20px 10px 14px 10px;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 28px 6px;
  }
  main > section {
    padding: 24px 0;
    margin-bottom: 42px;
  }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  h3 { font-size: 1.01rem; }

  .feature-grid, .category-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .category-grid > div {
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
  }
  .contact-details {
    flex-direction: column;
    gap: 14px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .blog-list, .featured-articles, .tips-list {
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .cookie-banner {
    max-width: 98vw;
    padding: 19px 9px;
    font-size: 0.99rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner p {
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  h1 { font-size: 1.15rem; }
  h2 { font-size: 1.01rem; }
  h3 { font-size: 0.98rem; }
  .testimonial-card {
    flex-direction: column;
    padding: 15px 10px;
    gap: 8px;
  }
  .map-embed {
    padding: 13px 7px;
  }
  .cookie-modal {
    padding: 22px 7px 18px 7px;
    max-width: 97vw;
  }
}

/* ==== SHOW/HIDE NAV ON MOBILE ==== */
@media (max-width: 900px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    height: 64px;
  }
}

/* === UTILITY CLASSES === */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.text-section { padding: 34px 20px; border-radius: 14px; background: #fcfbf8; }
.hide { display: none !important; }
.show { display: block !important; }

/* === ANIMATIONS === */
@keyframes modalFadeIn {
  0% { opacity: 0; transform: translateY(60px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal.open {
  animation: modalFadeIn 0.28s cubic-bezier(.33,1.38,.36,.87);
}

@keyframes slideInMenu {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}
.mobile-menu.open {
  animation: slideInMenu 0.36s cubic-bezier(.17,.67,.46,1.21);
}

/***********************************************************
 * Brand fonts - import in HTML: 
 *   - Playfair Display (display)
 *   - Montserrat (body)
 ***********************************************************/
