/* 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #FFF7F0;
  min-height: 100vh;
  color: #3E260F;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #B33B1B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #633A16;
  outline: none;
}
th, td {
  padding: 8px 16px;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
strong, b {
  font-weight: bold;
}
/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #633A16;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 28px;
  line-height: 1.2;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 18px;
}
.container {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 6px 30px rgba(90,38,2,0.065);
}
.section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* LUXURY PREMIUM ACCENTS */
.gold {
  color: #C9A860;
}
.premium-shadow {
  box-shadow: 0 4px 24px 0 rgba(144,121,46,0.10), 0 2px 6px #e3d2a1;
}
.card {
  background: #FFFDEB;
  border-radius: 16px;
  box-shadow: 0 3px 20px rgba(99,58,22,0.05);
  position: relative;
  padding: 28px 24px;
  margin-bottom: 20px;
  border: 1px solid #f3e6cb;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  border-color: #C9A860;
  box-shadow: 0 4px 32px 0 rgba(99, 58, 22, 0.11);
  z-index: 2;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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: 20px;
  padding: 20px 28px;
  background: #FAF6EE;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(199,164,96,0.06);
  margin-bottom: 20px;
  border-left: 5px solid #C9A860;
  color: #3E260F;
  max-width: 600px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card blockquote {
  font-size: 1.05rem;
  font-style: italic;
  color: #3E260F;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #633A16;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(90,38,2,0.08);
  border-color: #B6862B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
  padding-left: 0;
}
.features li {
  background: #FFFDEB;
  border-radius: 15px;
  padding: 16px 20px;
  min-width: 170px;
  color: #633A16;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.12rem;
  box-shadow: 0 2px 8px 0 rgba(226,188,104,0.05);
}
.features img {
  width: 30px;
  height: 30px;
  display: inline-block;
}
.hero {
  background: linear-gradient(89deg, #FBEEDB 0%, #FFF 80%);
  border-radius: 26px;
  margin-bottom: 44px;
  padding: 48px 0 28px 0;
  box-shadow: 0 3px 28px 0 rgba(99,58,22,0.06);
  min-height: 230px;
}
.hero h1 {
  font-size: 2.3rem;
  color: #633A16;
  margin-bottom: 20px;
}
.hero p {
  color: #715E48;
  font-size: 1.12rem;
  margin-bottom: 18px;
}
.cta {
  background: #FBEEDB;
  border-radius: 22px;
  padding: 36px 0;
  margin-bottom: 60px;
  box-shadow: 0 2px 14px rgba(153,110,39,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #C9A860;
  color: #633A16;
  font-size: 1.08rem;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  box-shadow: 0 3px 16px 0 rgba(201,168,96,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  border-bottom: 2px solid #B6862B;
}
.cta-primary:hover, .cta-primary:focus {
  background: #B6862B;
  color: #FAF6EE;
  box-shadow: 0 6px 20px 0 rgba(201,168,96,0.18);
  outline: none;
}
/* NAVIGATION */
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  padding: 23px 0 14px 0;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #633A16;
  letter-spacing: 0.03em;
  border-bottom: 2px solid transparent;
  padding: 5px 1px 4px 1px;
  transition: color 0.16s, border-color 0.16s;
}
header nav a:hover, header nav a:focus {
  color: #B6862B;
  border-bottom: 2px solid #C9A860;
  outline: none;
}
header nav a.cta-primary {
  margin-left: 18px;
  background: #C9A860;
  color: #633A16 !important;
  border-bottom: none;
  padding: 10px 22px !important;
  border-radius: 22px;
  box-shadow: 0 2px 6px 0 rgba(206,162,74,0.09);
  transition: background 0.18s, color 0.18s;
}
header nav a.cta-primary:hover, header nav a.cta-primary:focus {
  background: #B6862B;
  color: #FAF6EE !important;
}
/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 26px;
  top: 22px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #B33B1B;
  cursor: pointer;
  z-index: 120;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: #633A16;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(251,238,219,0.98);
  transform: translateX(100vw);
  transition: transform 0.34s cubic-bezier(.85,0,.15,1.0);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding-top: 44px;
  will-change: transform;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 22px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #633A16;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.14s;
}
.mobile-menu-close:focus {
  color: #B6862B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  padding: 42px 36px 0 34px;
}
.mobile-nav a {
  color: #633A16;
  font-size: 1.22rem;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  padding: 10px 0;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #ecd3b3;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B33B1B;
  background: #f7ead1;
  outline: none;
}
/* FOOTER STYLES */
footer {
  background: #633A16;
  color: #FBEEDB;
  padding: 52px 0 18px 0;
  margin-top: 70px;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-bottom: 24px;
  align-items: center;
  font-size: 1rem;
}
.footer-nav a {
  color: #FBEEDB;
  font-weight: 500;
  font-size: 1rem;
  padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  border-bottom: 1.5px solid #C9A860;
  color: #C9A860;
}
.footer-contact img {
  vertical-align: middle;
  margin-right: 7px;
  opacity: 0.88;
}
.footer-copy {
  text-align: center;
  font-size: 0.97rem;
  color: #C9A860;
  letter-spacing: 1px;
  margin-top: 6px;
}
/* SEARCH BAR */
.search-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #FFFDEB;
  border-radius: 18px;
  padding: 10px 16px;
  margin-top: 18px;
  box-shadow: 0 1px 5px 0 rgba(201,168,96,0.08);
  max-width: 450px;
}
.search-bar input[type="search"] {
  border: none;
  background: transparent;
  font-size: 1rem;
  color: #633A16;
  font-family: 'Open Sans', Arial, sans-serif;
  outline: none;
  flex: 1 0 0;
}
.search-bar button[type="submit"] {
  background: #C9A860;
  color: #633A16;
  border: none;
  font-family: 'Merriweather', serif;
  font-size: 1.07rem;
  border-radius: 12px;
  padding: 8px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.search-bar button[type="submit"]:hover, .search-bar button[type="submit"]:focus {
  background: #B6862B;
  color: #fff;
}
/* CATEGORY & PREVIEW LISTS */
.categories ul, .recipes-preview ul, .blog-preview ul, .featured-recipes ul, .blog-list ul, .tips-list ul, .contact-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding: 0;
  margin-bottom: 16px;
}
.categories li, .recipes-preview li, .blog-preview li, .featured-recipes li, .blog-list li, .tips-list li, .contact-info li {
  font-size: 1.09rem;
  color: #633A16;
  background: #FFFDEB;
  border-radius: 12px;
  padding: 10px 20px;
  box-shadow: 0 1px 5px 0 rgba(201,168,96,0.04);
  margin-bottom: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
}
.categories li {
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.categories li:hover, .categories li:focus {
  color: #B6862B;
  background: #f4e1b3;
}
/**** FORMS & FAQ ****/
dt {
  font-weight: 700;
  color: #633A16;
  font-family: 'Merriweather', serif;
  margin-top: 18px;
}
dd {
  margin-left: 20px;
  margin-bottom: 6px;
  color: #715E48;
  font-size: 1.02rem;
}
.text-section {
  margin-bottom: 23px;
  font-size: 1.1rem;
  color: #704021;
}
.privacy-note {
  font-size: 0.97rem;
  color: #967D5D;
}
.privacy-note a {
  color: #C9A860;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
    max-width: 100vw;
  }
  .section {
    margin-bottom: 44px;
    padding: 28px 7px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta {
    padding: 24px 6px;
  }
  .content-wrapper {
    gap: 12px;
    padding: 0 2px;
  }
  .hero {
    padding: 34px 6px 12px 6px;
    margin-bottom: 22px;
    border-radius: 16px;
  }
  .footer-nav, .footer-contact {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .card-container, .content-grid, .features ul,
  .categories ul, .recipes-preview ul, .blog-preview ul, .featured-recipes ul, .blog-list ul, .tips-list ul {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 16px 8px;
  }
  .text-image-section, .features {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  .hero h1 {
    font-size: 1.22rem;
  }
  h2 {
    font-size: 1.01rem;
  }
  .cta-primary, header nav a.cta-primary {
    padding: 9px 12px;
    font-size: 1.01rem;
  }
}
/* PAGE SECTIONS AND UTILITIES */
.about-preview, .about, .values, .team, .user-content, .contact-info, .contact-form-info, .legal {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(201,168,96,0.08);
  padding: 22px 18px 30px 18px;
  margin-bottom: 28px;
}
.blog-list, .tips-list, .faq, .recipes-preview, .featured-recipes {
  background: #FFFDEB;
  border-radius: 13px;
  margin-bottom: 30px;
  box-shadow: 0 1.5px 8px 0 rgba(201,168,96,0.06);
}
.faq dl dt {
  margin-bottom: 5px;
}
.faq dl dd {
  margin-bottom: 16px;
}
.legal .text-section h2 {
  margin-top: 22px;
  margin-bottom: 8px;
}
/******** COOKIE CONSENT BANNER ********/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFFDEB;
  color: #633A16;
  box-shadow: 0 -2px 14px 0 rgba(99,58,22,0.06);
  padding: 28px 18px 22px 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  z-index: 12001;
  gap: 14px 32px;
  justify-content: center;
  transition: transform 0.36s cubic-bezier(.85,0,.15,1);
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-consent-banner strong {
  display: block;
  font-size: 1.08rem;
  font-family: 'Merriweather', serif;
}
.cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-btn {
  background: #C9A860;
  color: #633A16;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(201,168,96,0.08);
  font-size: 1.03rem;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
.cookie-btn.reject {
  background: #fff;
  color: #B33B1B;
  border: 1.5px solid #B33B1B;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FBEEDB;
  color: #8D2200;
}
.cookie-btn.settings {
  background: #fff;
  color: #633A16;
  border: 1.5px solid #633A16;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FBEEDB;
  color: #B6862B;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #B6862B;
  color: #fff;
  outline: none;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px 0;
    padding: 23px 10px 14px 10px;
  }
}
/**** COOKIE MODAL ****/
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(99,58,22,0.38);
  backdrop-filter: blur(2px);
  z-index: 12020;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInCookieModal 0.22s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #FBEEDB;
  border-radius: 22px;
  padding: 36px 26px 32px 26px;
  box-shadow: 0 6px 24px 0 rgba(201,168,96,0.13);
  max-width: 370px;
  color: #633A16;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: zoomInCookieModal 0.3s cubic-bezier(.39,.575,.565,1.000);
}
@keyframes zoomInCookieModal {
  from { transform: scale(0.95); opacity: 0.7; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.31rem;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.03rem;
  background: #FFF;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 1px 5px 0 rgba(201,168,96,0.08);
  margin-bottom: 8px;
  font-weight: 600;
}
.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #B6862B;
}
.cookie-category .required {
  color: #B33B1B;
  margin-left: 8px;
  font-size: 0.92em;
  font-weight: 400;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 12px;
}
.cookie-modal-close {
  position: absolute;
  right: 25px;
  top: 23px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #633A16;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #B33B1B;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    max-width: 95vw;
    padding: 18px 4vw 18px 4vw;
  }
}
/* MICRO-INTERACTIONS & TRANSITIONS */
.card, .testimonial-card, .feature-item, .search-bar, .cta-primary, .cookie-btn, .categories li, .features li, .faq dl dt, .cookie-modal-content {
  transition: box-shadow 0.15s, border-color 0.15s, background 0.17s, color 0.13s, transform 0.13s;
}
.card:hover, .categories li:hover, .features li:hover, .testimonial-card:hover {
  z-index: 2;
  transform: translateY(-2px) scale(1.01);
}
a.cta-primary:active, .cta-primary:active {
  transform: scale(0.97);
}
/* UTILITY */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.radius-14 { border-radius: 14px !important; }
.radius-20 { border-radius: 20px !important; }
.bg-light { background: #FFFDEB !important; }
.bg-premium { background: #FBEEDB !important; }
.bg-dark { background: #633A16 !important; color: #fff !important; }
.text-gold { color: #C9A860 !important; }
.text-dark { color: #3E260F !important; }
.text-strong { font-weight: 700 !important; }
/* Hide visually but keep for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* END OF STYLES */