/* ==== 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #E7F6E1;
  color: #1d4d36;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
}
ol, ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .25s;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button:focus, a:focus, .cta-btn:focus {
  outline: 2px solid #FDB833;
  outline-offset: 2px;
  z-index: 2;
}

/* ==== BRAND COLORS (with fallback for accent) ==== */
:root {
  --primary: #236144;
  --primary-dark: #1d4d36;
  --secondary: #E7F6E1;
  --accent: #FDB833;
  --white: #FFFFFF;
  --black: #111418;
}

/* ==== TYPOGRAPHY ==== */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Montserrat:wght@400;600;800&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 900;
  text-transform: none;
  color: var(--primary-dark);
  line-height: 1.1;
  letter-spacing: .5px;
}
h1 {
  font-size: 2.5rem; /* 40px */
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.375rem; /* 22px */
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p, ul, ol, li, .subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem; /* 16px */
  color: var(--primary-dark);
}
.subheadline {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
}

/* ==== COMMON SPACING PATTERNS ==== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(35,97,68,.08), 0 1.5px 10px #e7f6e19c;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .18s cubic-bezier(.45,.7,.4,1), box-shadow .2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(35,97,68,.16), 0 8px 40px 0 #fdb83308;
  transform: translateY(-6px) scale(1.012);
  z-index: 2;
}
.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;
}
.text-image-section > * {
  flex: 1 1 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px 0 rgba(35,97,68,.10);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 440px;
  transition: box-shadow .19s cubic-bezier(.45,.7,.4,1);
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 #FDB83345;
  transform: translateY(-3px) scale(1.005);
}
.testimonial-card p {
  color: var(--black);
  font-size: 1.08rem;
}
.testimonial-author {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  background: var(--white);
  width: 100%;
  border-bottom: 3px solid var(--primary);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  box-shadow: 0 1px 8px 0 rgba(35,97,68,0.075);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: .4px;
  padding: 6px 4px;
  transition: color .2s, border-bottom .2s;
  border-bottom: 2px solid transparent;
  position: relative;
}
header nav a:hover, header nav a.active {
  color: var(--accent);
  border-bottom: 2.5px solid var(--accent);
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 13px 32px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 4px 16px 0 #fdb83342;
  letter-spacing: .5px;
  transition: background .16s, color .16s, box-shadow .16s, transform .15s;
  cursor: pointer;
  text-align: center;
  margin-left: 32px;
}
.cta-btn:hover, .cta-btn:active {
  background: var(--primary-dark);
  color: #FFF;
  box-shadow: 0 6px 22px 0 #23614442;
  transform: translateY(-2px) scale(1.015);
}

/* ==== BURGER MOBILE NAV ==== */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 17px #FDB83362;
  position: fixed;
  top: 22px;
  right: 18px;
  z-index: 120;
  border: none;
  cursor: pointer;
  transition: background .18s, box-shadow .24s;
}
.mobile-menu-toggle:hover {
  background: var(--primary);
  color: #FFF;
  box-shadow: 0 4px 20px #23614458;
}
/* Overlay menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--secondary);
  z-index: 200;
  transform: translateX(-105%);
  transition: transform .42s cubic-bezier(.71,.01,.45,1);
  box-shadow: 4px 0 24px #2361441f;
  padding-top: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--primary-dark);
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 201;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background .15s;
}
.mobile-menu-close:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
.mobile-nav {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  padding-left: 32px;
}
.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  padding: 8px 0;
  border-radius: 7px;
  width: 100%;
  transition: background .17s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:active {
  color: var(--accent);
  background: #23614412;
}

/* ==== HERO & LANDING ==== */
.hero, .articles-hero, .services-hero, .contact-hero, .thank-you {
  background: linear-gradient(113deg, var(--secondary) 85%, var(--accent) 100%);
  padding: 64px 0 48px 0;
}
.hero .container, .articles-hero .container, .services-hero .container, .contact-hero .container, .thank-you .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper,
.articles-hero .content-wrapper,
.services-hero .content-wrapper,
.contact-hero .content-wrapper,
.thank-you .content-wrapper {
  text-align: center;
  align-items: center;
  gap: 20px;
}
.hero h1, .articles-hero h1, .services-hero h1, .contact-hero h1, .thank-you h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 900;
}
.hero .cta-btn, .articles-hero .cta-btn, .services-hero .cta-btn, .thank-you .cta-btn {
  margin-top: 14px;
}

/* ==== FEATURE & ARTICLE BLOCKS ==== */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 14px #2361440e;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
  max-width: 330px;
  min-width: 210px;
  transition: box-shadow .16s, transform .18s;
}
.feature img {
  height: 42px;
  margin-bottom: 8px;
}
.feature:hover {
  box-shadow: 0 6px 28px #FDB83330;
  transform: translateY(-2px) scale(1.03);
  z-index: 1;
}
.articles-preview, .articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.articles-preview article, .articles-grid article {
  background: var(--white);
  border-radius: 13px;
  box-shadow: 0 2px 10px #23614410;
  padding: 24px 18px 18px 18px;
  min-width: 240px;
  max-width: 350px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  transition: box-shadow .17s, transform .14s;
}
.articles-preview article:hover, .articles-grid article:hover {
  box-shadow: 0 8px 20px #FDB83344;
  transform: scale(1.016) translateY(-2px);
  z-index: 1;
}
.articles-preview article h3, .articles-grid article h3 {
  font-size: 1.19rem;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: var(--primary);
}
.articles-preview article a, .articles-grid article a {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  margin-top: 7px;
  text-decoration: underline 2px var(--accent);
  transition: color .17s, text-decoration-color .13s;
}
.articles-preview article a:hover, .articles-grid article a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.pagination-controls {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.pagination-controls button {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .17s;
}
.pagination-controls button:disabled {
  background: #b1c8bb;
  color: #f2f2f2;
  cursor: not-allowed;
}
.pagination-controls button:not(:disabled):hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* ==== SERVICE CARDS ==== */
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-card, .service-detail {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 14px #23614410;
  padding: 30px 24px;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-bottom: 12px;
  border-left: 7px solid var(--accent);
  transition: box-shadow .16s, transform .14s;
}
.service-card:hover, .service-detail:hover {
  box-shadow: 0 7px 26px #FDB83338;
  transform: scale(1.017) translateY(-4px);
}
.price {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-top: 2px;
  font-size: 1.10rem;
}

/* ==== ATELIERS/VISITES CARDS ==== */
.workshop-cards, .visite-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 16px;
}
.workshop-card, .visite-card  {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 14px #2361440d;
  padding: 28px 22px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 200px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
  border-left: 7px solid var(--accent);
  transition: box-shadow .16s, transform .15s;
}
.workshop-card:hover, .visite-card:hover {
  box-shadow: 0 7px 26px #FDB83335;
  transform: scale(1.017) translateY(-3px);
}

/* ==== SEARCH BAR & FILTER ==== */
.search-bar {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 0 auto 18px auto;
  max-width: 430px;
  align-items: center;
  justify-content: center;
}
.search-bar input {
  padding: 11px 14px;
  border-radius: 10px;
  border: 2px solid var(--primary);
  background: var(--white);
  font-size: 1rem;
  transition: border-color .16s;
}
.search-bar input:focus {
  border-color: var(--accent);
}
.search-bar button {
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.search-bar button:hover {
  background: var(--accent);
  color: var(--primary-dark);
}
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
.filter-tags button {
  background: var(--primary);
  color: var(--white);
  border-radius: 7px;
  border: none;
  padding: 7px 20px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .16s;
}
.filter-tags button:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* ==== INFO BLOCKS & GENERAL CARDS ==== */
.info-block {
  background: #fafcf9;
  border-left: 5px solid var(--primary);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 0 0 14px 0;
  text-align: left;
  color: var(--primary-dark);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 14px;
}
.text-section ul {
  padding-left: 17px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.text-section li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-dark);
}

/* ==== FOOTER ==== */
footer {
  background: var(--primary-dark);
  padding: 44px 0 32px 0;
  color: var(--secondary);
  width: 100%;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  transition: color .15s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
footer nav a:hover {
  color: var(--white);
  border-bottom: 2px solid var(--white);
}
.footer-contact {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .98rem;
  color: var(--white);
  opacity: 0.96;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}
.footer-contact p{
  color: var(--white);
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1001;
  background: var(--white);
  box-shadow: 0 -8px 24px #1d4d3624;
  border-top: 3.5px solid var(--accent);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 30px 18px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  animation: slideUpBanner .5s cubic-bezier(.67, .07, .69, .95);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner__message {
  flex: 1 1 55%;
  color: var(--primary-dark);
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 18px;
  padding: 10px 25px;
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  transition: background .14s, color .13s;
  margin-right: 0;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary-dark);
}
.cookie-btn.accept:hover {
  background: var(--primary-dark);
  color: var(--accent);
}
.cookie-btn.reject {
  background: #ececec;
  color: var(--primary-dark);
}
.cookie-btn.reject:hover {
  background: #ffc690;
}
.cookie-btn.settings {
  background: var(--primary-dark);
  color: var(--accent);
  border: 2px solid var(--accent);
}
.cookie-btn.settings:hover {
  background: var(--accent);
  color: var(--primary-dark);
}

/* COOKIES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-55%) scale(0.98);
  min-width: 325px;
  max-width: 420px;
  width: 90vw;
  z-index: 1050;
  background: var(--white);
  border-radius: 21px;
  box-shadow: 0 10px 84px #1d4d3633;
  display: none;
  flex-direction: column;
  gap: 22px;
  padding: 36px 28px 27px 28px;
  animation: fadeInModal .5s cubic-bezier(.71, .01, .45, 1);
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeInModal {
  0% { opacity: 0; transform: translate(-50%,-60%) scale(.93); }
  100% { opacity: 1; transform: translate(-50%,-55%) scale(1); }
}
.cookie-modal__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
.cookie-modal__header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}
.cookie-modal__close {
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--primary);
  cursor: pointer;
  margin-left: 14px;
  border-radius: 50%;
  transition: background .13s;
}
.cookie-modal__close:hover {
  background: #eeeeee96;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
  border-radius: 50%;
}
.cookie-category .always-on {
  background: var(--primary-dark);
  color: var(--white);
  font-weight: 800;
  font-size: 0.97rem;
  border-radius: 7px;
  padding: 3px 12px;
  margin-left: 7px;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
}

/* ==== RESPONSIVE / MOBILE ==== */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
  .features-grid, .service-cards, .service-list, .articles-preview, .articles-grid, .workshop-cards, .visite-cards {
    gap: 18px;
  }
}
@media (max-width: 920px) {
  .container {
    max-width: 90vw;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  header nav, footer nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 850px) {
  .features-grid, .service-cards, .service-list, .articles-preview, .articles-grid, .workshop-cards, .visite-cards {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container {
    padding: 0 8px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }

  header .container {
    flex-direction: row;
    gap: 10px;
    padding: 11px 8px 11px 8px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 11px 22px;
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  /* Hide desktop nav, show mobile toggle */
  .mobile-menu {
    font-size: 1.08rem;
  }
  .hero, .articles-hero, .services-hero, .contact-hero, .thank-you {
    padding: 36px 0 24px 0;
  }
  .hero .content-wrapper, .articles-hero .content-wrapper,
  .services-hero .content-wrapper, .contact-hero .content-wrapper, .thank-you .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 600px) {
  .content-grid, .features-grid, .service-cards, .service-list, .articles-preview, .articles-grid, .workshop-cards, .visite-cards {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-slider, .testimonial-card {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
  }
  .hero h1, .articles-hero h1, .services-hero h1, .contact-hero h1, .thank-you h1 {
    font-size: 1.2rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 7vw 12px 7vw;
    gap: 12px;
    font-size: 0.96rem;
  }
}
@media (max-width: 430px) {
  .cookie-banner {
    font-size: .94rem;
    padding: 8px 4vw 8px 4vw;
    gap: 9px;
  }
  .cookie-modal {
    padding: 18px 8px 14px 8px;
  }
}

@media (max-width: 648px) {
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  footer .container {
    flex-direction: column;
    gap: 13px;
  }
  .info-block {
    font-size: 0.96rem;
    padding: 13px 9px;
  }
}

/* ==== UTILITY CLASSES ==== */
.hide {
  display: none!important;
}
.show {
  display: block!important;
}

/* ==== MICRO-INTERACTIONS/ANIMATIONS ==== */
.cta-btn, .mobile-menu-toggle, .service-card, .workshop-card, .feature, .card, .testimonial-card, .service-detail, .visite-card {
  transition: box-shadow .18s cubic-bezier(.45,.7,.4,1), transform .22s cubic-bezier(.45,.7,.4,1), background .16s;
}

/* ==== SLIDER FOR TESTIMONIALS (if slider JS is used, otherwise vertical column by default) ==== */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
@media (max-width: 900px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card {
    min-width: 210px;
  }
}

/* ==== END ==== */
