/* RESET & 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;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #F4F9F4;
  color: #2c2c2c;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  /* playful bg dots pattern */
  background-image: radial-gradient(circle at 25% 20%, #CCAA4D 0.7%, transparent 0.7%),
    radial-gradient(circle at 80% 80%, #86E7A5 0.7%, transparent 0.7%),
    radial-gradient(circle at 65% 15%, #59DCD3 0.7%, transparent 0.7%);
  background-size: 300px 300px, 360px 360px, 250px 250px;
  background-repeat: no-repeat;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #1B704F;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #AD8700;
  outline: none;
}
ul, ol {
  list-style: none;
}
::-webkit-input-placeholder { color: #A1A1A1; }
::-moz-placeholder { color: #A1A1A1; }
:-ms-input-placeholder { color: #A1A1A1; }
::placeholder { color: #A1A1A1; }


/* BRAND COLOR PALETTE */
:root {
  --primary: #1B704F;
  --primary-dark: #155C41;
  --secondary: #F4F9F4;
  --white: #fff;
  --accent: #CCAA4D;
  --accent-dark: #AD8700;
  --active: #59DCD3;
  --danger: #E43D40;
  --gray: #e9efea;
  --text: #23352b;
  --text-dark: #153322;
  --shadow: rgba(39, 78, 62, 0.09);
}

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


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  line-height: 1.15;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 10px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p, .subtitle, ul, ol, blockquote, li, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}
.subtitle {
  font-size: 1.15rem;
  color: var(--primary-dark);
  font-weight: 600;
  margin-bottom: 18px;
}
blockquote {
  background: var(--gray);
  border-left: 4px solid var(--accent);
  margin: 16px 0;
  padding: 16px 20px;
  font-style: italic;
  color: var(--primary-dark);
  border-radius: 15px;
  box-shadow: 0 3px 10px 0 var(--shadow);
}
strong, b {
  font-weight: 700;
  color: var(--primary-dark);
}


/* FLEXBOX SPACING PATTERNS (MANDATED) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 var(--shadow);
  padding: 20px;
  min-width: 250px;
  flex: 1 1 250px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03) rotate(-1deg);
  box-shadow: 0 7px 32px 0 rgba(39,78,62,0.18);
}
.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: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 2px 13px 0 var(--shadow);
  margin-bottom: 24px;
  margin-top: 24px;
  border: 2px solid var(--accent);
  min-width: 220px;
  max-width: 525px;
  width: 100%;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* CONTAINER STRUCTURE */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}


/* HEADER & MAIN NAV */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 90;
  box-shadow: 0 2px 15px -2px var(--shadow);
  min-height: 68px;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8px 10px 8px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  min-height: 60px;
  gap: 16px;
}
.main-nav a img {
  height: 48px;
}
.main-nav ul {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 0 0 0 12px;
}
.main-nav ul li a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 7px 13px;
  border-radius: 12px;
  transition: background .18s, color .18s, box-shadow .18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus, .main-nav ul li.active a {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 15px -2px var(--shadow);
  outline: none;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  margin-left: 22px;
  border-radius: 17px;
  font-size: 1.09rem;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 var(--shadow);
  text-align: center;
  transition: background 0.18s, transform .15s, box-shadow .15s;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--active);
  color: var(--primary-dark);
  transform: translateY(-2px) scale(1.06) rotate(-1deg);
  box-shadow: 0 7px 25px 0 rgba(39,78,62,0.17);
  outline: none;
}


/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  border: none;
  font-size: 2rem;
  color: var(--white);
  padding: 9px 18px;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.18s, box-shadow .15s;
  margin-left: 10px;
  position: relative;
  z-index: 103;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--accent);
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  right: -100vw;
  width: 90vw;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  z-index: 140;
  padding: 36px 20px 24px 24px;
  box-shadow: -2px 0 18px 3px var(--shadow);
  transform: translateX(0);
  transition: right 0.35s cubic-bezier(.8,.2,0,1), box-shadow 0.2s;
}
.mobile-menu.open {
  right: 0;
  transition: right 0.35s cubic-bezier(.8,.2,0,1);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--danger);
  border: none;
  color: var(--white);
  font-size: 2rem;
  padding: 2px 13px 2px 13px;
  margin-bottom: 22px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 151;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary-dark);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 700;
  padding: 9px 0px;
  border-radius: 12px;
  width: 100%;
  display: block;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--white);
  outline: none;
}

@media (max-width: 1024px) {
  .main-nav ul {
    gap: 16px;
  }
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 10px;
  }
  .cta-btn {margin-left:10px;}
}
@media (max-width: 800px) {
  .main-nav ul {gap: 7px;}
  .main-nav .cta-btn {display: none;}
}
@media (max-width: 728px) {
  .main-nav ul {display: none;}
  .main-nav .cta-btn {display: none;}
  .mobile-menu-toggle {display: block;}
}

/* Overlay for when menu is open (not in HTML, but for UX): */
body.menu-open::after {
  content: '';
  position: fixed;
  left: 0;top: 0;right: 0;bottom: 0;
  background: rgba(27,112,79,0.19);
  z-index: 139;
  pointer-events: auto;
  animation: fadeIn .4s;
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}


/* HERO & SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
section:first-of-type {
  margin-top: 14px;
}


/* FEATURE GRIDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 12px;
}
.feature-grid > div {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 var(--shadow);
  padding: 26px 18px 23px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.18s, box-shadow .18s, background .12s;
  border-left: 6px solid var(--accent);
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  cursor: pointer;
}
.feature-grid > div:hover {
  background: #FDF6E3;
  box-shadow: 0 7px 25px 0 rgba(204,170,77,0.13);
  transform: translateY(-4px) scale(1.02) rotate(-1.5deg);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gray);
  padding: 5px;
  margin-bottom: 3px;
}
.price, .feature-grid span, .feature-grid > div span {
  font-weight: 700;
  color: var(--accent-dark);
  margin-top: auto;
  margin-bottom: 0;
  font-size: 1.07rem;
}


/* SERVICE/USP LISTS */
.service-list,
.method-shortlist, .team-list, .recipe-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0 20px 0;
  align-items: flex-start;
}
.service-list li, .method-shortlist li, .team-list > div, .recipe-list > div, .faq-list li {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 1px 8px 0 var(--shadow);
  padding: 18px 16px;
  flex: 1 1 205px;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 180px;
}
.service-list li img,
.team-list img {
  width: 28px;
  height: 28px;
  margin-right: 7px;
}
.team-list {
  gap: 24px;
}
/* Recipes */
.recipe-list {
  gap: 24px;
}
.recipe-list > div {
  flex: 1 1 220px;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

/**** Article Blog List ****/
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.article-list article {
  background: var(--white);
  border-radius: 21px;
  box-shadow: 0 2px 13px 0 var(--shadow);
  padding: 24px 24px 20px 24px;
  flex: 1 1 270px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
}
.article-list article .read-more {
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: underline dotted;
  transition: color 0.14s;
  margin-top: 6px;
  display: inline-block;
}
.article-list article .read-more:hover,
.article-list article .read-more:focus {
  color: var(--active);
}

/**** Blog Category ****/
.categories {
  margin: 10px 0 0 0;
  font-size: .98rem;
  color: var(--primary-dark);
}

/**** Blog Featured Post ****/
.featured-post {
  background: #FDF6E3;
  border-left: 5px solid var(--accent-dark);
  padding: 16px 18px;
  border-radius: 13px;
  margin-top: 20px;
  box-shadow: 0 2px 9px var(--shadow);
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
}

/**** Infoboxes ****/
.infoboxes {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.infoboxes > div {
  background: #E4FAED;
  color: var(--primary-dark);
  border-radius: 11px;
  padding: 12px 19px;
  box-shadow: 0 1px 8px var(--shadow);
  font-weight: 600;
  font-size: 1rem;
}
.infoboxes > div strong {
  color: var(--accent-dark);
  margin-right:.5ch;
}

/**** Learning Outcome, Schedule ****/
.learning-outcomes,
.schedule-overview,
.format-overview,
.recipe-categories,
.qualifications,
.contact-note,
.directions_brief,
.parking_info,
.opening_hours {
  background: #F4F9F4;
  border-left: 4px solid var(--primary);
  padding: 13px 18px;
  border-radius: 12px;
  margin-top: 18px;
  margin-bottom: 14px;
  font-size: .96rem;
  color:var(--primary-dark);
  box-shadow: 0 1px 8px 0 var(--shadow);
}

/**** Recipe Categories ****/
.recipe-categories span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--accent-dark);
  font-weight: 700;
}

/**** Contact Info etc ****/
.contact_info ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 13px 0;
}
.contact_info img {
  width: 21px; height: 21px; margin-right: 6px;
  vertical-align: middle;
}
.contact_info a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.13s;
}
.contact_info a:hover, .contact_info a:focus {
  color: var(--accent);
  outline: none;
}

/**** Contact Panels ****/
.address_block, .phone_email, .opening_hours, .map_embed {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 var(--shadow);
  padding: 20px 18px;
  margin-bottom: 18px;
}
.map_embed img { vertical-align: middle; margin-right: 5px; }

/**** Text Section in USP etc. ****/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: transparent;
}
.text-section ul {
  gap: 14px;
}

/**** Schedule Overview ****/
.schedule-overview ul {
  gap: 9px;
}


/**** FAQ LIST ****/
.faq-list {
  flex-direction: column;
}
.faq-list li h3 {
  margin-bottom: 4px;
  font-size: 1.12rem;
  color: var(--primary);
}

/**** Contact Note ****/
.contact-note {
  background: #e6fff9;
  font-size: .99rem;
}

/**** Testimonials ****/
.star-rating {
  font-size: 1.13rem;
  color: #FDAC26;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 2px;
}
.testimonial-card p {
  color: #222;
  font-weight: 400;
  font-size: 1.05rem;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--accent-dark);
}

/**** Modal-Style Legal Section ****/
.legal-section {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 2px 19px 0 var(--shadow);
  padding: 34px 20px;
  max-width: 820px;
  margin: 0 auto;
  margin-bottom: 40px;
  word-break: break-word;
}


/**** Footer ****/
footer {
  margin-top: 50px;
  background: var(--primary);
  color: var(--white);
  font-size: .98rem;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 38px 18px 8px 18px;
  border-bottom: 1.5px solid #227859;
}
.footer-top img {
  width: 46px;
}
.footer-top ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-top ul li a {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.13s;
  border-radius: 8px;
  padding: 4px 8px;
}
.footer-top ul li a:hover, .footer-top ul li a:focus {
  color: var(--accent);
  background: rgba(255,255,255,0.12);
  outline: none;
}
.footer-bottom {
  background: var(--primary-dark);
  color: #cae2d6;
  padding: 15px 18px;
  font-size: .95rem;
  text-align: center;
  box-shadow: 0 -1px 9px 0 var(--shadow);
}
.footer-bottom p {
  margin-bottom: 7px;
}


/* PLAYFUL / DYNAMIC EFFECTS: Animations */
.feature-grid > div,
.card,
.testimonial-card,
.article-list article,
.service-list li {
  animation: popAppear 0.85s cubic-bezier(.78,.1,.27,1) both;
}
@keyframes popAppear {
  0% {transform:scale(.84) translateY(20px);opacity:0;}
  100% {transform:scale(1) translateY(0); opacity:1;}
}
.cta-btn, .main-nav ul li a, .mobile-nav a {
  animation: btnWave .45s cubic-bezier(.53,.12,.13,1) both;
  animation-delay:.2s;
}
@keyframes btnWave {
  0%{transform:scale(.8) rotate(-7deg);opacity:0.2;}
  85%{transform:scale(1.07) rotate(2.6deg);}
  100%{transform:scale(1) rotate(0);opacity:1;}
}


/* PLAYFUL FONTS & EFFECTS */
h1, h2, h3 {
  letter-spacing: 1px;
  text-shadow: 0px 2px 1px rgba(204,170,77,0.04);
}
@media (min-width:1000px){
  h1 {font-size:3.1rem;}
  h2 {font-size:2.4rem;}
  .cta-btn {font-size:1.17rem;}
}


/*********** COOKIE CONSENT BANNER ***********/
.cookie-consent-banner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 -3px 18px var(--shadow);
  z-index: 2200;
  padding: 20px 16px 18px 16px;
  font-size: 1rem;
  border-radius: 17px 17px 0 0;
  animation: slideUpBanner 0.5s cubic-bezier(.57,-0.01,.45,1.11);
}
@keyframes slideUpBanner {
  0% {transform:translateY(100%); opacity:0;}
  100% {transform:translateY(0); opacity:1;}
}
.cookie-consent-banner strong {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-right:.5ch;
}
.cookie-consent-banner .cookie-btn {
  background: var(--white);
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 13px;
  padding: 9px 21px;
  margin-right: 12px;
  margin-bottom: 4px;
  cursor: pointer;
  box-shadow: 0 1px 9px var(--shadow);
  transition: background .15s, color .14s, transform .13s;
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  background: var(--primary-dark);
  color: var(--white);
  outline:none;
}
.cookie-consent-banner .cookie-btn.reject {
  background: var(--danger);
  color: var(--white);
  font-weight: 700;
}

/***** COOKIE PREFERENCE MODAL *****/
.cookie-modal {
  display: none;
  flex-direction: column;
  position: fixed;
  z-index: 2250;
  left: 0; top: 0; right: 0; bottom: 0;
  align-items: center;
  justify-content: center;
  background: rgba(45, 68, 53, 0.24);
  animation: cookieFadeIn .35s;
}
.cookie-modal.active {
  display: flex;
}
@keyframes cookieFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 7px 38px 5px var(--shadow);
  padding: 39px 28px 27px 28px;
  width: 96vw;
  max-width: 420px;
  color: var(--primary-dark);
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: cookiePop .5s cubic-bezier(.11,.83,.6,1.23);
}
@keyframes cookiePop {
  0%{transform:scale(.7);opacity:0;}
  85%{transform:scale(1.05);}
  100%{transform:scale(1); opacity:1;}
}
.cookie-modal-content h3 {
  color: var(--primary);
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  padding: 8px 0;
}
.cookie-category input[type="checkbox"] {
  width: 22px; height:22px;
  accent-color: var(--accent-dark);
}
.cookie-modal-content .cookie-modal-btns {
  display: flex;
  gap: 15px;
  margin-top: 13px;
}
.cookie-modal-content .cookie-modal-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 9px 22px;
  border-radius: 13px;
  border: none;
  font-weight: 700;
  font-size: 1.03rem;
  cursor: pointer;
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 1px 10px var(--shadow);
  transition: background .14s, color .14s;
}
.cookie-modal-content .cookie-modal-btns button:hover,
.cookie-modal-content .cookie-modal-btns button:focus {
  background: var(--primary);
  color: var(--white);
  outline: none;
}

/************ PLAYFUL DECORATIVE EFFECTS **************/
.cta-btn::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  background: var(--active);
  border-radius: 50%;
  width: 11px;
  height: 11px;
  vertical-align: middle;
  opacity: .7;
  animation: bounceDot 1.2s 0.23s infinite ease-in-out alternate;
}
@keyframes bounceDot {
  0% { transform: scale(.8) translateY(0);}
  80% { transform: scale(1.18) translateY(-1.5px);}
  100% { transform: scale(1.22) translateY(-3px);}
}

/main-nav a img, .footer-top img {
  filter: drop-shadow(0px 2px 4px rgba(60,120,80,.09));
}

/******** RESPONSIVE BREAKPOINTS ********/
@media (max-width: 1100px){
  .container { max-width: 96vw; }
}
@media (max-width:900px){
  .feature-grid {gap: 16px;}
  .service-list, .method-shortlist, .team-list, .recipe-list, .faq-list { gap:12px;}
  .card-container, .content-grid {gap:13px;}
  .content-wrapper {gap:15px;}
}
@media (max-width: 650px) {
  section, .section {
    padding: 22px 6px;
    margin-bottom: 32px;
  }
  .content-wrapper {gap:10px;}
  .feature-grid > div, .service-list li, .card {
    min-width: 90vw;
    padding: 18px 10px 18px 12px;
  }
  .faq-list li {padding: 12px 8px;}
  .testimonial-card {padding: 12px 5px; max-width:100vw;}
  .recipe-list > div, .team-list > div {min-width:90vw;}
}
@media (max-width: 768px) {
  .container {padding: 0 7px;}
  .footer-top {flex-direction:column; align-items:flex-start; gap:9px;}
  .footer-top ul {gap:8px;}
  .legal-section {padding: 22px 7px;}
  .contact_info ul {gap:9px;}
  .content-grid, .card-container, .service-list, .method-shortlist, .team-list, .recipe-list, .faq-list, .feature-grid {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
  }
  .text-image-section {flex-direction: column; gap:13px;}
  .mobile-menu {width:100vw;max-width:none;}
}

/****** Utilities ******/
.portrait-small {width: 80px; border-radius: 16px; box-shadow:0 2px 6px var(--shadow);margin:14px 0;}

/* Remove unintended border/color from anchor images */
a img {border:none;background:none;}

/**** Hide unnecessary scrollbars in mobile menu ****/
.mobile-menu::-webkit-scrollbar { display: none; }
.mobile-menu { -ms-overflow-style: none; scrollbar-width: none; }

/****** Misc ******/
::-webkit-scrollbar {width:9px;background:#F4F9F4;}
::-webkit-scrollbar-thumb{background:var(--gray);border-radius:6px;}

/***** Focus ring for accessibility *****/
:focus {
  outline: 2px solid var(--active);
  outline-offset: 2px;
}

/***** Z-Index guard for overlays *****/
body.menu-open {
  overflow:hidden;
}

/* End of CSS */
