/* =======================================================================
   CSS RESET & BASELINE 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;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  height: 100%;
  background-color: #F3F8F7;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #F3F8F7;
  color: #114138;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #114138;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #D3B755;
}

ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.4em;
}

/* ========== BRAND FONTS + HEADINGS ========== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #114138;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 24px; }
h2 { font-size: 2rem;   line-height: 1.25; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 700; }
h4 { font-size: 1.1rem; }
h5, h6 { font-size: 1rem; }

p, .text-section {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #114138;
  margin-bottom: 1em;
}
strong, b {
  font-weight: 700;
}

/* ========== UNIVERSAL CONTAINER + SPACING ========== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ========== HEADER & MAIN-NAVIGATION ========== */
header {
  width: 100%;
  background: #F3F8F7;
  box-shadow: 0 1px 16px 0 rgba(17,65,56,0.04);
  z-index: 20;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 24px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #114138;
  padding: 4px 2px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #D3B755;
  background: rgba(211, 183, 85, .09);
}
.cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: #114138;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 30px;
  margin-left: 32px;
  cursor: pointer;
  transition: background .18s, box-shadow .18s, color .2s;
  box-shadow: 0 3px 8px 0 rgba(17,65,56,0.08);
  letter-spacing: .01em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #D3B755;
  color: #114138;
  box-shadow: 0 6px 20px 0 rgba(211,183,85,0.08);
}

/* ========== MOBILE MENU ========== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #114138;
  padding: 4px 18px 4px 10px;
  margin-left: 16px;
  cursor: pointer;
  border-radius: 6px;
  z-index: 150;
  transition: background .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E7ECEA;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 84vw;
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: -6px 0 42px 0 rgba(17,65,56,0.10);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.77,0,.18,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 28px 24px 24px;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: #114138;
  cursor: pointer;
  margin-bottom: 18px;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #E7ECEA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #114138;
  padding: 14px 4px 14px 0;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F3F8F7;
  color: #D3B755;
}

/* Hide desktop nav and show mobile menu button on small screens */
@media (max-width: 1020px) {
  .main-nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  padding: 68px 0 40px 0;
  margin-bottom: 50px;
  background: #fff;
  border-bottom: 1.5px solid #E7ECEA;
  box-shadow: 0 10px 32px 0 rgba(17,65,56,0.03);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #114138;
  margin-bottom: 16px;
}
.hero p {
  color: #114138;
  font-size: 1.18rem;
  margin-bottom: 30px;
}

/* ========== FEATURES & SERVICES STYLES ========== */
.features {
  padding-top: 36px;
  padding-bottom: 36px;
  margin-bottom: 60px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 22px;
}
.feature-box {
  flex: 1 1 220px;
  min-width: 245px;
  max-width: 310px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(17,65,56,0.09);
  padding: 30px 24px 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.feature-box img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}
.feature-box h3 {
  font-size: 1.12rem;
  color: #114138;
  margin-bottom: 6px;
}
.feature-box p {
  font-size: 1rem;
  color: #114138;
}
.feature-box:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 6px 28px 0 rgba(17,65,56,0.16);
}

/* ========== SERVICES GRID ========== */
.services-grid {
  background: #F3F8F7;
  padding-top: 20px;
  padding-bottom: 24px;
  margin-bottom: 60px;
}
.service-box-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.service-box {
  flex: 1 1 245px;
  min-width: 245px;
  max-width: 340px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px 0 rgba(17,65,56,0.10);
  padding: 26px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.service-box h3 {
  font-size: 1.08rem;
  margin-bottom: 4px;
  color: #114138;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.service-price {
  color: #D3B755;
  font-weight: 600;
  margin-top: 10px;
  font-size: 1rem;
}
.service-box:hover {
  transform: translateY(-4px) scale(1.021);
  box-shadow: 0 7px 28px 0 rgba(17,65,56,0.15);
}

/* ========== USP BOXES & HIGHLIGHTS ========== */
.usp-highlights {
  background: #F3F8F7;
  color: #114138;
  border-left: 5px solid #D3B755;
  padding: 16px 32px 16px 18px;
  border-radius: 6px;
  font-size: 1.10rem;
  margin: 22px 0 6px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ========== TEXT IMAGE & FLEXIBLE SECTIONS ========== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.text-section {
  flex: 1;
}

/* ========== TESTIMONIALS ========== */
.testimonials, .testimonial-slider, .testimonial-grid {
  width: 100%;
}
.testimonial-slider,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 12px 0 rgba(17,65,56,0.10);
  padding: 24px 24px 16px 24px;
  min-width: 220px;
  max-width: 380px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card h3 {
  font-size: 1.13rem;
  color: #114138;
}
.testimonial-card p {
  color: #114138;
  font-size: 1.02rem;
}
.testimonial-author {
  font-size: 0.95rem;
  color: #114138;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  opacity: .77;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.018);
  box-shadow: 0 7px 32px 0 rgba(211,183,85,0.11);
}

/* ========== ACCORDION/FAQ ========== */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(17,65,56,0.08);
  padding: 18px 22px;
  cursor: pointer;
  transition: box-shadow .16s, background .16s;
  margin-bottom: 10px;
}
.faq-item h3 {
  font-size: 1.07rem;
  margin-bottom: 6px;
  position: relative;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.faq-answer {
  font-size: 0.98rem;
  margin-top: 8px;
  color: #114138;
}
.faq-item:hover {
  background: #F3F8F7;
  box-shadow: 0 6px 20px 0 rgba(17,65,56,0.13);
}

/* ========== PRICING TABLE ========== */
.pricing-table {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(17,65,56,0.06);
  padding: 44px 22px 34px 22px;
  margin-bottom: 60px;
}
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 3px;
  margin-bottom: 18px;
}
.pricing-table th,
.pricing-table td {
  padding: 13px 12px;
  font-size: 1.03rem;
  background: #F3F8F7;
  border-radius: 8px;
  color: #114138;
  font-family: 'Roboto', Arial, sans-serif;
}
.pricing-table th {
  font-weight: 600;
  text-align: left;
  background: #E7ECEA;
}

/* ========== CTA SECTION ========== */
.cta {
  background: #F3F8F7;
  margin-bottom: 0;
  padding: 38px 0;
}
.cta-banner {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 5px 18px 0 rgba(17,65,56,0.12);
  text-align: center;
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 530px;
}
.cta-banner h2 {
  margin-bottom: 8px;
  color: #114138;
}
.cta-banner p {
  color: #114138;
  margin-bottom: 16px;
}

/* ========== THANK YOU / SINGLE CENTERED SECTION ========== */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F3F8F7;
}
.thank-you .content-wrapper {
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 24px;
  display: flex;
  flex-direction: column;
}
.thank-you h1 {
  color: #114138;
  margin-bottom: 10px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ========== ABOUT & LEGAL PAGES ========== */
.legal, .about-philosophy, .about-usps, .about-home, .team-coach {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(17,65,56,0.09);
  padding: 44px 30px 36px 30px;
  margin-bottom: 60px;
}
.legal h1 {
  margin-bottom: 26px;
}

/* ========== FOOTER STYLES ========== */
footer {
  background: #fff;
  box-shadow: 0 -2px 22px 0 rgba(17,65,56,0.08);
  padding: 36px 0 30px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #114138;
  opacity: .83;
  font-size: .98rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: color .14s, opacity .14s;
}
.footer-nav a:hover {
  color: #D3B755;
  opacity: 1;
}
.footer-contact {
  font-size: .96rem;
  color: #465d54;
  flex: 1 1 200px;
  margin-bottom: 14px;
}
.footer-logo img {
  width: 62px;
  height: auto;
  opacity: .92;
  margin-top: 4px;
}

/* ========== CONTACT PAGE ========== */
.contact-direct {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 14px 0 rgba(17,65,56,0.09);
  padding: 44px 28px 36px 28px;
  margin-bottom: 60px;
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}
.map-embed-stub {
  background: #E7ECEA;
  border-radius: 10px;
  padding: 20px 18px;
  color: #114138;
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  flex: 1 1 220px;
}

/* ========== BUTTONS: GENERIC INTERACTIONS ========== */
button, .cta-btn {
  outline: none;
  transition: background .2s, color .2s, box-shadow .18s, transform .13s;
}
button:active,
.cta-btn:active {
  transform: scale(.97);
}

/* ========== COOKIE CONSENT BANNER & MODAL ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 2300;
  background: #fff;
  box-shadow: 0 -2px 28px 0 rgba(17,65,56,0.13);
  border-top: 2px solid #E7ECEA;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 18px 20px 18px;
  font-size: 1rem;
  color: #114138;
  animation: slideUp 0.6s cubic-bezier(.77,0,.18,1);
}
@keyframes slideUp {
  0% { transform: translateY(100%); opacity: 0; }
  60%{ transform: translateY(-12px); opacity: .88 }
  100%{ transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  flex: 2 1 290px;
  margin-right: 16px;
  color: #114138;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.cookie-btn {
  border: none;
  border-radius: 21px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  background: #F3F8F7;
  color: #114138;
  cursor: pointer;
  transition: background .16s, color .16s, box-shadow .16s;
  box-shadow: 0 1.5px 6px 0 rgba(17,65,56,0.07);
}
.cookie-btn.accept {
  background: #114138;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #D3B755;
  color: #114138;
}
.cookie-btn.reject {
  background: #E7ECEA;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #D3B755;
  color: #114138;
}
.cookie-btn.settings {
  background: #fff;
  color: #114138;
  border: 1.5px solid #E7ECEA;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  border-color: #D3B755;
  background: #F3F8F7;
}

/* Cookie Banner Modal Overlay & Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2500;
  background: rgba(17,65,56,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(17,65,56,0.15);
  padding: 40px 30px 34px 30px;
  max-width: 430px;
  width: 90vw;
  color: #114138;
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: all .35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  padding: 14px 0 10px 0;
  border-bottom: 1px solid #E7ECEA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-toggle {
  min-width: 48px;
}
/* Custom switch for toggles */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #E7ECEA;
  border-radius: 19px;
  transition: background .18s;
}
.cookie-toggle input:checked + .slider {
  background-color: #D3B755;
}
.cookie-toggle .slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 7px 0 rgba(17,65,56,0.12);
  transition: transform .18s;
}
.cookie-toggle input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .close {
  background: none;
  border: none;
  font-size: 1.35rem;
  align-self: flex-end;
  cursor: pointer;
  color: #114138;
  opacity: .85;
  transition: color .17s, opacity .13s;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus {
  color: #D3B755;
  opacity: 1;
}

/* =============== RESPONSIVENESS =============== */
@media (max-width: 1020px) {
  .main-nav,
  .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-logo {
    margin-top: 22px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media (max-width: 850px) {
  .feature-grid, .service-box-grid, .testimonial-slider, .testimonial-grid, .contact-details {
    flex-direction: column;
    gap: 20px;
  }
  .feature-box, .service-box, .testimonial-card, .pricing-table, .legal, .about-philosophy, .about-usps,
  .about-home, .team-coach, .contact-direct {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .section, .legal, .about-philosophy, .about-usps,
  .about-home, .team-coach, .contact-direct {
    padding: 28px 10px 22px 10px;
  }
  .hero {
    padding: 42px 0 22px 0;
  }
  .hero .container {
    padding: 0 8px;
  }
  .content-wrapper {
    padding: 0;
  }
  .cta-banner {
    padding: 22px 10px;
    max-width: 98vw;
  }
  .usp-highlights {
    padding: 12px 10px 12px 10px;
  }
}
@media (max-width: 600px) {
  html { font-size: 15px; }
  .hero h1 { font-size: 2.05rem; }
  .hero p { font-size: 1rem; }
  .feature-box, .service-box,
  .testimonial-card, .pricing-table, .legal, .about-philosophy, .about-usps, .about-home,
  .team-coach, .contact-direct {
    padding: 16px 5px 13px 5px;
  }
  .testimonial-card, .service-box, .feature-box {
    min-width: 0;
    max-width: 100%;
  }
  .cta-banner {
    padding: 18px 2px;
  }
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 6px 14px 6px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .cookie-modal {
    padding: 20px 5px 22px 5px;
    width: 98vw;
  }
  .usp-highlights { font-size: 1rem; }
  .map-embed-stub { font-size: .97rem; padding: 12px 5px; }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ========== Z-INDEX HIERARCHY ========== */
header { z-index: 20; position: relative; }
.mobile-menu { z-index: 2000; }
.cookie-banner { z-index: 2300; }
.cookie-modal-overlay { z-index: 2500; }

/* ========== UTILITIES ========== */
.hide { display: none !important; }

/* END VITALWOHL ZUHAUSE "SCANDINAVIAN_CLEAN" CSS */
