/* --- CSS RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #375063;
  background: #F9F8F6;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}
a {
  color: #375063;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #5F7F75;
  outline: none;
}
ul, ol {
  margin: 0 0 16px 20px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: #375063;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.25;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-top: 24px;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 12px;
  color: #4E5B56;
}
strong {
  color: #375063;
}
address {
  font-style: normal;
  color: #375063;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* --- FLEXBOX CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(80,80,65,0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 18px 0 rgba(80,80,65,0.15);
}
.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;
  background: #E8E4DD;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(31,41,21,0.05);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 600px;
}
.testimonial-card p {
  color: #375063;
  margin-bottom: 0;
  font-size: 1.07rem;
}
.testimonial-author {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: #5F7F75;
  margin-top: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 8px 0 rgba(59,90,65,0.06);
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.15s;
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item:hover {
  box-shadow: 0 4px 16px 0 rgba(59,90,65,0.12);
  transform: translateY(-2px) scale(1.01);
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1.5px solid #E8E4DD;
  box-shadow: 0 1.5px 0 #ECE7DE;
  z-index: 100;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
header nav a {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #375063;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.16s, color 0.17s;
}
header nav a:hover, header nav a.active {
  background: #E8E4DD;
  color: #5F7F75;
}
.cta-button {
  display: inline-block;
  background: #5F7F75;
  color: #fff;
  font-family: 'Merriweather', serif;
  padding: 10px 28px;
  border: none;
  border-radius: 22px 16px 20px 18px/18px 18px 20px 18px;
  font-size: 1.08rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(94,111,84,0.13);
  transition: background 0.17s, transform 0.17s, box-shadow 0.19s;
}
.cta-button:hover,
.cta-button:focus {
  background: #375063;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(47,66,55,0.10);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  background: #E8E4DD;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2.1rem;
  color: #375063;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.16s;
  position: relative;
  z-index: 120;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #d2d7ca;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(231,228,221,0.98);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.83,0,0.17,1);
  z-index: 150;
  box-shadow: -6px 0 22px 0 rgba(80,80,65,0.08);
  padding: 0 30px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #5F7F75;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.6rem;
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 160;
  cursor: pointer;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #375063;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  margin-top: 90px;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: #375063;
  font-family: 'Merriweather', serif;
  letter-spacing: 0.04em;
  text-align: center;
  background: none;
  padding: 10px 0;
  transition: color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #5F7F75;
}

/* --- MAIN CONTENT & COMPONENTS --- */
.subheadline {
  font-size: 1.15rem;
  color: #5F7F75;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 22px;
}
.text-section {
  font-size: 1.07rem;
  color: #375063;
  margin-bottom: 14px;
  line-height: 1.7;
}
.team-list,
.service-list,
.benefit-grid,
.article-cards,
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 24px;
}
.team-member,
.service-item,
.benefit-item,
.article-card,
.workshop-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(59,90,65,0.05);
  padding: 24px 20px;
  flex: 1 1 250px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s;
}
.team-member img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E8E4DD;
}
.team-member h3, .service-item h3, .benefit-item h4, .article-card h3, .workshop-item h3 {
  margin-bottom: 7px;
}
.service-price {
  margin-top: 8px;
  font-family: 'Merriweather', serif;
  color: #5F7F75;
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}
.service-item:hover, .team-member:hover, .benefit-item:hover, .article-card:hover, .workshop-item:hover {
  box-shadow: 0 6px 18px 0 rgba(59,90,65,0.11);
}
.benefit-item img {
  width: 44px;
  height: 44px;
}

/* --- ARTICLE & FEATURED --- */
.article-cards {
  flex-wrap: wrap;
  gap: 20px;
}
.article-card {
  box-shadow: 0 2px 8px 0 rgba(59,90,65,0.07);
  transition: box-shadow 0.16s, transform 0.14s;
}
.article-card:hover {
  box-shadow: 0 6px 18px 0 rgba(59,90,65,0.14);
  transform: translateY(-2px);
}
.read-more {
  color: #375063;
  font-weight: bold;
  font-family: 'Open Sans',sans-serif;
  font-size: 1.05rem;
  margin-top: 12px;
  display: inline-block;
  transition: color 0.13s;
}
.read-more:hover,
.read-more:focus {
  color: #5F7F75;
}
.featured-article-slider,
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.featured-article {
  background: #E8E4DD;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(59,90,65,0.08);
  padding: 28px 22px;
  min-width: 240px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* --- ACCORDION FAQ --- */
.accordion-faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(59,90,65,0.07);
  padding: 16px 18px;
}
.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 7px;
  font-family: 'Merriweather',serif;
  color: #375063;
}

/* --- TABLES --- */
.price-table, .cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 18px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px 0 rgba(59,90,65,0.08);
}
.price-table th, .price-table td,
.cookie-table th, .cookie-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid #ECE7DE;
}
.price-table th, .cookie-table th {
  background: #E8E4DD;
  font-family: 'Merriweather', serif;
  color: #375063;
}
.price-table tr:last-child td, .cookie-table tr:last-child td {
  border-bottom: none;
}

/* --- TIMELINE --- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 18px 0 18px 0;
  border-left: 3px solid #5F7F75;
  padding-left: 20px;
}
.timeline > div {
  font-size: 1rem;
  color: #4E5B56;
  position: relative;
}
.timeline > div:before {
  content: '';
  display: block;
  position: absolute;
  left: -12px;
  top: 7px;
  width: 9px;
  height: 9px;
  background: #5F7F75;
  border-radius: 50%;
}

/* --- STAR RATINGS --- */
.star-rating {
  color: #A8C661;
  letter-spacing: 2px;
  font-size: 1.2em;
  margin-top: 7px;
  font-family: 'Open Sans',sans-serif;
}

/* --- MAP + HINT --- */
.map-placeholder {
  background: #E8E4DD;
  border-radius: 16px;
  padding: 28px 18px;
  color: #375063;
  text-align: center;
  font-size: 1.08rem;
  margin-bottom: 20px;
}
.public-transport-hint {
  background: #fff;
  border-radius: 13px;
  padding: 18px 14px;
  font-size: 1.05rem;
  color: #5F7F75;
  margin-bottom: 20px;
  box-shadow: 0 2px 7px 0 rgba(95,127,117,0.08);
}

/* --- FOOTER --- */
footer {
  background: #375063;
  color: #fff;
  margin-top: 40px;
  font-size: 1rem;
}
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0 20px 0;
}
.footer-logo {
  width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-logo img {
  width: 64px;
  height: 64px;
  background: #E8E4DD;
  border-radius: 18px;
}
.footer-contact, .footer-social, .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1rem;
}
.footer-contact strong {
  color: #fff;
}
.footer-contact a {
  color: #fff;
  border-bottom: 1px dotted #AFC991;
  transition: color 0.13s;
}
.footer-contact a:hover {
  color: #E8E4DD;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A8C661;
}
.footer-social {
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 18px;
  background: #E8E4DD;
  padding: 6px;
  transition: background 0.18s;
}
.footer-social a:hover img {
  background: #A8C661;
}
.footer-bottom {
  padding: 15px 0 12px 0;
  color: #E8E4DD;
  border-top: 1.5px solid #5F7F75;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.03em;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #375063;
  color: #fff;
  z-index: 9999;
  padding: 24px 20px 28px 20px;
  box-shadow: 0 -4px 16px 0 rgba(47,66,55,0.11);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 1.08rem;
  animation: cookieBannerAppear 0.32s cubic-bezier(0.60,0,0.20,1);
}
@keyframes cookieBannerAppear {
  0% { transform: translateY(80px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-consent-banner button {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  padding: 8px 18px;
  border: none;
  border-radius: 16px;
  background: #A8C661;
  color: #375063;
  font-weight: bold;
  margin-right: 0;
  box-shadow: 0 1px 4px 0 rgba(128,140,95,0.08);
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.cookie-consent-banner button.reject {
  background: #fff;
  color: #5F7F75;
}
.cookie-consent-banner button.settings {
  background: #E8E4DD;
  color: #375063;
}
.cookie-consent-banner button:hover {
  background: #CADD6E;
  color: #375063;
}

/* Cookie Preference Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(47,66,55,0.38);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.23s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(59,90,65,0.15);
  padding: 34px 30px 24px 30px;
  min-width: 300px;
  max-width: 414px;
  color: #375063;
  position: relative;
  animation: modalDropIn 0.31s cubic-bezier(0.50,1.44,0.05,0.92);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes modalDropIn {
  from { transform: translateY(68px) scale(0.98); opacity: 0; }
  to { transform: translateY(0px) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #375063;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #E8E4DD;
  color: #375063;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #CADD6E;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category label {
  font-size: 1.05rem;
}
.cookie-switch {
  width: 38px;
  height: 20px;
  position: relative;
  display: inline-block;
}
.cookie-switch input {
  display: none;
}
.cookie-slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #E8E4DD;
  border-radius: 14px;
  transition: background 0.18s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #A8C661;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-category .always-on {
  background: #A8C661;
  color: #fff;
  border-radius: 10px;
  font-size: 0.93rem;
  padding: 3px 8px;
  margin-left: 8px;
  font-weight: 600;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions button {
  padding: 8px 16px;
  border-radius: 13px;
  border: none;
  background: #5F7F75;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal-actions button:hover {
  background: #375063;
}

/* --- SEARCH BAR & FILTER --- */
.search-bar {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  align-items: center;
}
.search-bar label {
  font-family: 'Merriweather', serif;
  color: #375063;
  font-size: 1.04rem;
}
.search-bar input {
  border: 1.5px solid #E8E4DD;
  background: #fff;
  border-radius: 9px;
  padding: 8px 15px;
  outline: none;
  font-size: 1rem;
  color: #375063;
  min-width: 190px;
}
.category-filter {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}
.category-filter button {
  padding: 6px 15px;
  background: #E8E4DD;
  color: #375063;
  border: none;
  border-radius: 9px;
  font-size: 1rem;
  cursor: not-allowed;
  opacity: 0.65;
}

/* --- WORKSHOP CALENDAR --- */
.workshop-calendar {
  background: #E8E4DD;
  border-radius: 14px;
  padding: 22px 18px;
  color: #375063;
  margin-bottom: 18px;
}

.group-testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 22px 0 0 0;
}

.rating-summary {
  font-size: 1.12rem;
  font-family: 'Merriweather',serif;
  color: #5F7F75;
  padding: 16px 0 2px 0;
}

.last-updated-date {
  margin-top: 14px;
  color: #5F7F75;
  font-size: 0.98rem;
  font-style: italic;
}

.confirmation-message {
  font-size: 1.15rem;
  color: #5F7F75;
  margin-bottom: 10px;
}
.next-steps-info {
  color: #375063;
  font-size: 1.06rem;
  margin-bottom: 18px;
}
.next-steps-info a {
  color: #5F7F75;
  border-bottom: 1px solid #5F7F75;
  transition: border-bottom 0.13s, color 0.15s;
}
.next-steps-info a:hover {
  color: #375063;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1150px) {
  .container {
    max-width: 980px;
  }
  .footer-columns {
    gap: 18px;
  }
}
@media (max-width: 950px) {
  .footer-columns {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 820px) {
  .content-wrapper, .card-container, .content-grid, .featured-article-slider, .testimonial-slider, .team-list, .service-list, .benefit-grid, .article-cards, .workshop-list, .group-testimonials {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
  }
  .feature-item, .team-member, .service-item, .benefit-item, .article-card, .workshop-item {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  header .container {
    padding: 8px 14px !important;
    gap: 9px;
  }
  nav {
    display: none !important;
  }
  .cta-button {
    font-size: 1.02rem;
    padding: 10px 16px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-columns {
    flex-direction: column;
    gap: 19px;
    padding: 30px 0 10px 0;
    align-items: flex-start;
  }
  .section {
    padding: 33px 3vw;
    margin-bottom: 32px;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 20px;
  }
  .article-card, .featured-article, .service-item {
    padding: 20px 12px;
  }
}
@media (max-width: 520px) {
  .container {
    padding: 0 6vw;
  }
  h1, h2, h3, h4, h5 {
    word-break: break-word;
  }
  .section {
    padding: 24px 2vw;
  }
  .testimonial-card, .article-card, .service-item, .feature-item {
    padding: 13px 10px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    padding: 14px 6px 18px 6px;
    gap: 14px;
    font-size: 0.97rem;
  }
  .cookie-consent-banner .cookie-buttons {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
}

/* --- SCROLLBAR FOR SLIDERS --- */
.testimonial-slider, .featured-article-slider {
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #5F7F75 #E8E4DD;
}
.testimonial-slider::-webkit-scrollbar, .featured-article-slider::-webkit-scrollbar {
  height: 8px;
  background: #E8E4DD;
  border-radius: 8px;
}
.testimonial-slider::-webkit-scrollbar-thumb, .featured-article-slider::-webkit-scrollbar-thumb {
  background: #5F7F75;
  border-radius: 7px;
}

/* --- CUSTOM ORGANIC SHAPES (DECORATIVE, NOT ABSOLUTE FOR CARDS) --- */
.section {
  background: linear-gradient(221deg, #F9F8F6 94%, #ECE7DE 100%);
  border-radius: 42px 27px 18px 44px / 33px 47px 23px 32px;
}

/* --- FOCUS VISIBLE --- */
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  outline: 2px solid #A8C661;
  outline-offset: 2px;
}

/* --- ORGANIC HOVER SHADOWS FOR BUTTONS --- */
.cta-button, .cookie-consent-banner button, .cookie-modal-actions button {
  transition: box-shadow 0.15s, background 0.17s, color 0.17s, transform 0.17s;
}
.cta-button:active {
  transform: scale(0.96);
}

/* --- DISABLED BUTTONS --- */
[disabled], .category-filter button[disabled] {
  opacity: 0.6 !important;
  pointer-events: none !important;
  cursor: not-allowed !important;
}

/* --- Z-INDEX FOR HEADER, MENU, BANNER --- */
header { z-index: 400; position: sticky; top: 0; }
.mobile-menu { z-index: 1500; }
.cookie-consent-banner { z-index: 3000; }
.cookie-modal-backdrop { z-index: 4000; }

/* --- END --- */
