/* ===================
   CSS 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { font-size: 16px; }
body { line-height: 1.5; background: #F5F3F0; color: #32516A; min-height: 100vh; }

*, *:before, *:after { box-sizing: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
input, button, textarea, select { font: inherit; }

/* ===================
   TYPOGRAPHY
   =================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');
body {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #32516A;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #32516A;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; line-height: 1.12; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.18; margin-bottom: 18px; }
h3 { font-size: 1.375rem; line-height: 1.22; margin-bottom: 14px; }
h4 { font-size: 1.25rem;; margin-bottom: 12px; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }
p, li, ul, ol { font-size: 1rem; margin-bottom: 12px; }
.subheadline {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  color: #198C5A;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

/* ===================
   LAYOUT, CONTAINER, SECTION
   =================== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  max-width: 700px;
}

/* ===================
   HEADER & NAV
   =================== */
header {
  background: #fff;
  box-shadow: 0 4px 18px rgba(50,81,106,0.08);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1030;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  padding: 8px 4px;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
  color: #32516A;
}
.main-nav a:hover, .main-nav a:focus {
  color: #198C5A;
  border-bottom: 2px solid #67C095;
}
.cta.primary {
  background: #67C095;
  color: #fff !important;
  border-radius: 12px 4px 12px 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 10px 28px;
  margin-left: 20px;
  box-shadow: 0 3px 16px rgba(25,140,90,0.10);
  border: none;
  transition: background 0.25s, transform 0.15s;
  outline: none;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #32516A;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.cta {
  background: transparent;
  color: #67C095;
  border: 2px solid #67C095;
  border-radius: 12px 4px 12px 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 20px;
  transition: background 0.2s, color 0.2s;
  margin-top: 14px;
  display: inline-block;
}
.cta:hover, .cta:focus {
  background: #67C095;
  color: #fff;
  border-color: #32516A;
}

/* ===========
  MOBILE MENU
  =========== */
.mobile-menu-toggle {
  display: none;
  background: #67C095;
  border-radius: 8px;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 5px 12px;
  margin-left: 22px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 1202;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #198C5A;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F5F3F0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 30px;
  width: 100vw;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 2px 0 25px rgba(50,81,106,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #32516A;
  font-size: 2rem;
  margin-bottom: 32px;
  margin-left: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: #198C5A; }
.mobile-nav {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.mobile-nav a {
  font-size: 1.45rem;
  color: #32516A;
  font-weight: 600;
  padding: 14px 5px;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #67C095;
  color: #fff;
}

/* Hide navs on mobile, show burger */
@media (max-width: 991px) {
  .main-nav, .cta.primary { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* =====================
   MAIN LAYOUT SECTIONS
   ===================== */
/* Applied to all pages via .section, .container, .content-wrapper */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/**** INDEX & FEATURED GRIDS ****/
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 30px 0 16px 0;
  justify-content: flex-start;
}
.feature-grid li {
  background: #fff;
  border-radius: 12px 4px 12px 4px;
  padding: 28px 20px 20px 20px;
  min-width: 220px;
  min-height: 244px;
  flex: 1 1 220px;
  box-shadow: 0 2px 10px rgba(50,81,106,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0;
  transition: box-shadow 0.16s, transform 0.15s;
  border: 2.5px solid #67C09510;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  box-shadow: 0 8px 28px rgba(50,81,106,0.13), 0 1.5px 0 #198C5A44 inset;
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 8px 2px 8px 2px;
  background: #F5F3F0;
  box-shadow: 0 1.5px 6px #67C09511;
}

/**** SERVICE CARD STYLES ****/
.service-cards, .workshops-list-grid, .benefits-cards, .workshop-meditation-overview,
.popular-posts-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 16px 8px 16px 8px;
  box-shadow: 0 2.5px 12px rgba(50,81,106,0.06);
  border: 2.5px solid #32516A07;
  padding: 28px 24px 22px 24px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  min-width: 220px;
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow 0.15s, border-color 0.18s, transform 0.11s;
}
.service-card:hover, .service-card:focus-within {
  border-color: #67C09535;
  box-shadow: 0 8px 35px #32516A13, 0 1.5px 0 #198C5A22 inset;
  transform: translateY(-2px) scale(1.02);
}
.service-card .price {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #198C5A;
  margin-top: auto;
  font-size: 1.09rem;
  margin-bottom: 0;
}

/**** WORKSHOP LIST, BENEFITS & BLOG GRIDS ****/
.workshops-list-grid > div, .benefits-cards > div, .workshop-meditation-overview > div,
.popular-posts-grid > div {
  background: #fff;
  border-radius: 14px 6px 14px 6px;
  box-shadow: 0 2.5px 12px #32516A11;
  border: 2.5px solid #67C0950C;
  padding: 25px 20px 17px 18px;
  flex: 1 1 210px;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  transition: box-shadow 0.12s, border-color 0.14s, transform 0.11s;
}
.workshops-list-grid > div:hover, .benefits-cards > div:hover, .workshop-meditation-overview > div:hover,
.popular-posts-grid > div:hover {
  border-color: #198C5A22;
  box-shadow: 0 6px 16px #32516A15, 0 1.5px 0 #198C5A22 inset;
  transform: translateY(-2px) scale(1.02);
}

.latest-posts-list, .post-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.latest-posts-list li, .post-list li {
  border-left: 4px solid #67C095;
  background: #fff;
  padding: 10px 16px;
  border-radius: 8px 4px 8px 4px;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: box-shadow 0.12s;
}
.latest-posts-list li a, .post-list li a {
  color: #32516A;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.18s;
}
.latest-posts-list li:hover, .post-list li:hover {
  box-shadow: 0 2px 16px #198C5A1b;
}
.latest-posts-list li a:hover, .post-list li a:hover {
  color: #198C5A;
}

.filter-categories {
  margin-top: 10px;
  color: #32516A;
  font-weight: 600;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.filter-categories a {
  color: #198C5A;
  font-weight: 700;
  padding: 0 5px;
  transition: color 0.15s;
}
.filter-categories a:hover { color: #32516A; }

.popular-posts-grid > div a {
  display: block;
  color: #32516A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  transition: color 0.16s;
}
.popular-posts-grid > div a:hover { color: #198C5A; }

/**** TESTIMONIALS ****/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 16px 2px 16px 2px;
  border-left: 6px solid #67C095;
  padding: 25px 22px 18px 28px;
  box-shadow: 0 2.5px 20px rgba(50,81,106, 0.10);
  font-size: 1.05rem;
  color: #32516A;
  max-width: 360px;
  min-width: 220px;
  min-height: 120px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, border-color 0.16s, transform 0.13s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  border-color: #198C5A;
  box-shadow: 0 8px 36px #32516A1B, 0 1.5px 0 #198C5A33 inset;
  transform: translateY(-3px) scale(1.03);
}
.testimonial-card b { color: #198C5A; letter-spacing: 0.06em; }
.testimonial-card p { color: #32516A; font-size: 1.1rem; margin-bottom: 7px; }

/**** FOOTER ****/
footer {
  background: #32516A;
  color: #fff;
  padding: 32px 0 0 0;
  margin-top: 60px;
}
footer .container {
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid #67C09522;
}
.footer-menu {
  display: flex;
  gap: 20px;
}
.footer-menu a, .contact-info a {
  color: #67C095;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 2px 4px;
  transition: color 0.14s;
}
.footer-menu a:hover, .contact-info a:hover{ color: #fff; }
.contact-info {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #f5f3f0dd;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  flex: 2 1 350px;
}
.social-links { display: flex; gap: 16px; align-items: center; }
.social-links a img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 1px 8px #67C09511;
  transition: background 0.14s, transform 0.13s;
}
.social-links a:hover img { background: #67C095; transform: scale(1.06); }

/* =========================
   TABLES (SERVICE PRICE LIST)
   ========================= */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0 20px 0;
  background: #fff;
  border-radius: 14px 6px 14px 6px;
  box-shadow: 0 2.5px 12px #32516A14;
  overflow: hidden;
}
.price-table th,
.price-table td {
  padding: 15px 16px;
  text-align: left;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
}
.price-table th {
  background: #67C095;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.07em;
  border-bottom: 3px solid #32516A13;
}
.price-table tr {
  border-bottom: 1.5px solid #32516A13;
}
.price-table tr:last-child { border-bottom: none; }
.price-table td {
  background: #fff;
  color: #32516A;
}
.price-table tr:nth-child(even) td { background: #F5F3F0; }

/****************************/
/*    COOKIE CONSENT BANNER  */
/****************************/
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(100%);
  background: #32516A;
  color: #fff;
  width: 98vw;
  max-width: 480px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -6px 20px #32516A33;
  z-index: 9999;
  padding: 28px 26px 20px 26px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(.74,0,.24,1), opacity 0.32s;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  font-size: 0.99rem;
  color: #fff;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  background: #67C095;
  color: #fff;
  border: none;
  border-radius: 9px 4px 9px 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 20px;
  cursor: pointer;
  transition: background 0.16s, transform 0.13s;
  margin-top: 0;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner .cookie-btn:hover, .cookie-banner button:focus {
  background: #198C5A;
  transform: scale(1.04);
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: #67C095;
  border: 2px solid #67C095;
}
.cookie-banner .cookie-btn.settings:hover { background: #67C095; color: #fff; }

/* Cookie preference modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 98vw;
  max-width: 420px;
  min-width: 260px;
  background: #fff;
  color: #32516A;
  border-radius: 18px 8px 18px 8px;
  box-shadow: 0 12px 44px #32516A55;
  z-index: 10020;
  transform: translate(-50%, -50%) scale(0.88);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.67,0,.21,1), opacity 0.23s;
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  margin: 0 0 12px 0;
  font-size: 1.25rem;
}
.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 12px 0 12px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.02rem;
  line-height: 1.35;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #67C095;
  font-size: 1.2rem;
  width: 18px;
  height: 18px;
  margin-right: 5px;
}
.cookie-modal .always-on {
  color: #198C5A; 
  font-weight: 700;
  font-size: 1rem;
  margin-left: 4px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 8px 18px;
}
.cookie-modal .cookie-btn.cancel {
  background: transparent;
  border: 2px solid #32516A;
  color: #32516A;
}
.cookie-modal .cookie-btn.cancel:hover {
  background: #F5F3F0;
}

/********************/
/*   RESPONSIVE     */
/********************/
@media (max-width: 991px) {
  .container {
    max-width: 97vw;
    padding: 0 6vw;
  }
  footer .content-wrapper, .content-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.3rem; }
  .logo img {
    width: 120px;
    height: auto;
  }
  header .container {
    height: auto;
    flex-direction: row;
    gap: 6vw;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .feature-grid, .service-cards, .workshops-list-grid, .benefits-cards,
  .workshop-meditation-overview, .testimonial-slider, .content-grid, .popular-posts-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .service-card, .workshops-list-grid > div, .benefits-cards > div,
  .workshop-meditation-overview > div, .testimonial-card, .popular-posts-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .section {
    padding: 30px 4vw;
    margin-bottom: 38px;
  }
  .footer-menu, .content-wrapper {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .container { padding: 0 10px; }
  .cookie-banner, .cookie-modal {
    max-width: 100vw;
    padding-left: 7vw;
    padding-right: 7vw;
  }
}
/* ===================
   MISC / UTILS
   =================== */
.service-notes { color: #198C5A; font-size: 0.99rem; margin-top: 8px; }
.contact-summary ul { margin-bottom: 12px; }
.contact-summary li, .direct-email p { font-size: 1.05rem; }
.direct-email a { color: #67C095; text-decoration: underline; }
.direct-email a:hover { color: #32516A; text-decoration: none; }
ul, li { margin-bottom: 9px; }
section ul:not(.feature-grid,.latest-posts-list,.post-list) {
  list-style: square inside;
  padding-left: 22px;
  color: #67C095;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
section ul li {
  color: #32516A;
  font-size: 1rem;
  margin-bottom: 8px;
}

/* ==== CUSTOM GEOMETRIC ACCENTS ==== */
.feature-grid li, .service-card, .testimonial-card, .workshops-list-grid > div, .benefits-cards > div,
.workshop-meditation-overview > div, .popular-posts-grid > div {
  position: relative;
  overflow: visible;
}
.feature-grid li:before, .service-card:before, .testimonial-card:before,
.workshops-list-grid > div:before, .benefits-cards > div:before,
.workshop-meditation-overview > div:before, .popular-posts-grid > div:before {
  content: "";
  position: absolute;
  top: -16px; right: -16px;
  width: 32px; height: 32px;
  background: #67C09522;
  border-radius: 6px 15px 15px 6px;
  z-index: 0;
  pointer-events:none;
}
@media (max-width: 540px) {
  .feature-grid li:before, .service-card:before, .testimonial-card:before,
  .workshops-list-grid > div:before, .benefits-cards > div:before,
  .workshop-meditation-overview > div:before, .popular-posts-grid > div:before {
    width: 18px;
    height: 18px;
    top: -8px; right: -8px;
  }
}

/* ===============
   GEOMETRIC BUTTONS
   =============== */
button, .cta, .cta.primary, .cookie-btn {
  border-radius: 12px 4px 12px 4px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-width: 0;
  cursor: pointer;
}
button:active { outline: none; }

/* ===============
   VISUAL HIERARCHY SPACING
   =============== */
.section + .section {
  margin-top: 0;
}
.section .container {
  padding-left: 0;
  padding-right: 0;
}
.content-wrapper > h2 { margin-bottom: 12px; margin-top: 0; }
.content-wrapper > h3 { margin-bottom: 8px; margin-top: 0; }

/*******************************************/
/*           ADDITIONAL ACCESSIBILITY      */
/*******************************************/
:focus {
  outline: 2.5px solid #198C5A;
  outline-offset: 1.5px;
}

/* Utility classes for spacing */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }

/***********
  Animations
***********/
@keyframes slideInLeft {
  from { transform: translateX(-60%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to   {opacity: 1; transform: none;}
}
.animate-slide-in {
  animation: slideInLeft 0.62s cubic-bezier(.77,0,.18,1) 1;
}
.animate-fade-up {
  animation: fadeInUp 0.69s cubic-bezier(.61,0,.27,1) 1;
}

/******************/
/*  OVERLAP CHECK */
/******************/
/* Prevent overlap by minimum spacing between cards/sections */
.card, .service-card, .testimonial-card, 
.workshops-list-grid > div, .benefits-cards > div, .feature-grid li, .popular-posts-grid > div {
  margin-bottom: 20px;
}
.content-grid, .card-container, .feature-grid, .service-cards, .testimonial-slider, .workshops-list-grid,
.benefits-cards, .workshop-meditation-overview, .popular-posts-grid {
  gap: 24px;
}

/****************/
/*  NO GRID/NO COLS (RULE ENFORCEMENT)
****************/
/* grid, columns, column-count, break-inside, etc are not used anywhere */