/* -----------------------------------------------------
   CSS RESET & BASELINE NORMALIZATION (mobile first)
----------------------------------------------------- */
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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #3C3326;
  background: #FAF7F2;
  font-size: 16px;
  letter-spacing: 0.01em;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #73553A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #4A766E;
  outline: none;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
}
*:focus {
  outline: 2px solid #4A766E;
  outline-offset: 2px;
}

/* -----------------------------------------------------
   BRAND COLORS & FONTS (nature_organic palette)
----------------------------------------------------- */
:root {
  --color-primary: #73553A;
  --color-secondary: #C2925B;
  --color-accent: #F5EBDD;
  --color-green: #4A766E;
  --color-bg: #FAF7F2;
  --color-bg-card: #F8F4EF;
  --color-shadow: rgba(115,85,58,0.07);
  --color-text: #3C3326;
  --color-text-muted: #6B6360;
  --color-border: #E3D9CA;
  --color-light-green: #C8DFC2;
}

@font-face {
  font-family: 'Merriweather';
  font-style: normal;
  font-weight: 700;
  src: local('Merriweather'), url('https://fonts.googleapis.com/css?family=Merriweather:700&display=swap');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), url('https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap');
}

/* Typography scale */
h1,
.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.18;
}
h2 {
  font-family: 'Merriweather', serif;
  color: var(--color-green);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.22;
}
h3 {
  font-family: 'Merriweather', serif;
  color: var(--color-secondary);
  font-size: 1.17rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.subheadline {
  color: var(--color-green);
  font-size: 1.16rem;
  font-weight: 400;
  margin-bottom: 24px;
}
p {
  color: var(--color-text);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.6;
}
strong {
  color: var(--color-secondary);
  font-weight: 700;
}
.customer {
  display: block;
  color: var(--color-green);
  margin-top: 8px;
  font-size: 1rem;
  font-style: italic;
}

/* -----------------------------------------------------
   LAYOUT CONTAINERS & STRUCTURAL ELEMENTS
----------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: transparent;
  border-radius: 28px;
  box-shadow: none;
  padding: 0;
  margin-bottom: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-card);
  border-radius: 28px;
  box-shadow: 0 4px 32px var(--color-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Organic shapes and organic section deco (optional simple leaf shape) */
.section::before {
  content: '';
  display: none;
}

@media (min-width: 768px) {
  .section {
    padding: 48px 56px;
    gap: 24px;
  }
}

/* -----------------------------------------------------
   HEADER & NAVIGATION
----------------------------------------------------- */
header {
  background: var(--color-accent);
  border-bottom: 2px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-right: 24px;
}
header nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 20px;
  padding: 8px 16px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-light-green);
  color: var(--color-green);
}
.cta-button {
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  border-radius: 24px;
  border: none;
  padding: 10px 28px;
  font-size: 1.11rem;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  display: inline-block;
  margin-left: 16px;
  letter-spacing: 0.02em;
}
.cta-button:hover, .cta-button:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(76, 133, 111,0.14);
}

/* Responsive header navigation */
@media (max-width: 1023px) {
  header .container nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
}

/* -----------------------------------------------------
   HERO SECTION
----------------------------------------------------- */
.hero {
  background: linear-gradient(90deg, #F5EBDD 0%, #E5DDD2 100%);
  position: relative;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  margin-bottom: 48px;
  box-shadow: 0 10px 40px var(--color-shadow);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 44px;
  padding-bottom: 44px;
  gap: 0px;
}
.hero .content-wrapper {
  background: transparent;
  padding: 0;
}
.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
}
.hero .subheadline {
  margin-bottom: 32px;
}
.hero .cta-button {
  margin-left: 0;
}

@media (min-width: 768px) {
  .hero .container {
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 3.2rem;
  }
}

/* -----------------------------------------------------
   FLEX LAYOUT COMPONENTS (MANDATORY CLASSES)
----------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-bg-card);
  border-radius: 22px;
  box-shadow: 0 2px 16px var(--color-shadow);
  padding: 28px 22px;
  flex: 1 1 280px;
  min-width: 270px;
  max-width: 360px;
  /* no absolute for main elements, only for optional deco */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(76, 133, 111,0.17);
  transform: translateY(-3px) scale(1.015);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.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;
  min-width: 230px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(76,133,111,0.08);
  margin-bottom: 24px;
  border-left: 6px solid var(--color-light-green);
}
.testimonial-card p {
  color: #222;
  font-size: 1rem;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Special: recipe categories flex */
.recipe-categories {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 12px 0;
}
.recipe-categories > div {
  flex: 1 1 210px;
  background: var(--color-light-green);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(87,131,99,0.07);
  padding: 20px 18px;
  min-width: 180px;
}

/* -----------------------------------------------------
   BUTTONS & FORMS
----------------------------------------------------- */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  padding: 10px 14px;
  border-radius: 13px;
  border: 1.5px solid var(--color-border);
  background: #fff;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 16px;
  transition: border 0.18s;
}
input[disabled] {
  background: #eee;
  color: #aaa;
}
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.category-filters button {
  padding: 7px 18px;
  background: var(--color-light-green);
  color: var(--color-primary);
  border: none;
  border-radius: 18px;
  font-size: 1em;
  font-weight: 600;
  transition: background .16s;
  box-shadow: 0 1px 8px var(--color-shadow);
}
.category-filters button:disabled {
  filter: grayscale(0.5);
  background: #e1e6e1;
  color: #9a978f;
  cursor: not-allowed;
}
.category-filters button:hover:not(:disabled),
.category-filters button:focus:not(:disabled) {
  background: var(--color-green);
  color: #fff;
}

/* Special highlight for service price */
.service-price {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 2px 10px;
  border-radius: 12px;
  margin-left: 9px;
  margin-right: 2px;
  vertical-align: middle;
}

/* Social links */
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.social-links a {
  display: flex;
  align-items: center;
  border-radius: 12px;
  background: var(--color-light-green);
  padding: 8px;
  transition: background 0.2s, box-shadow 0.14s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--color-green);
}
.social-links img {
  width: 24px;
  height: 24px;
}

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
footer {
  background: var(--color-accent);
  border-top: 2px solid var(--color-border);
  padding: 32px 0;
  margin-top: 36px;
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--color-primary);
  border-radius: 14px;
  padding: 6px 12px;
  transition: background 0.18s;
}
footer nav a:hover {
  background: var(--color-light-green);
}
footer p {
  color: #60544A;
  font-size: 0.97rem;
}

/* -----------------------------------------------------
   RESPONSIVE LAYOUTS & FLEXBOX RULES
----------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero .container {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 36px;
    gap: 9px;
    border-radius: 17px;
  }
  .card-container, .content-grid, .recipe-categories {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}

/* EXTRA: ensure no overlap between cards and all section margin */
.section, .testimonial-card, .card {
  margin-bottom: 24px;
}
.card:last-child, .testimonial-card:last-child {
  margin-bottom: 0;
}

/* -----------------------------------------------------
   MOBILE MENU
----------------------------------------------------- */
.mobile-menu-toggle {
  display: flex;
  position: fixed;
  top: 19px;
  right: 22px;
  z-index: 200;
  font-size: 2.3rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: var(--color-green);
  color: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(76,133,111,0.13);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, transform 0.15s;
}
.mobile-menu-toggle:active {
  background: var(--color-secondary);
  color: var(--color-primary);
}
@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f8f4efEE;
  box-shadow: 0 4px 24px rgba(76,133,111,0.23);
  z-index: 500;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.75,.45,.16,1.23);
}
.mobile-menu.open {
  transform: translateX(0vw);
}
.mobile-menu-close {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: none;
  border-radius: 18px;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 510;
  box-shadow: 0 2px 14px var(--color-shadow);
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-green);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 80px 34px 34px 34px;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.17rem;
  color: var(--color-primary);
  border-radius: 16px;
  padding: 10px 0 10px 10px;
  width: 100%;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-light-green);
  color: var(--color-green);
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* -----------------------------------------------------
   COOKIE CONSENT BANNER AND MODAL
----------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #efeada;
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 20px 22px 20px;
  box-shadow: 0 -2px 24px rgba(115, 85, 58, 0.08);
  z-index: 9999;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.82,-0.02,.17,.91), opacity 0.13s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 6px;
}
.cookie-banner button {
  background: var(--color-green);
  color: #fff;
  border-radius: 19px;
  border: none;
  padding: 7px 24px;
  font-size: 1.01rem;
  font-weight: 600;
  margin-right: 6px;
  box-shadow: 0 1px 6px rgba(76, 133, 111, 0.08);
  transition: background 0.17s, color 0.17s, transform 0.14s;
}
.cookie-banner button:last-child {
  margin-right: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .cookie-settings {
  background: var(--color-accent);
  color: var(--color-green);
  border: 1.5px solid var(--color-light-green);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--color-green);
  color: #fff;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: var(--color-primary);
  border-radius: 20px;
  box-shadow: 0 8px 48px rgba(76, 133, 111,0.22);
  width: 91vw;
  max-width: 410px;
  padding: 32px 24px 26px 24px;
  z-index: 10000;
  transition: opacity 0.22s, transform 0.28s cubic-bezier(.81,.1,.29,1.19);
  display: flex;
  flex-direction: column;
  gap: 22px;
  opacity: 1;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-44%) scale(0.97);
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: var(--color-green);
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1.5px solid var(--color-border);
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 40px;
  height: 24px;
  background: #E3E8DD;
  border-radius: 14px;
  position: relative;
  transition: background 0.14s;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--color-green);
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s cubic-bezier(.7,0,.33,1.1);
}
.cookie-modal .cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal .toggle-label {
  font-size: 1rem;
  color: var(--color-text);
  user-select: none;
}
.cookie-modal .category-desc {
  font-size: 0.93rem;
  color: var(--color-text-muted);
  margin-left: 2px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal button {
  padding: 7px 20px;
  border: none;
  border-radius: 15px;
  background: var(--color-green);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal button.reject {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-modal button.reject:hover, .cookie-modal button.reject:focus {
  background: var(--color-green);
  color: #fff;
}

/* -----------------------------------------------------
   MISCELLANEOUS & UTILITY
----------------------------------------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: var(--color-accent);
}
::-webkit-scrollbar-thumb {
  background: #D2C7B4;
  border-radius: 6px;
}

.section ul, .section ol {
  margin-bottom: 4px;
}

/* Optional: organic decorative corner on hero/section (example only) */
.section.deco-leaf::before {
  content: '';
  position: absolute;
  right: 18px;
  top: 16px;
  width: 38px;
  height: 38px;
  background: url('../assets/leaf-corner.svg') no-repeat center center/contain;
  opacity: 0.27;
  pointer-events: none;
}

/* Hide elements if necessary */
[hidden] { display: none !important; }

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