

[data-mm-header] {
  --mm-bg: #ffffff;
  --mm-text: #042f2e;
  --mm-primary: #0d9488;
  --mm-overlay-bg: rgba(4, 47, 46, 0.55);
}

[data-mm-header] {
  position: relative;
}

[data-mm-toggle] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

[data-mm-toggle] span {
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  background: var(--mm-text);
}

[data-mm-menu] {
  position: fixed;
  top: 0;
  right: 0;
  width: 17.5rem;
  max-width: 85vw;
  height: 100vh;
  height: 100dvh;
  background: var(--mm-bg);
  transform: translateX(100%);
  z-index: 1100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  padding: 3.75rem 1.5rem 1.5rem;
}

[data-mm-menu].mm-open {
  transform: translateX(0);
}

[data-mm-menu] ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

[data-mm-menu] ul li a {
  display: block;
  padding: 0.875rem 0;
  color: var(--mm-text);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 0.0625rem solid rgba(4, 47, 46, 0.08);
}

[data-mm-menu] ul li a:hover {
  color: var(--mm-primary);
}

[data-mm-close] {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  color: var(--mm-text);
  padding: 0.25rem 0.5rem;
}

[data-mm-overlay] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--mm-overlay-bg);
  opacity: 0;
  visibility: hidden;
  z-index: 1050;
}

[data-mm-overlay].mm-visible {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  [data-mm-toggle] { display: none !important; }
  [data-mm-menu] {
    position: static !important;
    width: auto !important;
    max-width: none !important;
    height: auto !important;
    background: transparent !important;
    transform: none !important;
    padding: 0 !important;
    overflow: visible !important;
    flex-direction: row !important;
  }
  [data-mm-menu] ul {
    flex-direction: row;
    gap: 0;
    align-items: center;
  }
  [data-mm-menu] ul li a {
    padding: 0.5rem 1rem;
    border-bottom: none;
    font-size: inherit;
  }
  .Masthead-menuCall { display: none !important; }
  [data-mm-close] { display: none !important; }
  [data-mm-overlay] { display: none !important; }
}


:root {
  --cc-bg: #ffffff;
  --cc-text: #042f2e;
  --cc-text-secondary: #334e4c;
  --cc-border: rgba(4, 47, 46, 0.12);
  --cc-primary: #0d9488;
  --cc-primary-hover: #0f766e;
  --cc-secondary: #ffffff;
  --cc-secondary-hover: #f0fdfa;
  --cc-secondary-border: #d4e9e6;
  --cc-toggle-bg: #d4e9e6;
  --cc-toggle-active: #0d9488;
  --cc-overlay: rgba(4, 47, 46, 0.6);
  --cc-shadow: 0 -0.25rem 1.25rem rgba(4, 47, 46, 0.18);
  --cc-radius: 0.75rem;
  --cc-radius-sm: 0.5rem;
  --cc-font: 'Montserrat', 'Segoe UI', sans-serif;
}
