/* --- CSS RESET & NORMALIZE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', 'Georgia', serif;
  color: #202624;
  background: #F2F1ED;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #202624;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #86A69D;
  outline-offset: 3px;
}
ul, ol {
  padding-left: 1.25em;
}
ul li, ol li {
  margin-bottom: 0.6em;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  color: #202624;
  letter-spacing: 0.01em;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.18;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, .text-section p {
  font-family: 'Roboto', 'Georgia', serif;
  font-size: 1.05rem;
  color: #202624;
  margin-bottom: 1.1em;
}
strong {
  font-weight: 700;
  color: #202624;
}
em {
  font-style: italic;
}

/* --- CONTAINER & LAYOUT --- */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(32,38,36,0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 26px 8px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 7px;
  }
}

/* --- HEADER --- */
header {
  background: #fff;
  border-bottom: 1px solid #ECECEC;
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 101;
  box-shadow: 0 3px 16px rgba(32,38,36,0.05);
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 20px;
}
.logo {
  display: flex;
  align-items: center;
  height: 52px;
  margin-right: 12px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-family: 'Montserrat', 'Georgia', serif;
}
.main-nav a {
  font-size: 1rem;
  color: #202624;
  padding: 8px 0;
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.24s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #86A69D;
  border-bottom: 2px solid #86A69D;
}
/* CTA PRIMARY BUTTON in NAV */
.main-nav .cta-primary {
  background: #202624;
  color: #fff !important;
  border-radius: 26px;
  padding: 7px 24px;
  margin-left: 4px;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 12px rgba(32,38,36,0.07);
  transition: background 0.22s, color 0.2s, box-shadow 0.21s;
  border-bottom: 0 !important;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #86A69D;
  color: #202624 !important;
  box-shadow: 0 2px 18px rgba(134,166,157,0.08);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: #F2F1ED;
  border: none;
  font-size: 2rem;
  color: #202624;
  padding: 8px 10px;
  border-radius: 6px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 121;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ecebe7;
  color: #86A69D;
}

@media (max-width: 968px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #F2F1ED;
  box-shadow: 0 0 60px rgba(32,38,36,0.14);
  overflow-y: auto;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.44s cubic-bezier(.6,0,.15,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  pointer-events: inherit;
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.41s cubic-bezier(.6,0,.15,1), opacity 0.17s;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  margin: 26px 22px 5px 0;
  color: #202624;
  cursor: pointer;
  transition: color 0.17s;
  padding: 0 2px;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #86A69D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin: 0 0 28px 0;
  padding: 30px 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.13rem;
  color: #202624;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #86A69D;
  border-bottom: 2px solid #86A69D;
}
@media (max-width: 480px) {
  .mobile-nav {
    padding: 18px 13px;
    gap: 18px;
  }
  .mobile-menu-close {
    margin: 18px 10px 0 0;
  }
}

/* --- HERO & CTA SECTION --- */
.hero, .cta-hero {
  background: #F2F1ED;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  text-align: center;
  padding: 52px 0 32px 0;
}
@media (max-width: 768px) {
  .hero, .cta-hero {
    min-height: 180px;
    padding: 32px 0 24px 0;
  }
}
.hero .content-wrapper, .cta-hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}

/* --- FLEXBOX SPACING & ALIGNMENT PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(32,38,36,0.07);
  padding: 24px 18px;
  transition: box-shadow 0.2s, transform 0.22s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 4px 18px rgba(32,38,36,0.15);
  transform: translateY(-3px) scale(1.013);
  z-index: 10;
}
.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;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(32,38,36,0.07);
  margin-bottom: 20px;
  flex-direction: column;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1.06rem;
  color: #202624;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 10px;
  border-left: 4px solid #86A69D;
  padding-left: 13px;
  background: transparent;
}
.testimonial-card p {
  font-size: 1rem;
  color: #202624;
  align-self: flex-end;
  margin: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(32,38,36,0.06);
  padding: 22px 16px;
}

/* --- SERVICE CARDS --- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-cards > div {
  flex: 1 1 240px;
  min-width: 210px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(32,38,36,0.08);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: box-shadow 0.2s, transform 0.17s;
}
.service-cards > div:hover {
  box-shadow: 0 6px 18px rgba(32,38,36,0.09);
  transform: translateY(-2px) scale(1.011);
}
.service-cards img {
  height: 38px;
  margin-bottom: 18px;
}
.service-cards h2, .service-cards h3 {
  font-size: 1.22rem;
  text-align: center;
  margin-bottom: 12px;
}
.service-cards p {
  font-size: 1rem;
  color: #202624;
  margin-bottom: 13px;
  text-align: center;
}
.price {
  font-family: 'Montserrat', serif;
  color: #86A69D;
  font-weight: 700;
  font-size: 1.06rem;
}
@media (max-width: 900px) {
  .service-cards {
    gap: 14px;
  }
  .service-cards > div {
    min-width: 170px;
    padding: 18px 6px 15px 6px;
  }
}
@media (max-width: 620px) {
  .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .service-cards > div {
    align-items: flex-start;
  }
}

/* --- GENERAL FLEX UTILITIES --- */
.flex-row-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.gap-20 { gap: 20px; }

/* --- FEATURES LIST (INDEX/ABOUT) ---*/
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  list-style: none;
  justify-content: center;
  margin-top: 18px;
}
.features ul li {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px rgba(32,38,36,0.07);
  padding: 22px 18px 12px 18px;
  min-width: 160px;
  flex: 1 1 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.features ul img {
  margin-bottom: 12px;
  height: 32px;
}
@media (max-width: 600px) {
  .features ul {
    flex-direction: column;
    gap: 14px;
  }
  .features ul li {
    min-width: 110px;
    padding: 15px 9px 10px 9px;
  }
}

/* --- HIGHLIGHTS (INDEX) --- */
.highlights ul {
  margin-bottom: 20px;
}
.highlights ul li {
  margin-bottom: 12px;
  font-size: 1.08rem;
  padding: 0 0 0 7px;
}
.highlights .cta-secondary {
  margin-top: 10px;
}

/* --- CATEGORY GRID (ARTICLES) --- */
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 16px;
  justify-content: space-between;
}
.category-grid > div {
  flex: 1 1 215px;
  min-width: 150px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(32,38,36,0.08);
  padding: 28px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.21s;
}
.category-grid > div:hover {
  box-shadow: 0 5px 14px rgba(32,38,36,0.08);
  transform: translateY(-2px) scale(1.008);
}
.category-grid img {
  height: 30px;
  margin-bottom: 15px;
}
@media (max-width: 700px) {
  .category-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- ARTICLE LIST --- */
.articles-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.articles-list li {
  background: #fff;
  border-radius: 8px;
  padding: 12px 13px 11px 13px;
  font-size: 1.08rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 5px rgba(32,38,36,0.05);
  transition: box-shadow 0.12s, background 0.21s;
}
.articles-list li:hover {
  background: #ECECEC;
  box-shadow: 0 4px 10px rgba(32,38,36,0.07);
}
.articles-list a {
  color: #202624;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  transition: color 0.2s;
}
.articles-list a:hover,
.articles-list a:focus {
  color: #86A69D;
}
.articles-list span {
  color: #86A69D;
  font-size: 0.98rem;
  margin-left: 15px;
}

/* --- SEARCH BAR --- */
.search-bar {
  margin: 14px 0 18px 0;
  display: flex;
  align-items: center;
}
.search-bar input[type="text"] {
  font-family: inherit;
  font-size: 0.99rem;
  padding: 9px 16px;
  border: 1.2px solid #ddd;
  border-radius: 21px;
  background: #fff;
  width: 100%;
  transition: border 0.16s, box-shadow 0.18s;
  outline: none;
  color: #202624;
}
.search-bar input[type="text"]:focus {
  border: 1.2px solid #86A69D;
  box-shadow: 0 1px 7px rgba(134,166,157,0.08);
}

/* --- FILTER --- */
.articles-filter {
  margin: 13px 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #202624;
  font-size: 0.98rem;
  font-family: 'Montserrat', serif;
}
.articles-filter strong {
  margin-right: 7px;
  color: #86A69D;
}
.articles-filter span {
  background: #ECECEC;
  border-radius: 6px;
  padding: 2px 8px 0 8px;
  margin-right: 5px;
}

/* --- WORKSHOP SCHEDULE (ATELIERS) --- */
.workshops-schedule-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 18px;
}
.workshops-schedule-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(32,38,36,0.08);
  padding: 22px 15px 18px 15px;
  min-width: 190px;
  flex: 1 1 255px;
  display: flex;
  flex-direction: column;
}
.workshops-schedule-list h2 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.workshops-schedule-list span {
  color: #86A69D;
  font-family: 'Montserrat', serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .workshops-schedule-list {
    flex-direction: column;
    gap: 15px;
  }
}

/* --- USER EXPERIENCE PREVIEWS / TESTIMONIALS --- */
.user-experiences-preview {
  margin-bottom: 18px;
}
.user-experiences-preview p {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 8px rgba(32,38,36,0.04);
  padding: 13px 14px 11px 18px;
  margin-bottom: 10px;
  color: #202624;
  font-style: italic;
  line-height: 1.45;
}
.user-experiences-preview span {
  color: #86A69D;
}

/* --- CONTACT DETAILS --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.contact-details p img {
  margin-right: 7px;
  vertical-align: middle;
  height: 20px;
}
.contact-details p {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}

/* --- CTA BUTTONS --- */
.cta-primary, .cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  border-radius: 27px;
  padding: 10px 36px;
  font-size: 1.19rem;
  letter-spacing: 0.015em;
  border: none;
  cursor: pointer;
  transition: background 0.23s, color 0.18s, box-shadow 0.16s, transform 0.24s;
  margin-right: 8px;
  margin-bottom: 0.5em;
  box-shadow: 0 2px 16px rgba(32,38,36,0.06);
  text-align: center;
}
.cta-primary {
  color: #fff;
  background: #202624;
}
.cta-primary:hover, .cta-primary:focus {
  background: #86A69D;
  color: #202624;
  transform: translateY(-2px) scale(1.025);
}
.cta-secondary {
  color: #202624;
  background: #86A69D22;
  border: 1.8px solid #86A69D;
}
.cta-secondary:hover, .cta-secondary:focus {
  color: #fff;
  background: #86A69D;
  transform: translateY(-2px) scale(1.018);
}

/* --- NEWSLETTER --- */
.newsletter_signup, .newsletter-signup {
  background: #ECECEC;
  border-radius: 18px;
  text-align: center;
  margin: 40px 0 40px 0;
  padding: 35px 16px;
}

/* --- TEXT SECTION --- */
.text-section {
  margin: 0 0 24px 0;
}
.text-section ul {
  margin-top: 11px;
}
.text-section ul li {
  margin-bottom: 0.7em;
}

/* --- FOOTER --- */
footer {
  background: #202624;
  color: #fff;
  padding: 46px 0 34px 0;
  margin-top: 60px;
  font-family: 'Roboto', serif;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer-logo img {
  height: 54px;
  margin-bottom: 2px;
}
.brand-tagline {
  font-family: 'Montserrat', serif;
  color: #ECECEC;
  font-size: 1.09rem;
  text-align: center;
  margin-bottom: 3px;
  line-height: 1.3;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  justify-content: center;
  margin-bottom: 9px;
}
.footer-nav a {
  color: #ECECEC;
  font-size: 1.01rem;
  font-family: 'Roboto', serif;
  transition: color 0.15s, border-bottom 0.12s;
  border-bottom: 1.3px solid transparent;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #86A69D;
  border-bottom: 1.3px solid #86A69D;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-social a img{
  height: 24px;
  opacity: 0.84;
  transition: opacity 0.14s, filter 0.14s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  opacity: 1;
  filter: brightness(1.22) drop-shadow(0 1px 5px #86A69D66);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  font-size: 0.98rem;
  color: #ECECEC;
}
.footer-contact span img {
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
@media (max-width: 600px) {
  footer .container {
    gap: 18px;
    padding: 0 9px;
  }
  .footer-nav {
    gap: 9px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 8px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #202624;
  box-shadow: 0 -4px 28px rgba(32,38,36,0.10);
  border-top: 2px solid #ECECEC;
  padding: 26px 19px 21px 19px;
  z-index: 3000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: 'Roboto', serif;
  font-size: 1.01rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 0.19s, transform 0.39s cubic-bezier(.6,0,.15,0.96);
  border-radius: 20px 20px 0 0;
}
.cookie-banner.active {
  pointer-events: inherit;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-left: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  border: none;
  border-radius: 23px;
  padding: 8px 24px;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(32,38,36,0.06);
  transition: background 0.15s, color 0.15s, transform 0.17s;
}
.cookie-banner .cookie-accept {
  background: #86A69D;
  color: #fff;
  font-weight: 600;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus
{ background: #202624; color: #fff; transform: scale(1.05); }
.cookie-banner .cookie-reject {
  background: #ECECEC;
  color: #202624;
  font-weight: 600;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus
{ color: #fff; background: #86A69D; transform: scale(1.06); }
.cookie-banner .cookie-settings {
  background: #fff;
  color: #86A69D;
  border: 1.1px solid #86A69D;
  font-weight: 500;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #86A69D;
  color: #fff; transform: scale(1.06);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 22px 5px 12px 5px;
    font-size: 0.96rem;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    margin-left: 0;
    gap: 7px;
    width: 100%;
  }
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,38,36, 0.28);
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(32,38,36,0.20);
  padding: 38px 34px 28px 34px;
  max-width: 410px;
  width: 92vw;
  font-family: 'Roboto', serif;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  animation: fadein-modal 0.4s cubic-bezier(.63,0,.23,1);
}
@keyframes fadein-modal {
  0% { transform: scale(0.9) translateY(32px); opacity: 0.1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', 'Georgia', serif;
  color: #202624;
}
.cookie-modal .cookie-category {
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1.1px solid #ECECEC;
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-modal .cookie-switch {
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal .cookie-category label {
  font-size: 1.04rem;
  font-family: 'Roboto', serif;
  color: #202624;
  margin-right: 3px;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ECECEC;
  border-radius: 13px;
  transition: background 0.23s;
}
.cookie-modal .switch input:checked + .slider {
  background: #86A69D;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.19s;
  box-shadow: 0 0 2px #aaa;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-modal-actions {
  width: 100%;
  text-align: right;
}
.cookie-modal .cookie-modal-actions button {
  margin-left: 7px;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 7px 16px 10px;
    max-width: 97vw;
    gap: 10px;
  }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  header {
    padding: 0 4px;
  }
}
@media (max-width: 700px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.38rem; }
  h3 { font-size: 1.1rem; }
  .brand-tagline { font-size: 1rem; }
  .footer-logo img { height: 40px; }
}
@media (max-width: 530px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.05rem; }
}

/* --- SCROLLBARS & SCROLL EFFECTS --- */
body {
  scrollbar-color: #86A69D #F2F1ED;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 9px;
  background: #F2F1ED;
}
::-webkit-scrollbar-thumb {
  background: #86A69D66;
  border-radius: 4px;
}

/* --- MICRO-INTERACTIONS --- */
.card, .category-grid > div, .service-cards > div {
  will-change: transform, box-shadow;
}
.testimonial-card {
  transition: box-shadow 0.15s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 18px rgba(32,38,36,0.14);
  transform: scale(1.013);
}

/* --- Z-INDEX FOR MENUS AND BANNERS --- */
header { z-index: 101; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 3000; }
.cookie-modal-overlay { z-index: 3200; }

/* --- FORM ELEMENTS --- */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 9px;
  border: 1px solid #ECECEC;
  background: #fff;
  padding: 8px 13px;
  transition: border 0.14s;
  color: #202624;
}
input:focus, textarea:focus, select:focus {
  border: 1.3px solid #86A69D;
  outline: none;
}

/* --- VISUAL SEPARATORS --- */
hr {
  border: none;
  border-top: 1.3px solid #ECECEC;
  margin: 30px 0;
}

/* --- PRINT STYLES --- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
}
