/* ==========================================================================
   CSS RESET & ROOT STYLES
   ========================================================================== */
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,
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,
main,
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-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #F0ECE8;
  color: #2C3E2F;
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
*, *:before, *:after { box-sizing: inherit; }
a { color: #CB9768; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #2C3E2F; text-decoration: underline; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #2C3E2F;
  font-weight: bold;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4 { font-size: 1.1rem; }
p, ul, ol, blockquote {
  margin-bottom: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
blockquote {
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid #CB9768;
  background: #faf7f2;
  margin-bottom: 8px;
}
strong {
  font-weight: bold;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin-bottom: 40px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(44,62,47,0.04);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 34px;
  }
}

/* Card patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(44,62,47,0.07);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.card:hover {
  box-shadow: 0 6px 32px 0 rgba(44,62,47,0.13);
  transform: translateY(-4px) scale(1.03);
}

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

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(44,62,47,0.06);
  margin-bottom: 20px;
  flex-wrap: wrap;
  border-left: 5px solid #CB9768;
}
.testimonial-card blockquote {
  font-size: 1.14rem;
  color: #2C3E2F;
  background: transparent;
  border: none;
  padding-left: 0;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 1rem;
  color: #6A5544;
  font-style: italic;
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
header {
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(44,62,47,0.06);
  border-bottom: 1px solid #EAE2D9;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 19px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2C3E2F;
  font-size: 1rem;
  padding: 6px 0;
  border: none;
  background: none;
  border-radius: 0;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #CB9768;
  transition: width .25s;
  margin: 2px auto 0 auto;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.btn,
.btn-primary {
  font-family: 'Merriweather', Georgia, serif;
  padding: 10px 28px;
  border-radius: 28px;
  background: #CB9768;
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44,62,47,0.07);
  transition: background .2s, color .2s, box-shadow .2s, transform .15s;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #2C3E2F;
  color: #fff !important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 14px rgba(44,62,47,0.11);
}
.btn-link {
  color: #CB9768;
  font-weight: 600;
  background: none;
  border: none;
  padding: 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: color .15s;
}
.btn-link:hover, .btn-link:focus {
  color: #2C3E2F;
  text-decoration: underline;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  background: linear-gradient(90deg, #fff 65%, #F0ECE8 100%);
  padding: 50px 0 32px 0;
  margin-bottom: 35px;
}
.hero h1 {
  font-size: 2.3rem;
  font-family: 'Merriweather', Georgia, serif;
  margin-bottom: 17px;
}
.hero .subtitle,
.hero p {
  font-size: 1.2rem;
  margin-bottom: 21px;
  color: #6a5544;
}
.hero .btn-primary {
  margin-top: 12px;
}
@media (max-width: 768px) {
  .hero {
    padding: 29px 0 16px 0;
    margin-bottom: 19px;
    background: #F0ECE8;
  }
}

/* ==========================================================================
   FEATURES & SERVICES LISTS
   ========================================================================== */
.feature-grid,
.service-list,
.recipe-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style-type: none;
  margin: 0 0 24px 0;
  padding: 0;
}
.feature-grid > li,
.recipe-grid > li,
.service-list > li {
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 7px rgba(44,62,47,0.05);
  padding: 24px 18px;
  flex: 1 1 220px;
  min-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .15s;
  position: relative;
}
.feature-grid > li:hover,
.service-list > li:hover,
.recipe-grid > li:hover {
  box-shadow: 0 6px 24px 0 rgba(44,62,47,0.11);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  display: block;
}
.recipe-grid > li {
  text-align: center;
  font-weight: 600;
}
@media (max-width: 768px) {
  .feature-grid, .service-list, .recipe-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > li, .service-list > li, .recipe-grid > li {
    min-width: 0;
    width: 100%;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: #2C3E2F;
  color: #fff;
  padding: 36px 0 18px 0;
  letter-spacing: 0.01em;
  border-top: 1px solid #EAE2D9;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 19px;
}
.footer-nav a {
  color: #CB9768;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color .15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.footer-brand img {
  height: 38px;
  width: auto;
}
.footer-brand span {
  color: #fff;
  font-size: 1rem;
  font-family: 'Merriweather', Georgia, serif;
}
.contact-info {
  font-size: 0.97rem;
  color: #dacabe;
  margin-bottom: 0;
}
.contact-info a {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #2C3E2F;
  font-size: 2.0rem;
  padding: 4px 16px;
  cursor: pointer;
  z-index: 40;
  border-radius: 6px;
  transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F0ECE8;
  color: #CB9768;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -7px 0 17px 0 rgba(44,62,47,0.13);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.38,1.21,.5,1), box-shadow .2s;
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: -9px 0 22px 0 rgba(44,62,47,0.20);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 0 16px 0;
  background: none;
  border: none;
  color: #CB9768;
  font-size: 2.0rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F0ECE8;
  color: #2C3E2F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: #2C3E2F;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 0;
  border-bottom: 1px solid #F0ECE8;
  transition: color .15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #CB9768;
}
@media (max-width: 1200px) {
  .main-nav {
    gap: 12px;
  }
  header .btn-primary {
    padding: 10px 16px;
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  header .container {
    height: 68px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 880px) {
  header .container {
    flex-wrap: wrap;
    padding: 0 11px;
  }
  .logo img {
    height: 35px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: 5px;
  }
}
@media (max-width: 600px) {
  .container { padding: 0 6px; }
  .footer-brand img {
    height: 29px;
  }
}

/* Mobile overlay background when menu open */
.mobile-menu-overlay {
  display: none; /* JS toggled */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44,62,47,0.18);
  z-index: 150;
}
.mobile-menu.active + .mobile-menu-overlay {
  display: block;
}

/* ==========================================================================
   COOKIE CONSENT BANNER & MODAL
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #2C3E2F;
  color: #fff;
  box-shadow: 0 -3px 16px 0 rgba(44,62,47,0.12);
  z-index: 2500;
  padding: 18px 30px 18px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: bannerEnter .6s cubic-bezier(.32,1.57,.58,1.04);
}
@keyframes bannerEnter {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1.03rem;
  margin-bottom: 0;
  flex: 2 1 300px;
}
.cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 23px;
  padding: 9px 26px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(44,62,47,0.06);
  transition: background .18s, color .12s, transform .11s;
}
.cookie-accept {
  background: #CB9768;
  color: #fff;
}
.cookie-reject {
  background: #F0ECE8;
  color: #2C3E2F;
}
.cookie-settings {
  background: none;
  border: 2px solid #CB9768;
  color: #CB9768;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #2C3E2F;
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #fff;
  color: #2C3E2F;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #CB9768;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 13px; padding: 16px 9px; }
  .cookie-actions { gap: 8px; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2600;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(44,62,47,0.32);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: #fff;
  color: #2C3E2F;
  padding: 36px 32px 30px 32px;
  box-shadow: 0 4px 40px 0 rgba(44,62,47,0.20), 0 1.5px 10px 0 rgba(44,62,47,0.06);
  border-radius: 16px;
  min-width: 310px;
  max-width: 98vw;
  animation: modalEnter .44s cubic-bezier(.16,1.21,.57,1.29);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
@keyframes modalEnter {
  from { transform: scale(.91) translateY(80px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
}
.cookie-category label {
  font-size: 1rem;
  color: #2C3E2F;
}
.cookie-category input[type="checkbox"] {
  accent-color: #CB9768;
  width: 20px;
  height: 20px;
}
.essential-cookies label {
  font-weight: bold;
  color: #2C3E2F;
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 9px; right: 16px;
  background: none;
  border: none;
  color: #CB9768;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F0ECE8;
  color: #2C3E2F;
}
@media (max-width: 490px) {
  .cookie-modal { padding: 18px 7vw 14px 7vw; }
  .cookie-modal h2 { font-size: 1.07rem; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.center { text-align: center !important; }

ul, ol {
  margin-left: 18px;
  margin-bottom: 18px;
  font-size: 1rem;
}
ul ul, ol ul, ul ol, ol ol {
  margin-bottom: 6px;
}
li {
  margin-bottom: 9px;
}

/* Section or card with image and text side by side */
.address-map {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 14px 0 0 0;
}
.thank-you-message {
  font-size: 1.16rem;
  color: #2C3E2F;
  margin-bottom: 22px;
}

/* FAQ */
section > h2 {
  margin-top: 14px;
}

/* ==========================================================================
   RESPONSIVE & ADAPTIVE
   ========================================================================== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.23rem; }
  h3 { font-size: 1.07rem; }
  .footer-brand img { height: 23px; }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 7px;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
.card, .feature-grid > li, .service-list > li {
  transition: box-shadow .19s, transform .15s;
}
.btn, .btn-primary, .btn-link {
  transition: background .16s, color .16s, box-shadow .17s, transform .14s;
}

/* ==========================================================================
   CUSTOM SCROLLBARS (Elegant)
   ========================================================================== */
::-webkit-scrollbar {
  width: 10px;
  background: #F0ECE8;
}
::-webkit-scrollbar-thumb {
  background: #CB9768;
  border-radius: 12px;
}

/* ==========================================================================
   COLOR ACCESSIBILITY & CONTRAST
   ========================================================================== */
body, p, .testimonial-card blockquote, .content-wrapper, .btn-link {
  background: transparent;
}
.testimonial-card { background: #fff; color: #2C3E2F; }
.testimonial-card blockquote { color: #2C3E2F; background: transparent; }

/* ==========================================================================
   OTHER FIXES
   ========================================================================== */
@media (min-width: 769px) {
  .main-nav { display: flex !important; }
  .mobile-menu-toggle { display: none !important; }
  .mobile-menu { display: none !important; }
}
