/* === CSS RESET & BASE 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 {
  font-size: 16px;
  line-height: 1.5;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  background-color: #FFFFFF;
  color: #225148;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #225148;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.4,0,0.2,1);
}
a:hover, a:focus {
  color: #C15339;
  text-decoration: underline;
}
button, input, select, textarea {
  font: inherit;
}

/* === BRAND COLOR VARIABLES (for fallback support included) === */
:root {
  --primary: #225148;
  --secondary: #F3DDC6;
  --accent: #C15339;
  --bg-main: #FFFFFF;
  --bg-card: #F3DDC6;
  --text-main: #225148;
  --text-dark: #1a2e27;
  --text-light: #FFFFFF;
  --shadow: 0 4px 24px 0 rgba(34, 81, 72, 0.08);
}

/* === TYPOGRAPHY === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
}
.section h2 {
  font-size: 2rem;
}
p, .subheadline, .content-wrapper p {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.125rem;
  color: var(--text-main);
  margin-bottom: 16px;
  line-height: 1.6;
}
strong, b {
  font-weight: 600;
  color: var(--primary);
}

/* === BUTTONS === */
.primary-cta, .secondary-cta, .newsletter-form a, .faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  padding: 0.7em 2.2em;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  transition: background 0.18s cubic-bezier(0.4,0,0.2,1), color 0.18s, box-shadow 0.23s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 2px 8px 0 rgba(34, 81, 72, 0.09);
  outline: none;
}
.primary-cta {
  background: var(--primary);
  color: var(--text-light);
}
.primary-cta:hover, .primary-cta:focus {
  background: var(--accent);
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(193, 83, 57, 0.12);
}
.secondary-cta {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.secondary-cta:hover, .secondary-cta:focus {
  background: var(--primary);
  color: var(--secondary);
}
.newsletter-form a {
  color: var(--accent);
  text-decoration: underline;
}

/* === STRUCTURAL CONTAINERS === */
.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

/* === HEADER === */
header {
  background: var(--bg-main);
  box-shadow: 0 2px 8px 0 rgba(34, 81, 72, 0.07);
  position: sticky;
  top: 0;
  z-index: 99;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  position: relative;
  padding: 4px 0;
}
nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.2s cubic-bezier(0.4,0,0.2,1);
  margin-top: 2px;
}
nav a:hover::after,
nav a:focus::after {
  width: 100%;
}
header a img {
  height: 38px;
  width: auto;
}
.primary-cta {
  margin-left: 20px;
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  padding: 0 10px;
  cursor: pointer;
  transition: color 0.2s cubic-bezier(0.4,0,0.2,1);
  z-index: 120;
}
.mobile-menu-toggle:focus {
  color: var(--accent);
  outline: 2px solid var(--accent);
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.39,.12,.43,1.29);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 32px rgba(34,81,72,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2.6rem;
  margin: 20px 18px 12px 12px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.17s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-left: 36px;
  margin-top: 14px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  padding: 10px 0;
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--accent);
}

/* === HERO SECTIONS === */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  background: var(--secondary);
  border-radius: 0 0 48px 48px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 20px 0;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}
.hero h1, .hero h2 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero .subheadline {
  font-size: 1.3rem;
  color: var(--text-dark);
}

/* === FEATURE/CARD GRID FLEX LAYOUTS === */
.features, .featured-recipes, .blog-posts, .workshop-highlights, .schedule, .team, .about, .newsletter, .services, .faqs, .faq, .share-recipe, .thank-you, .testimonials, .legal, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.feature-grid, .service-list, .team-list, .feature-list, .event-listings, .post-listings, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.feature-grid li, .service-list li, .team-member, .feature-item, .blog-post, .recipe-card, .faq-item, .event-listings li {
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  flex: 1 1 254px;
  margin-bottom: 20px;
  min-width: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.12s;
}
.feature-grid li:hover, .service-list li:hover, .team-member:hover, .blog-post:hover, .recipe-card:hover {
  box-shadow: 0 6px 28px rgba(68,115,101,.17);
  transform: translateY(-3px) scale(1.02);
}
.feature-grid img {
  width: 48px; height: 48px; margin-bottom: 18px;
}
.feature-grid h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-price {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.08rem;
  margin-top: 8px;
}

/* === CARDS/GRID CONTAINERS SPACING === */
.card-container, .recipe-grid, .testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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 {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(34,81,72,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 24px;
  min-width: 220px;
  max-width: 355px;
  border-left: 8px solid var(--primary);
  color: #1a2e27;
  font-size: 1rem;
  transition: box-shadow 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 2px 38px rgba(68,115,101,0.21);
}
.testimonial-card p {
  color: #204e45;
  font-size: 1.04rem;
  margin-bottom: 8px;
}
.testimonial-author {
  color: var(--primary);
  font-weight: bolder;
  letter-spacing: 0.04em;
}
.testimonial-rating, .star-rating {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
}

/* === FORM & FILTERS === */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}
.filter-bar input[type="text"], .filter-bar select {
  border: 2px solid var(--primary);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 1rem;
  min-width: 180px;
  transition: border 0.13s;
  background: #fff;
  color: var(--primary);
}
.filter-bar input[type="text"]:focus, .filter-bar select:focus {
  border-color: var(--accent);
  outline: none;
}

.newsletter-form, .newsletter {
  background: var(--secondary);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(68,115,101,0.08);
  margin-top: 14px;
}
.newsletter-form strong {
  color: var(--accent);
}

/* === BLOG & POSTS === */
.blog-posts h2, .blog-post h3 {
  margin-bottom: 10px;
}
.post-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.blog-post {
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px 19px 18px 19px;
  min-width: 210px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.blog-post a {
  color: var(--accent);
  font-weight: bold;
  font-size: 1.05rem;
  margin-top: 9px;
}
.blog-categories strong, .popular-tags strong {
  display: block;
  margin-bottom: 6px;
}
.popular-tags span {
  display: inline-block;
  background: var(--bg-card);
  border-radius: 8px;
  color: var(--accent);
  font-size: 1rem;
  margin-right: 4px;
  padding: 3px 10px;
  margin-bottom: 2px;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 34px 0 32px 0;
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-menu a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  opacity: 0.95;
  transition: color 0.17s;
}
.footer-menu a:hover {
  color: var(--accent);
}
.brand-slogan {
  font-size: 1.10rem;
  color: var(--secondary);
  opacity: 0.89;
  margin-bottom: 6px;
}
.contact-summary {
  font-size: 1rem;
  color: var(--secondary);
  opacity: 0.88;
  margin-bottom: 8px;
  text-align: center;
}
.contact-summary a {
  color: var(--accent);
  font-weight: 600;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.social-links img {
  width: 32px; height: 32px;
  transition: transform 0.15s;
  cursor: pointer;
}
.social-links img:hover {
  transform: scale(1.13) rotate(-7deg);
}

/* === FAQ & ACCORDION === */
.faq-accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(68,115,101,0.10);
  padding: 18px 20px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: box-shadow 0.12s;
}
.faq-item h3 {
  font-size: 1.19rem;
  margin-bottom: 0;
  color: var(--primary);
}
.faq-content {
  font-size: 1.01rem;
  margin-top: 9px;
  color: #204e45;
  display: none;
}
.faq-item.open .faq-content {
  display: block;
  animation: fadeInAcc 0.23s ease;
}
@keyframes fadeInAcc {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === MISC. COMPONENTS === */
.quick-tags {
  font-size: 0.98rem;
  color: var(--primary);
  background: #e2f1ed;
  border-radius: 12px;
  padding: 4px 13px 4px 9px;
  margin: 0.2rem 0 0.6rem 0;
  opacity: 0.93;
}
.star-rating {
  margin-bottom: 7px;
  letter-spacing: 0.06em;
}

.recipe-card {
  background: var(--bg-card);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow 0.13s, transform 0.09s;
}
.recipe-card:hover {
  box-shadow: 0 5px 24px rgba(193,83,57,0.11);
  transform: translateY(-3px);
}
.recipe-card h3 {
  color: var(--primary);
  font-size: 1.14rem;
}
.recipe-card a {
  margin-top: 10px;
  color: var(--accent);
  font-weight: bold;
  text-decoration: underline;
  font-size: 1.07rem;
}

/* === PROCESS / SCHEDULE / LIST COMPONENTS === */
ol, ul.feature-list, .event-listings {
  list-style: none;
  padding: 0;
}
.process ol {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 0;
  margin-top: 12px;
}
.process li {
  position: relative;
  margin-left: 0;
  padding-left: 2.2em;
  min-height: 24px;
  margin-bottom: 6px;
}
.process li:before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: var(--primary);
  margin-right: 12px;
  position: absolute;
  left: 0;
  top: 2px;
}
.event-listings li {
  border-left: 5px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 10px;
  font-size: 1.1rem;
  color: var(--primary);
}

/* === TEAM MEMBER === */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.team-member {
  flex: 1 1 210px;
  background: var(--bg-card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px 20px;
  min-width: 190px;
  max-width: 265px;
  margin-bottom: 20px;
  text-align: left;
}
.team-member h3 {
  margin-bottom: 7px;
}
.short-bio {
  display: block;
  color: var(--accent);
  font-size: 0.98rem;
  margin-top: 2px;
}

/* === LEGAL PAGE SECTION === */
.legal {
  background: var(--bg-card);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 30px 22px;
  margin-bottom: 40px;
}
.legal a {
  color: var(--accent);
  text-decoration: underline;
}

/* === THANK-YOU SECTION === */
.thank-you {
  min-height: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 34px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--secondary);
  padding: 28px 16px 22px 16px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 -2px 28px rgba(34,81,72,0.14);
  border-radius: 24px 24px 0 0;
  animation: slideUpCookie 0.35s cubic-bezier(.39,.12,.43,1.29);
  font-size: 1rem;
}
@keyframes slideUpCookie {
  from { transform: translateY(100px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 20px;
  border-radius: 28px;
  cursor: pointer;
  border: none;
  font-weight: 700;
  transition: background 0.18s, color 0.17s;
}
.cookie-accept {
  background: var(--accent);
  color: var(--secondary);
  border: 2px solid var(--accent);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--secondary);
  color: var(--accent);
}
.cookie-reject {
  background: var(--secondary);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-settings {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--accent);
  color: var(--secondary);
}

/* === COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 81, 72, 0.58);
  z-index: 3010;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.4,0,0.2,1);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: var(--bg-main);
  color: var(--primary);
  border-radius: 20px;
  padding: 32px 20px 26px 20px;
  min-width: 310px;
  max-width: 94vw;
  box-shadow: 0 2px 28px rgba(68,115,101,0.18);
  animation: modalSlideIn 0.25s cubic-bezier(.39,.12,.43,1.29);
}
@keyframes modalSlideIn {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  color: var(--accent);
  margin-bottom: 12px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  font-size: 1.03rem;
  margin-bottom: 10px;
  gap: 10px;
}
.cookie-modal-content input[type=checkbox] {
  width: 23px;
  height: 23px;
  accent-color: var(--accent);
}
.cookie-modal-content .category {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 3px;
}
.cookie-modal-content .category.essential {
  color: #00836b;
}
.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  position: absolute;
  top: 17px;
  right: 20px;
  cursor: pointer;
  z-index: 5;
}

/* === RESPONSIVE (MOBILE-FIRST, FLEX ONLY!) === */
@media (max-width: 1140px) {
  .container { max-width: 100%; }
}
@media (max-width: 992px) {
  .container { padding: 0 10px; }
  .feature-grid, .service-list, .team-list, .recipe-grid, .post-listings, .testimonial-grid {
    gap: 16px;
  }
  .footer-menu { gap: 14px; }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding-top: 10px; padding-bottom: 10px;
  }
  nav, .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
  .hero .container, .hero .content-wrapper {
    padding: 30px 0 10px 0;
  }
  .feature-grid, .service-list, .team-list, .recipe-grid, .testimonial-grid, .post-listings {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .service-list li, .team-member, .blog-post, .recipe-card, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .event-listings {
    gap: 10px;
  }
  .content-grid, .card-container, .post-listings {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .newsletter-form, .newsletter {
    border-radius: 14px;
    padding: 17px;
  }
  .cookie-modal-content {
    min-width: 95vw;
    padding: 22px 6px 18px 8px;
  }
  .footer-menu {
    flex-direction: column;
    align-items: center;
    gap: 11px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.57rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  section, .section {
    padding: 22px 3px;
  }
  .legal {
    padding: 15px 3px;
  }
}

/* === GEOMETRIC STRUCTURED VISUALS === */
.section, .features, .featured-recipes, .services, .about, .team, .faqs, .faq, .testimonials, .newsletter, .blog-posts, .thank-you, .share-recipe, .contact, .legal {
  background: var(--bg-main);
  border-radius: 28px;
  box-shadow: 0 3px 32px rgba(68,115,101,0.08);
  margin-bottom: 60px;
}
.feature-grid li, .service-list li, .blog-post, .team-member, .recipe-card, .testimonial-card, .event-listings li {
  border: 2.7px solid var(--primary);
  box-shadow: 0 1.5px 9px rgba(68,115,101,0.05);
  border-radius: 18px 6px 22px 12px/16px 20px 24px 8px;
  /* geometric/structured corners */
  position: relative;
}
.feature-grid li:before, .service-list li:before, .blog-post:before {
  content: '';
  display: block;
  width: 22px; height: 22px;
  background: var(--accent);
  position: absolute;
  top: -12px; left: -12px;
  border-radius: 8px;
  z-index: 1;
  opacity: 0.12;
}
.testimonial-card:before {
  content: '';
  position: absolute;
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 17% 75% 38% 48%/51% 29% 70% 51%;
  top: -19px; right: -23px;
  opacity: 0.10;
}
.recipe-card:after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  bottom: -12px; right: -12px;
  background: var(--secondary);
  border-radius: 10px;
  opacity: 0.09;
}
.blog-post:after {
  content: '';
  position: absolute;
  width: 19px; height: 19px;
  bottom: -10px; left: -10px;
  background: var(--accent);
  border-radius: 13px;
  opacity: 0.11;
}

/* === OVERRIDES FOR ACCESSIBILITY === */
.testimonial-card, .testimonial-card p, .testimonial-author {
  color: #1a2e27 !important;
  background: #fff !important;
}

/* === TRANSITIONS AND MICRO-INTERACTIONS === */
.primary-cta, .secondary-cta, .cookie-btn, .footer-menu a, .social-links img {
  transition: background 0.18s, box-shadow 0.17s, color 0.19s, transform 0.13s;
}

/* === UTILITIES === */
.hide {
  display: none !important;
}

/* === END === */
