/* ===================================
   CSS RESET & NORMALIZATION
=================================== */
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 {
  height: 100%;
  font-size: 16px;
}
body {
  min-height: 100%;
  line-height: 1.5;
  background: #F6F6F4;
  color: #2c3327;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: background 0.3s;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #366138;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #7a3e2d;
}
ul, ol {
  padding-left: 1.2em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  color: #23272F;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; }
p, li, .text-section, .content-wrapper {
  color: #3c4636;
  font-size: 1rem;
}
/* ===================================
   FONT IMPORTS
=================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* ===================================
   ORGANIC/NATURE COLOR SYSTEM
=================================== */
:root {
  --col-earth-dark: #23272F;
  --col-earth-green: #366138;
  --col-earth-green-light: #e8f5e2;
  --col-earth-brown: #7a3e2d;
  --col-earth-sand: #e6dbce;
  --col-earth-beige: #F6F6F4;
  --col-earth-white: #FAFAFA;
  --col-earth-accent: #E05236;
  --col-earth-shadow: rgba(54,97,56,0.10);
  --col-earth-border: #dae3d4;
  --col-earth-neutral: #c9baa9;
}

/* ===================================
   CONTAINER & LAYOUT FLEXBOX
=================================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: var(--col-earth-white);
  box-shadow: 0 8px 28px var(--col-earth-shadow);
}
/* For section overlays, can add organic leaf SVG/texture at top corners absolutely if needed */

/* ===================================
   HEADER & NAVIGATION
=================================== */
header {
  background: var(--col-earth-white);
  box-shadow: 0 4px 14px var(--col-earth-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #366138;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--col-earth-green-light);
  color: var(--col-earth-brown);
}
.cta-btn.primary {
  background: linear-gradient(90deg, #366138 76%, #7a3e2d 100%);
  color: #FAFAFA;
  font-family: 'Montserrat', sans-serif;
  padding: 12px 30px;
  border-radius: 32px 18px 35px 28px / 22px 36px 20px 35px;
  box-shadow: 0 2px 12px var(--col-earth-shadow);
  border: 0;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  margin-left: 16px;
  transition: background 0.2s, transform 0.2s;
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #7a3e2d;
  color: #FAFAFA;
  transform: translateY(-2px) scale(1.03);
}
.cta-btn {
  background: #e6dbce;
  color: #366138;
  font-family: 'Montserrat', sans-serif;
  padding: 12px 26px;
  border-radius: 28px 10px 32px 22px / 15px 29px 18px 36px;
  box-shadow: 0 1px 8px var(--col-earth-shadow);
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #366138;
  color: #fff;
  transform: scale(1.04);
}
.mobile-menu-toggle {
  display: none;
  background: var(--col-earth-green);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 5px 16px;
  border-radius: 18px 28px 11px 26px;
  cursor: pointer;
  box-shadow: 0 2px 12px var(--col-earth-shadow);
  transition: background 0.2s, color 0.2s;
  z-index: 120;
}
.mobile-menu-toggle:hover {
  background: #7a3e2d;
}

/* =============================
   MOBILE NAVIGATION MENU
============================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--col-earth-white);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.56,-0.01,.29,1);
  box-shadow: 3px 0 24px var(--col-earth-shadow);
  padding: 24px 18px 24px 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #366138;
  cursor: pointer;
  margin-bottom: 18px;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #7a3e2d;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 6px;
}
.mobile-nav a {
  color: #366138;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 0 9px 0;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  width: 100%;
  outline: none;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #e8f5e2;
  color: #7a3e2d;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===================================
   HERO SECTIONS
=================================== */
.hero-section {
  padding: 60px 0 30px 0;
  background: linear-gradient(120deg, #e8f5e2 40%, #f7efe4 105%);
  border-radius: 0 0 44px 44px / 0 0 36px 52px;
  box-shadow: 0 6px 32px var(--col-earth-shadow);
  margin-bottom: 48px;
}
.hero-section .container {
  min-height: 250px;
  align-items: center;
  gap: 0;
}
.hero-section h1 {
  font-size: 2.25rem;
  color: var(--col-earth-green);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hero-section p {
  color: #23272F;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

/* ===================================
   FEATURES & SERVICES (ORGANIC CARDS)
=================================== */
.features-section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: var(--col-earth-beige);
  border-radius: 28px;
  box-shadow: 0 3px 26px var(--col-earth-shadow);
}
.content-wrapper > h2 {
  color: #366138;
  font-size: 2rem;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.feature {
  background: var(--col-earth-white);
  border-radius: 24px 16px 38px 18px / 22px 38px 24px 20px;
  box-shadow: 0 2px 16px var(--col-earth-shadow);
  border: 1px solid var(--col-earth-border);
  flex: 1 1 205px;
  min-width: 200px;
  max-width: 300px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.18s;
}
.feature img {
  height: 44px;
  width: 44px;
  margin-bottom: 5px;
  filter: saturate(0.7) brightness(0.98);
}
.feature h3 {
  font-size: 1.18rem;
  color: #366138;
}
.feature p {
  font-size: 1rem;
  color: #4A5E49;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 6px 32px var(--col-earth-shadow);
  transform: translateY(-2px) scale(1.025);
}

/* Services Card List */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service {
  flex: 1 1 250px;
  min-width: 230px;
  max-width: 340px;
  background: var(--col-earth-white);
  border-radius: 22px 18px 32px 14px / 20px 36px 18px 30px;
  box-shadow: 0 2px 14px var(--col-earth-shadow);
  border: 1px solid var(--col-earth-border);
  padding: 22px 22px 20px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}
.service h3 {
  font-size: 1.13rem;
  color: #366138;
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 0;
}
.service h3 span {
  color: var(--col-earth-neutral);
  font-size: 1rem;
  font-weight: 500;
}
.service p {
  font-size: 1rem;
  color: #425040;
}
.service:hover,
.service:focus-within {
  box-shadow: 0 7px 29px var(--col-earth-shadow);
  transform: translateY(-1px) scale(1.02);
}

/* Blog Post List */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-post {
  flex: 1 1 300px;
  min-width: 220px;
  max-width: 380px;
  background: var(--col-earth-white);
  border-radius: 26px 19px 33px 18px / 22px 34px 22px 25px;
  box-shadow: 0 1.5px 11px var(--col-earth-shadow);
  border: 1px solid var(--col-earth-border);
  padding: 22px 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.12s, transform 0.15s;
}
.blog-post h3 {
  font-size: 1.09rem;
  color: #366138;
  margin-bottom: 6px;
}
.blog-post p {
  font-size: 1rem;
  color: #4A5E49;
}
.blog-post:hover,
.blog-post:focus-within {
  box-shadow: 0 6px 29px var(--col-earth-shadow);
  transform: translateY(-3px) scale(1.01);
}

.blog-categories {
  margin-top: 10px;
  font-size: 1rem;
  color: #366138;
}
.blog-categories span {
  background: var(--col-earth-green-light);
  border-radius: 14px 10px 19px 12px;
  display: inline-block;
  padding: 4px 12px;
  margin: 0 4px 3px 0;
  font-size: 0.97em;
}

/* ===========
   TESTIMONIALS
============== */
.testimonials-section {
  background: var(--col-earth-green-light);
  padding: 40px 0;
  border-radius: 30px;
  box-shadow: 0 2px 21px var(--col-earth-shadow);
  margin-bottom: 60px;
}
.content-wrapper > .testimonial-card {
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 20px;
  background: #fff;
  border-radius: 22px 16px 24px 18px / 20px 26px 22px 17px;
  box-shadow: 0 1.5px 17px var(--col-earth-shadow);
  border: 1px solid var(--col-earth-border);
  min-width: 180px;
  max-width: 520px;
  transition: box-shadow 0.14s, transform 0.16s;
}
.testimonial-card p {
  color: #23272F;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: #366138;
  font-size: 1rem;
  font-weight: 600;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 28px var(--col-earth-shadow);
  transform: scale(1.014);
}

/* CTA Section */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  padding: 34px 20px 42px 20px;
  background: var(--col-earth-beige);
  border-radius: 26px;
  box-shadow: 0 2px 18px var(--col-earth-shadow);
}
.cta-section h2, .cta-section p {
  text-align: center;
}

/* About and Contact sections */
.about-section, .contact-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 17px var(--col-earth-shadow);
}
.company-details, .office-hours {
  margin-bottom: 18px;
  color: #366138;
}

/* Footer ==================*/
footer {
  background: #23272F;
  color: #F6F6F4;
  padding: 0;
  margin: 0;
  position: relative;
}
footer .container {
  padding: 36px 20px 6px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 18px;
}
.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  color: #e6dbce;
  text-decoration: none;
  font-size: 1rem;
  padding: 3px 0;
  border-radius: 5px;
  transition: background 0.17s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--col-earth-green-light);
  color: #23272F;
}
.footer-contact {
  font-size: 0.98rem;
  color: #c9baa9;
}
.footer-contact strong {
  color: #e6dbce;
}
.footer-contact a {
  color: #FAFAFA;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 9px;
}
.footer-social img {
  height: 25px;
  width: 25px;
  filter: saturate(0.85);
  transition: filter 0.2s, transform 0.16s;
}
.footer-social a:hover img, .footer-social a:focus img {
  filter: saturate(1.2) drop-shadow(0 2px 6px var(--col-earth-shadow));
  transform: scale(1.08);
}
.footer-copy {
  text-align: center;
  color: #e6dbce;
  font-size: 0.94rem;
  margin-top: 12px;
  padding-bottom: 10px;
}

/* ================
PRICING TABLE, BRIEF, NOTES
================ */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
  margin-bottom: 18px;
  background: var(--col-earth-white);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: 0 2px 7px var(--col-earth-shadow);
}
thead th {
  padding: 12px 8px;
  color: #366138;
  font-size: 1.07rem;
  background: #e8f5e2;
  text-align: left;
}
tbody td {
  padding: 9px 8px;
  color: #3c4636;
  border-bottom: 1px solid #e6dbce;
  font-size: 1rem;
}
tbody tr:last-child td {
  border-bottom: none;
}
.price-notes {
  margin-top: 17px;
  background: #e8f5e2;
  border-radius: 14px;
  padding: 18px 14px;
  font-size: 1rem;
  color: #23272F;
  box-shadow: 0 2px 15px var(--col-earth-shadow);
}
.price-notes h3 {
  color: #366138;
  font-size: 1.13rem;
}

/* ================================
  ADDITIONAL ORGANIC/NATURE TOUCHES
================================ */
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 0.9em;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  background: linear-gradient(133deg, #366138 70%, #e6dbce 150%);
  border-radius: 10px 7px 14px 6px;
  position: absolute;
  left: 0;
  top: 0.5em;
  transform: translateY(-50%);
}

/* =============
   EXPLORE BLOCK (THANK YOU PAGE)
================ */
.explore-links {
  margin-top: 26px;
  background: var(--col-earth-green-light);
  border-radius: 18px 12px 15px 19px / 10px 19px 16px 22px;
  padding: 18px 20px;
  box-shadow: 0 1px 14px var(--col-earth-shadow);
}
.explore-links p { margin-bottom: 10px; }
.explore-links ul { display: flex; flex-wrap: wrap; gap: 17px; }
.explore-links a {
  background: #e6dbce;
  color: #366138;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.explore-links a:hover, .explore-links a:focus {
  background: #366138;
  color: #fff;
}

/* ================================
   COOKIE CONSENT BANNER & MODAL
================================ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--col-earth-white);
  color: #23272F;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -2px 40px var(--col-earth-shadow);
  border-radius: 26px 26px 0 0 / 16px 16px 0 0;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  transition: transform 0.38s cubic-bezier(.56,-0.01,.29,1), opacity 0.32s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  padding: 10px 22px;
  border-radius: 22px 16px 18px 12px;
  border: 0;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 700;
  background: #e6dbce;
  color: #366138;
  margin-right: 0;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
  box-shadow: 0 1.5px 9px var(--col-earth-shadow);
}
.cookie-btn.accept {
  background: #366138;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #85b97f;
  color: #23272F;
}
.cookie-btn.reject {
  background: #7a3e2d;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #e05236;
  color: #F6F6F4;
}
.cookie-btn.settings {
  background: #e6dbce;
  color: #366138;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #366138;
  color: #fff;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(34,59,36,0.18);
  z-index: 100000;
  display: flex;
  align-items: center; justify-content: center;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 28px 16px 27px 15px;
  max-width: 430px;
  width: 97vw;
  box-shadow: 0 4px 40px var(--col-earth-shadow);
  padding: 28px 22px 22px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popAppears 0.33s cubic-bezier(.51,-0.01,.4,1.12);
}
@keyframes popAppears {
  0% { opacity: 0; transform: scale(0.92) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #23272F;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .cookie-modal-close:hover { color: #366138; }
.cookie-modal h3 {
  font-size: 1.13rem;
  color: #366138;
  margin-bottom: 5px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  background: #e8f5e2;
  border-radius: 8px;
  padding: 8px 13px;
}
.cookie-category input[type=checkbox], .cookie-category input[type=radio] {
  accent-color: #366138;
  width: 20px; height: 20px;
}
.cookie-category label {
  font-weight: 500;
}
.cookie-category .cookie-essential {
  color: #425040;
  font-style: italic;
}

/* ==============
   RESPONSIVE DESIGN
============== */
@media (max-width: 1100px) {
  .container { max-width: 940px; }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .feature-grid, .service-list, .blog-list {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.34rem; }
  .container { padding-left: 10px; padding-right: 10px; }
  .hero-section,
  .features-section,
  .about-section,
  .contact-section,
  .cta-section {
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 18px;
  }
  .feature-grid, .service-list, .blog-list {
    flex-direction: column;
    gap: 14px;
  }
  .feature, .service, .testimonial-card, .blog-post {
    max-width: 100%;
    min-width: 0;
  }
  .footer-nav {
    flex-direction: column;
    gap: 11px;
  }
}
@media (max-width: 540px) {
  .hero-section {
    padding: 35px 0 22px 0;
    border-radius: 12px 12px 26px 26px;
  }
  .footer-social img { height: 20px; width: 20px; }
  .footer-contact { font-size: 0.93rem; }
}

/* Ensure critical flex layouts per requirements */
.card-container {
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===============
 UTILITY CLASSES
================ */
.text-center {
  text-align: center;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }

/* =============================
   TRANSITION EFFECTS & FOCUS
============================= */
button, .cta-btn, .cookie-btn {
  transition: box-shadow 0.14s, background 0.16s, color 0.16s, border 0.16s, transform 0.14s;
  outline: none;
}
button:focus-visible, .cta-btn:focus-visible, .cookie-btn:focus-visible {
  outline: 2px solid #366138;
  outline-offset: 2px;
}

/* ===============
   ORGANIC MICRO-INTERACTIONS
=============== */
.cta-btn, .cta-btn.primary, .cookie-btn, .feature, .service, .blog-post, .testimonial-card, .explore-links a {
  transition: box-shadow 0.16s, background 0.16s, color 0.13s, transform 0.15s;
}

/* ===============
   HIDE ELEMENTS BY DEFAULT FOR JS
=============== */
.mobile-menu, .cookie-modal-overlay, .cookie-consent-banner {
  display: none;
}
.mobile-menu.open, .cookie-modal-overlay.active, .cookie-consent-banner.active {
  display: flex;
}
