/* ==========================================================  
   RESET & BASE TYPOGRAPHY - Elegant Classic (Montserrat/Roboto fallback)
========================================================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
body {
  background: #F3ECE4;
  color: #45311a;
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img, video {
  max-width: 100%;
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  color: #604020;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; line-height: 1.13; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-top: 16px; margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 16px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, blockquote, pre { font-size: 1.07rem; margin-bottom: 16px; }
strong { font-weight: bold; }
ul, ol { margin-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 8px; }
a {
  color: #82532b;
  text-decoration: none;
  transition: color .2s, text-decoration-color .2s;
  outline: none;
}
a:focus, a:hover {
  color: #B35C1E;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

/* ==========================================================  
   LAYOUT, CONTAINERS, FLEXBOX PATTERNS
========================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(96,64,32,0.09);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .17s, transform .15s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(96,64,32,0.15);
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(96,64,32,0.09);
  margin-bottom: 20px;
  transition: box-shadow .18s;
  flex-direction: column;
  max-width: 540px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(96,64,32,0.13);
}
.testimonial-author {
  font-family: 'Montserrat', serif;
  font-weight: 500;
  color: #604020;
  font-size: .98rem;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Specific Util Classes for Grids */
.feature-list, .service-list, .values-list, .faq-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-list li, .service-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(96,64,32,0.05);
  padding: 20px 18px;
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0;
}
.values-list li {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0 0 0 16px;
  font-size: 1.04rem;
  margin-bottom: 6px;
  border-left: 3px solid #82532b;
}

/***********************
  HERO SECTION
***********************/
.hero {
  background: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 32px rgba(96,64,32,0.09);
  padding: 50px 0 40px 0;
  margin-bottom: 60px;
}
.hero .container {
  padding-top: 0;
}
.hero h1 {
  font-size: 2.8rem;
  color: #604020;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.19rem;
  color: #604020;
  margin-bottom: 28px;
}

/***********************
  MAIN NAVIGATION
***********************/
header {
  background: #fff;
  position: relative;
  z-index: 20;
  box-shadow: 0 1px 6px rgba(96,64,32,0.08);
  margin-bottom: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 32px;
  flex-wrap: wrap;
}
.logo-link img {
  height: 40px;
  width: auto;
  margin-right: 24px;
}
.main-nav ul {
  display: flex;
  gap: 18px;
  list-style: none;
  margin-left: 0;
}
.main-nav li {
  font-family: 'Montserrat', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1.08rem;
}
.main-nav li a {
  color: #604020;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background .17s;
}
.main-nav li a:hover,
.main-nav li a:focus {
  background: #F3ECE4;
  color: #82532b;
}
.main-nav .cta-primary {
  margin-left: auto;
}
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 8px;
  border: none;
  transition: background .17s, color .18s, box-shadow .17s, transform .15s;
  cursor: pointer;
  text-align: center;
  font-size: 1.10rem;
  box-shadow: 0 1px 5px rgba(96,64,32,0.04);
  margin-top: 10px;
}
.cta-primary {
  background: #604020;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #82532b;
  color: #fff;
  box-shadow: 0 6px 18px rgba(179, 92, 30,0.14);
  transform: translateY(-1px) scale(1.03);
}
.cta-secondary {
  background: #F3ECE4;
  color: #604020;
  border: 2px solid #B35C1E;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #B35C1E;
  color: #fff;
  border-color: #82532b;
}

/***********************************
  MOBILE MENU & NAVIGATION
***********************************/
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 6px;
  padding: 7px 15px;
  font-size: 2rem;
  color: #604020;
  position: absolute;
  right: 20px;
  top: 11px;
  z-index: 40;
  border: 1.5px solid #F3ECE4;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(96,64,32,0.08);
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(243,236,228,0.98);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(.79,.03,.33,1), box-shadow .2s;
  box-shadow: 0 4px 24px rgba(96,64,32,0.14);
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  margin: 22px 24px 0 0;
  font-size: 2.2rem;
  color: #604020;
  cursor: pointer;
  transition: color .23s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B35C1E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 30px 0 30px;
  margin-top: 18px;
}
.mobile-nav a {
  color: #604020;
  font-family: 'Montserrat', serif;
  font-size: 1.28rem;
  border-radius: 7px;
  padding: 15px 8px;
  transition: background .15s, color .19s;
  text-align: left;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #B35C1E;
  color: #fff;
}
@media (max-width:1024px) {
  .main-nav ul {
    gap: 10px;
  }
  .main-nav .cta-primary {
    margin-left: 0;
    margin-top: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  .main-nav {
    justify-content: flex-start;
    gap: 16px;
  }
}

/***********************************
  CARDS, LISTS & FLEX LAYOUTS
***********************************/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list li {
  min-width: 220px;
  flex: 1 1 270px;
  margin-bottom: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-list .price,
.pricing-info, .price-info {
  font-family: 'Montserrat', serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: #B35C1E;
  margin: 4px 0 12px 0;
}
.category-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.category-filters ul {
  display: flex;
  gap: 12px;
  list-style: none;
  padding-left: 0;
}
.category-filters a {
  font-family: 'Montserrat', serif;
  color: #604020;
  padding: 7px 12px;
  border-radius: 6px;
  background: #F3ECE4;
  border: none;
  transition: background .21s, color .21s;
}
.category-filters a:hover,
.category-filters a.active {
  background: #82532b;
  color: #fff;
}

/***************
  RECIPES CARDS
***************/
.recipes-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.recipe-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(96,64,32,0.08);
  padding: 22px 16px;
  flex: 1 1 250px;
  min-width: 210px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .13s;
}
.recipe-card:hover {
  box-shadow: 0 8px 30px rgba(96,64,32,0.13);
}

/***********************
  TEXT-ONLY SECTIONS
***********************/
.text-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(96,64,32,0.04);
  padding: 36px 28px;
  margin-bottom: 24px;
}
.map-location, .business-hours, .contact-info {
  margin-bottom: 18px;
  padding-top: 4px;
  color: #45311a;
}

.tip-categories {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: .96rem;
  color: #82532b;
  margin-bottom: 6px;
}
.tip-categories ul {
  display: flex;
  gap: 15px;
  list-style: none;
  padding-left: 0;
}

/***************
  FAQ-LIST
***************/
.faq-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.faq-list li {
  border-left: 3px solid #82532b;
  background: #fff;
  border-radius: 7px;
  padding: 13px 19px;
  margin-bottom: 0;
  transition: box-shadow .14s;
}
.faq-list li:hover {
  box-shadow: 0 6px 18px rgba(96,64,32,0.08);
}
.faq-list h3 {
  font-size: 1.08rem;
  color: #604020;
  margin-bottom: 6px;
}
.faq-list p {
  font-size: 1.02rem;
  color: #45311a;
  margin-bottom: 0;
}

/***************
  FOOTER
***************/
footer {
  background: #fff;
  border-top: 2px solid #F3ECE4;
  margin-top: 40px;
}
footer .container {
  padding-top: 30px;
  padding-bottom: 30px;
}
.footer-nav {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  font-family: 'Montserrat', serif;
  margin-bottom: 16px;
  font-size: 1.04rem;
}
.footer-nav a {
  color: #604020;
  transition: color .18s;
  padding: 5px;
  border-radius: 5px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #B35C1E;
  background: #F3ECE4;
}
.footer-brand {
  margin-bottom: 7px;
}
.footer-brand img {
  height: 36px;
  width: auto;
}
.footer-address {
  color: #82532b;
  font-size: .99rem;
}

/***************
  SHARED FORM & INPUTS
***************/
input[type="search"] {
  border: 2px solid #B35C1E;
  border-radius: 7px;
  padding: 11px 16px;
  font-family: 'Roboto', serif;
  font-size: 1rem;
  width: 98%;
  margin-bottom: 16px;
  background: #fff;
  color: #604020;
  transition: border-color .17s, box-shadow .13s;
}
input[type="search"]:focus {
  outline: none;
  border-color: #82532b;
  box-shadow: 0 2px 12px rgba(179,92,30,.12);
}

/***************
  COOKIE CONSENT BANNER & MODAL
***************/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff7ed;
  color: #604020;
  box-shadow: 0 -4px 22px rgba(96,64,32,0.15);
  z-index: 1800;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 18px 22px;
  font-size: 1rem;
  transition: transform .4s cubic-bezier(.7,.07,.28,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  min-width: 120px;
}
.cookie-banner .cookie-btn {
  background: #B35C1E;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 12px 24px;
  font-family: 'Montserrat', serif;
  font-size: 1.03rem;
  margin-right: 8px;
  margin-bottom: 0;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .14s;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #fff;
  color: #604020;
  border: 1.7px solid #B35C1E;
}
.cookie-banner .cookie-btn.cookie-settings:hover {
  background: #F3ECE4;
  color: #B35C1E;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #604020;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(70,42,13,0.26);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: opacity .27s, visibility .18s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.cookie-modal-content {
  width: 98%;
  max-width: 470px;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -10px 30px rgba(96,64,32,0.22);
  padding: 30px 22px 12px 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-content h3 {
  font-size: 1.2rem;
  font-family: 'Montserrat', serif;
  margin-bottom: 7px;
}
.cookie-modal-content .cookie-close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #604020;
  margin-bottom: 0;
  padding: 6px 7px 6px 0;
  cursor: pointer;
  transition: color .22s;
}
.cookie-modal-content .cookie-close-btn:hover {
  color: #B35C1E;
}
.cookie-categories-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 0;
}
.cookie-category input[type="checkbox"],
.cookie-category input[type="radio"] {
  accent-color: #82532b;
  width: 18px;
  height: 18px;
}
.cookie-modal-content .cookie-btn-row {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/***************
  MICRO-INTERACTIONS
***************/
.button:active,
.cta-primary:active, .cta-secondary:active,
.cookie-btn:active {
  transform: scale(.97);
}
/* Simple fade-in anim for testimonials & modals */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.testimonial-card {
  animation: fadeInUp .7s cubic-bezier(.5,1.7,.61,1) both;
}

/* ==========================================================  
   RESPONSIVE DESIGN
========================================================== */
@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .feature-list, .service-list, .recipes-cards-grid {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .hero{
    border-radius: 0 0 22px 22px;
    padding: 38px 0 24px 0;
    margin-bottom: 40px;
  }
  .hero h1 {
    font-size: 1.85rem;
  }
  h2 { font-size: 1.32rem; }
  .feature-list li, .service-list li, .recipe-card {
    min-width: 160px;
    max-width: 100%;
    padding: 14px 10px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 5px;
  }
  .section {
    margin-bottom: 28px;
    padding: 20px 8px;
  }
  .card-container, .content-grid, .feature-list, .service-list, .recipes-cards-grid {
    gap: 10px;
    flex-direction: column;
  }
  .feature-list li, .service-list li, .recipe-card {
    min-width: 90vw;
    max-width: 99vw;
  }
  .text-image-section, .content-wrapper {
    flex-direction: column !important;
    gap: 13px;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 12px;
  }
  .mobile-menu-toggle {
    top: 8px;
    right: 10px;
    font-size: 2rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 11px;
    font-size: 1rem;
  }
  .footer-brand img {
    height: 30px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.09rem; }
}
@media (max-width: 500px) {
  .container {
    max-width: 100vw;
    padding: 0 3px;
  }
  .section {
    padding: 15px 2px;
  }
  .text-section, .map-location, .business-hours, .contact-info {
    padding: 8px 4px;
  }
  .faq-list li {
    padding: 7px 8px;
    font-size: .99rem;
  }
  .cookie-modal-content {
    padding: 16px 4px 8px 4px;
  }
} 
/* END OF FILE */
